/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
  font-family: Montserrat-Black;
  src: url('../fonts/montserrat/Montserrat-Black.ttf');
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf');
}

@font-face {
  font-family: Montserrat-Medium;
  src: url('../fonts/montserrat/Montserrat-Medium.ttf');
}

/*//////////////////////////////////////////////////////////////////
[ Talent CSS ]*/
.showcase-card {
  height: 200px;
  transition: all 0.5s;
  cursor: pointer;
  border: none;
  margin-bottom: 20px;
}

.showcase-card:hover {
  box-shadow: 0 0 16px 1px rgba(163, 46, 253, 0.438);
}

.showcase-card-overlay-gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-image: linear-gradient(
    109.6deg,
    rgba(123, 90, 224, 1) 11.2%,
    rgba(164, 46, 253, 1) 32.6%,
    rgba(213, 56, 234, 1) 62.7%,
    rgba(251, 138, 52, 1) 100.2%
  );
  opacity: 0.5;
  transition: all 0.5s;
}

.showcase-card-overlay-gradient-bottom {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-image: linear-gradient(
    360deg,
    rgba(123, 90, 224, 1) 11.2%,
    rgba(163, 46, 253, 0.685) 32.6%,
    rgba(213, 56, 234, 0.11) 62.7%,
    rgba(251, 138, 52, 0) 100.2%
  );

  opacity: 0;
  transition: all 0.5s;
}

.showcase-card-container:hover .showcase-card-overlay-gradient {
  opacity: 0;
}

.showcase-card-container:hover .showcase-card-overlay-gradient-bottom {
  opacity: 1;
}

.showcase-card-overlay-text {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  overflow: hidden;
}

.showcase-play {
  color: white;
  margin-left: 10px;
  margin-top: 40px;
  bottom: 0;
  transition: all 0.5s;
}

.showcase-title {
  color: white;
  margin-left: 10px;
  margin-right: 10px;
  height: 2.3em;
  overflow: hidden;
}

.showcase-description {
  color: white;
  margin-left: 10px;
  margin-right: 10px;
  width: 80%;
  display: -webkit-box;
  max-width: 400px;
  display: inline-block;
}

.reference-number {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: rgba(175, 210, 255, 0.644);
  padding-left: 5px;
  padding-right: 5px;
}

.showcase-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.showcase-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.showcase-video-description {
  margin: 20px;
}

#heartButton {
  box-shadow: 0 0 16px 1px rgba(253, 46, 143, 0.438);
}

.fa-beat {
  animation: fa-beat 5s ease infinite;
}
@keyframes fa-beat {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.25);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.25);
  }
  50% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.25);
  }
  70% {
    transform: scale(1);
  }
}

.dancing-icon {
  position: absolute;
  /* width: 105px;
  height: 105;
  margin: 250px auto; */
}

.heart {
  position: absolute;
  top: -10px;
  margin-left: 20;
  animation: 1s ease-in-out hearts normal infinite;
  z-index: 100;
  opacity: 1;
  background-image: linear-gradient(
    109.6deg,
    rgba(123, 90, 224, 1) 11.2%,
    rgba(164, 46, 253, 1) 32.6%,
    rgba(213, 56, 234, 1) 62.7%,
    rgba(251, 138, 52, 1) 100.2%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heart:nth-child(1) {
  left: 12px;
  animation-delay: 0s;
}

.heart:nth-child(2) {
  left: 32px;
  animation-delay: 0.35s;
}

.heart:nth-child(3) {
  left: 52px;
  animation-delay: 0.15s;
}

@keyframes hearts {
  0% {
    transform: rotate(20deg);
    opacity: 0;
  }
  50% {
    transform: rotate(-20deg);
    opacity: 1;
  }
  100% {
    transform: rotate(20deg);
    opacity: 0;
    top: -150px;
  }
}

.navtop-title {
  background-image: linear-gradient(
    109.6deg,
    rgba(123, 90, 224, 1) 11.2%,
    rgba(164, 46, 253, 1) 32.6%,
    rgba(213, 56, 234, 1) 62.7%,
    rgba(251, 138, 52, 1) 100.2%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-link {
  all: revert;
  color: black;
  text-decoration: none;
}

/* Large screens */
@media (min-width: 1100px) {
  .dev-footer {
    display: block;
    background-color: white;
    padding-left: 150px;
    color: black;
    overflow-x: hidden;
  }
  .dev-footer-small {
    display: none;
  }
}

/* Small screens */
@media (max-width: 1100px) {
  .dev-footer {
    display: none;
  }
  .dev-footer-small {
    display: block;
    background-color: white;
    color: black;
    overflow-x: hidden;
  }
}

.dev-socials {
  all: revert;
  color: black;
  transition: all 0.5s;
}
.dev-socials:hover {
  color: rgba(164, 46, 253, 1);
}

/*//////////////////////////////////////////////////////////////////
[ Snackbars ]*/

.snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  left: 50%;
  font-size: 14px;
  border-radius: 40px;
}

/* Large screens */
@media (min-width: 600px) {
  .snackbar {
    bottom: 30px;
  }

  @-webkit-keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 30px;
      opacity: 1;
    }
  }

  @keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 30px;
      opacity: 1;
    }
  }

  @-webkit-keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }

  @keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }
}

/* Small screens */
@media (max-width: 600px) {
  .snackbar {
    bottom: 100px;
  }

  @-webkit-keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 100px;
      opacity: 1;
    }
  }

  @keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 100px;
      opacity: 1;
    }
  }

  @-webkit-keyframes fadeout {
    from {
      bottom: 100px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }

  @keyframes fadeout {
    from {
      bottom: 100px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }
}

#snackbar-success {
  background-color: var(--primarycolor);
  z-index: 500;
}

#snackbar-danger {
  background-color: var(--dangercolor);
  z-index: 500;
}

#snackbar-info {
  background-color: var(--infocolor);
  z-index: 400;
}

#snackbar-warning {
  background-color: var(--warningcolor);
  z-index: 400;
}

#snackbar-saving {
  /* background-color: #161616; */
  background-color: var(--lighterblackcolor);
  color: #ffffff;
  z-index: 300;
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  /* font-family: Poppins-Regular, sans-serif; */
  font-family: Montserrat-Medium;
}

/*---------------------------------------------*/
a {
  font-family: Montserrat-Medium;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: var(--infocolor);
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  font-family: Montserrat-Medium;
}

p {
  font-family: Montserrat-Medium;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

/*---------------------------------------------*/

/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

input[type='number'] {
  -moz-appearance: textfield;
  appearance: none;
  -webkit-appearance: none;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
textarea:focus:-moz-placeholder {
  color: transparent;
}
textarea:focus::-moz-placeholder {
  color: transparent;
}
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #adadad;
}
input:-moz-placeholder {
  color: #adadad;
}
input::-moz-placeholder {
  color: #adadad;
}
input:-ms-input-placeholder {
  color: #adadad;
}

textarea::-webkit-input-placeholder {
  color: #adadad;
}
textarea:-moz-placeholder {
  color: #adadad;
}
textarea::-moz-placeholder {
  color: #adadad;
}
textarea:-ms-input-placeholder {
  color: #adadad;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*---------------------------------------------*/
.container {
  max-width: 1200px;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/

.bg0 {
  background-color: #fff;
}
.bg1 {
  background-color: #f7f7f7;
}
.bgdark {
  background-color: #000000;
}

/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-aurora {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #e6e6e6;
}

.card {
  /* width: 920px; */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 62px 55px 90px 55px;
}

.container-signup {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  padding-bottom: 50px;
  padding-top: 50px;
  background: #e6e6e6;
}

.wrap-signup {
  width: 920px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 62px 55px 90px 55px;
}

/*------------------------------------------------------------------
[  ]*/

.unselectable {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  cursor: pointer;
}

.aurora-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.aurora-form-title-company {
  display: block;
  width: 100%;
  font-family: Montserrat-Black;
  font-size: 50px;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 10px;
}

.aurora-form-title {
  display: block;
  width: 100%;
  font-family: Montserrat-Black;
  font-size: 39px;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 30px;
}

.large-link {
  display: block;
  width: 100%;
  font-family: Montserrat-Black;
  font-size: 20px;
  color: #000000;
  line-height: 1.2;
  padding-top: 30px;
}

.small-link {
  display: block;
  width: 100%;
  font-family: Montserrat-Black;
  font-size: 15px;
  color: #000000;
  line-height: 1.2;
  padding-top: 30px;
}

.small-link-dark {
  display: block;
  width: 100%;
  font-family: Montserrat-Black;
  font-size: 15px;
  color: #555555;
  line-height: 1.2;
  padding-top: 30px;
}

.small-title {
  display: block;
  width: 100%;
  font-family: Montserrat-Medium;
  font-size: 15px;
  color: #000000;
  line-height: 1.2;
  padding-top: 30px;
}

/*------------------------------------------------------------------
[  ]*/

.wrap-aurorainput {
  width: 100%;
  position: relative;
  border-radius: 13px;
  padding: 10px 30px 9px 22px;
  margin-bottom: 20px;
}

.wrap-input-dark {
  width: 100%;
  position: relative;
  border-radius: 13px;
  padding: 10px 30px 9px 22px;
  margin-bottom: 20px;
}

.input-normal-border {
  border: 1px solid #e6e6e6;
}

.input-selected-border {
  border: 1px solid #000000;
}

.input-success-border {
  border: 1px solid var(--successcolor);
}

.input-danger-border {
  border: 1px solid var(--dangercolor);
}

.input-warning-border {
  border: 1px solid var(--warningcolor);
}

.input-info-border {
  border: 1px solid var(--infocolor);
}

.rs1-wrap-aurorainput {
  width: calc((100% - 30px) / 2);
}

.label-aurorainput {
  font-family: Montserrat-SemiBold;
  font-size: 10px;
  color: #393939;
  line-height: 1.5;
  text-transform: uppercase;
}

.aurorainput {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  padding-right: 15px;
}

.input-dark {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.2;
  padding-right: 15px;
}

/*---------------------------------------------*/
input.aurorainput {
  height: 40px;
}

textarea.aurorainput {
  min-height: 120px;
  padding-top: 9px;
  padding-bottom: 13px;
}

input.input-dark {
  height: 40px;
}

textarea.input-dark {
  min-height: 120px;
  padding-top: 9px;
  padding-bottom: 13px;
}

.aurorainput:focus + .focus-aurorainput::before {
  width: 100%;
}

.has-val.aurorainput + .focus-aurorainput::before {
  width: 100%;
}

.input-dark:focus + .focus-input-dark::before {
  width: 100%;
}

.has-val.input-dark + .focus-input-dark::before {
  width: 100%;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-aurora-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  width: 100%;
}

.aurora-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  /* background-color: #000000; */
  background-color: #000000;
  border-radius: 25px;

  font-family: Montserrat-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact-form-btn-dark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  /* background-color: #000000; */
  background-color: #161616;
  border-radius: 25px;

  font-family: Montserrat-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.aurora-form-btn i {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.aurora-form-btn:hover {
  background-color: var(--primarycolor);
}

.contact-form-btn-dark:hover {
  background-color: var(--primarycolor);
}

.aurora-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 768px) {
  .rs1-wrap-aurorainput {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .card {
    padding: 62px 15px 90px 15px;
  }

  .wrap-aurorainput {
    padding: 10px 10px 9px 10px;
  }

  .wrap-input-dark {
    padding: 10px 10px 9px 10px;
  }
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  min-height: 40px;
  background-color: #f7f7f7;
  top: 35px;
  left: 0px;
  padding: 0 45px 0 22px;
  pointer-events: none;
  border-radius: 10px;
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  color: #fa4251;
  line-height: 1.2;
}

.alert-validate-dark::before {
  content: attr(data-validate);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  min-height: 40px;
  background-color: #000;
  top: 35px;
  left: 0px;
  padding: 0 45px 0 22px;
  pointer-events: none;
  border-radius: 10px;
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  color: #fa4251;
  line-height: 1.2;
}

.btn-hide-validate {
  font-family: Material-Design-Iconic-Font;
  font-size: 18px;
  color: #fa4251;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 35px;
  right: 12px;
}

.rs1-alert-validate.alert-validate::before {
  background-color: #fff;
}

.true-validate::after {
  content: '\f26b';
  font-family: Material-Design-Iconic-Font;
  font-size: 18px;
  color: var(--primarycolor);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 35px;
  right: 10px;
}

/*---------------------------------------------*/
@media (max-width: 576px) {
  .alert-validate::before {
    padding: 0 10px 0 10px;
  }

  .true-validate::after,
  .btn-hide-validate {
    right: 0px;
    width: 30px;
  }
}

/*==================================================================
[ Restyle Select2 ]*/

.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 40px;
  outline: none;
  position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.select2-container .select2-selection--single .select2-selection__rendered {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  padding-left: 0px;
  background-color: transparent;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow::before {
  content: '\f312';
  font-family: Material-Design-Iconic-Font;
  font-size: 18px;
  color: #555555;
}

/*------------------------------------------------------------------
[ Dropdown option ]*/
.select2-container--open .select2-dropdown {
  z-index: 1251;
  width: calc(100% + 2px);
  border: 0px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  left: -24px;

  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .select2-container--open .select2-dropdown {
    left: -12px;
  }
}

.select2-dropdown--above {
  top: -38px;
}
.select2-dropdown--below {
  top: 10px;
}

.select2-container .select2-results__option[aria-selected] {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 24px;
}

@media (max-width: 576px) {
  .select2-container .select2-results__option[aria-selected] {
    padding-left: 12px;
  }
}

.select2-container .select2-results__option[aria-selected='true'] {
  background: var(--primarycolor);
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background: var(--primarycolor);
  color: white;
}

.select2-results__options {
  font-family: Montserrat-SemiBold;
  font-size: 14px;
  color: #555555;
  line-height: 1.2;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #000000;
  line-height: 1.2;
}

.wrap-aurorainput .dropDownSelect2 .select2-container--open {
  width: 100% !important;
}

.wrap-aurorainput .dropDownSelect2 .select2-dropdown {
  width: calc(100% + 2px) !important;
}

.wrap-input-dark .dropDownSelect2 .select2-container--open {
  width: 100% !important;
}

.wrap-input-dark .dropDownSelect2 .select2-dropdown {
  width: calc(100% + 2px) !important;
}

/*==================================================================
[ Restyle Radio ]*/
.card-form-radio {
  width: 100%;
  padding: 15px 25px 0 25px;
}

.aurora-form-radio {
  padding-bottom: 5px;
}

.input-radio100 {
  display: none;
}

.label-radio100 {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
}

.label-radio100::before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.label-radio100::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 6px solid transparent;
  background: var(--primarycolor);
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.input-radio100:checked + .label-radio100::after {
  display: block;
}

/*==================================================================
[ rs NoUI ]*/
.card-form-range {
  width: 100%;
  padding: 20px 25px 57px 25px;
}

.aurora-form-range-value {
  font-family: Montserrat-SemiBold;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 30px;
}

.aurora-form-range-value input {
  display: none;
}

#filter-bar {
  height: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 9px;
  background-color: #f7f7f7;
}
#filter-bar .noUi-connect {
  border: 1px solid #e6e6e6;
  border-radius: 9px;
  background-color: var(--primarycolor);
  box-shadow: none;
}
#filter-bar .noUi-handle {
  width: 40px;
  height: 36px;
  border: 1px solid #cccccc;
  border-radius: 9px;
  background: #f5f5f5;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  top: -8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

#filter-bar .noUi-handle.noUi-handle-lower {
  left: -1px;
}

#filter-bar .noUi-handle.noUi-handle-upper {
  left: -39px;
}

#filter-bar .noUi-handle:before {
  content: '';
  display: block;
  position: unset;
  height: 12px;
  width: 9px;
  background-color: transparent;
  border-left: 2px solid #cccccc;
  border-right: 2px solid #cccccc;
}
#filter-bar .noUi-handle:after {
  display: none;
}

@media (max-width: 576px) {
  .card-form-range {
    padding: 20px 0px 57px 0px;
  }

  .card-form-radio {
    padding: 15px 0px 0 0px;
  }
}
