/* Fonts */
@font-face {
  font-family: 'ubuntu-light';
  src: url('../fonts/Ubuntu-Light.ttf');
}

@font-face {
  font-family: 'ubuntu-regular';
  src: url('../fonts/Ubuntu-Regular.ttf');
}

@font-face {
  font-family: 'ubuntu-medium';
  src: url('../fonts/Ubuntu-Medium.ttf');
}

@font-face {
  font-family: 'ubuntu-bold';
  src: url('../fonts/Ubuntu-Bold.ttf');
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #181c14;
  font-family: "ubuntu-regular", serif;
}

a {
  color: #005CAB;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #005CAB;
  text-decoration: none;
}

    a.break-url {
        word-wrap: break-word; 
        overflow-wrap: break-word; 
    }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #005CAB;
  font-family: "ubuntu-medium", serif;
}

p {
  color: #181c14;
  font-family: "ubuntu-regular", serif;
  line-height: 1.3;
}

.fw-f-medium {
  font-family: "ubuntu-medium", serif;
}

.fw-f-bold {
  font-family: "ubuntu-bold", serif;
}

.bg_fafafa {
  background-color: #fafafa;
}

.cus-btn-primary {
  background-color: #005CAB;
  border-color: #005CAB;
  color: #ffffff;
}

.cus-btn-primary:hover {
  background-color: #ffffff;
  color: #005CAB;
}

.cus-btn-secondary {
  background-color: #ffffff;
  border-color: #005CAB;
  color: #005CAB;
}

.cus-btn-secondary:hover {
  background-color: #005CAB;
  color: #ffffff;
}

.fs-18 {
  font-size: 18px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.jobcode {
    color: #ffffff;
}

@media (max-width: 1024px) {

  /* h5 {
    font-size: 18px;
  } */
  p {
    font-size: 14px;
    line-height: 1.2;
  }

  .fs-14 {
    font-size: 13px;
  }

  .fs-sm {
    font-size: 16px;
  }

  .fs-xsm {
    font-size: 14px;
  }
}


@media (max-width: 768px) {

  .fs-18 {
    font-size: 16px;
  }

  .fs-sm {
    font-size: 14px;
  }

  .fs-xsm {
    font-size: 12px;
  }
}

.text-333 {
  color: #181c14;
}


.form-select:focus,
.form-control:focus {
  border-color: #005CAB;
  outline: 0;
  box-shadow: none;
}

.shadow {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #F6F6F6;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, #ffffff, transparent 85%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 45px;
  margin-right: 8px;
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #005CAB;
}


.footer .logo {
  line-height: 1;
}



.footer .footer-menu {
  display: flex;
  /* flex-wrap: wrap; */
  list-style: none;
  justify-content: left;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.footer .footer-menu a {
  color: #FFFFFF;
  display: inline-block;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #005CAB transparent #005CAB transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


#loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.6s ease-out;
}

    #loader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: #005CAB transparent #005CAB transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-loader 1.5s linear infinite;
    }

@keyframes animate-loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# chat bot
--------------------------------------------------------------*/
.chat-bot-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px -5px #555555;
  border-radius: 50%;
  transition: background-color 0.3s ease-in;
  cursor: pointer;
}

.chat-bot-wrapper img {
  width: 38px;
}

.chat-bot-wrapper:hover {
  background-color: rgba(0, 92, 172, 0.1);
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Main Box
--------------------------------------------------------------*/
.search_option_boxs {
  /*background-color: rgb(255 255 255 / 10%);*/
  background-color: #ffffff;
  border: 1px solid #005CAB;
  border-radius: 25px;
  overflow: hidden;
}

.form-check {
  padding-left: 1.8em;
}

.search_option_boxs .form-check,
.option-bottom {
  border-radius: 0;
  overflow: hidden;
}

.search_option_boxs .form-check:first-child {
  border-top-left-radius: 25px;
}

.search_option_boxs .form-check:last-child {
  border-top-right-radius: 25px;
}

.option-bottom:first-child {
  border-bottom-left-radius: 25px;
  border-right: 0;
}

.option-bottom:last-child {
  border-bottom-right-radius: 25px;
  border-left: 0;
}

.search_option_boxs .form-check {
  flex: 1;
  text-align: left;
  padding: 15px 10px;
  padding-left: 40px;
  margin: 0;
  place-self: normal;
}

.search_option_boxs .form-check:last-child {
  border-left: 1px solid #005CAB;
}

.search_option_boxs .form-check.selected {
  background-color: rgba(0, 92, 172, 0.1);
}

/* .search_option_boxs .option-box1 {
  border-bottom: 1px solid #005CAB;
} */
.search_option_boxs label {
  color: #005CAB;
}

.option-box2 .option-bottom {
  position: relative;
}

.option-box2 .op-box1 {
  min-width: 28%;
}

.option-box2 .op-box2 {
  min-width: 44%;
  display: flex;
  align-items: center;
  text-align: left;
}

.option-box2 .op-box3 {
  min-width: 28%;
}

.option-box2 .form-select {
  border: 0;
  padding: 15px;
  padding-right: 30px;
  color: #181c14 !important;
}

.option-box2 .form-select:focus,
.option-box2 .form-select:focus-visible .option-box2 .form-control:focus,
.option-box2 .form-control:focus-visible {
  outline: none;
  border-radius: unset;
  box-shadow: none;
  border: 0;
}

.option-bottom {
  /*margin-top: -1px;*/
  margin-top: 0px;
  border-top: 0;
  width: auto;
}

.option-box2 .form-control,
.option-box2 .btn {
  padding: 0;
  line-height: 1;
  border: none;
}

.option-bottom.input-group::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: #C9C9C9;
  top: 15px;
  left: 0;
  z-index: 99;
}

.option-bottom.lastDropDown::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: #C9C9C9;
  top: 15px;
  left: 0;
  z-index: 99;
}

.option-box2 .option-bottom input {
  /* padding-right: 45px; */
}

#search_submit {

  padding: 15px;
  transition: all 0.3s ease-in-out;
}

#search_submit:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.form-check-input.search_check-input {
  border: none !important;
}

.form-check-input[type=radio] {
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.50em;
  position: relative;
  border: none;
}

.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: none;
  background-color: #005CAB;
}

.form-check-input:focus {
  /* border: none !important; */
  outline: 0;
  box-shadow: none;
}

.pat-pro-details,
.hcp-pro-details {
  display: none;
}

.patient_search-success_result,
.patient_search-failed_result,
.patient_search-other_result,
.HCP_search-success_result,
.HCP_search-failed_result,
.HCP_search-other_result {
  display: none;
}

input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 1em;
  height: 1em;
  border: 2px solid #005CAB;
  border-radius: 50%;
}

.form-check-input[type="radio"]~label {
  color: #181c14;
  line-height: 1.3;
}

.form-check label {
  color: #181c14;
}

label.errors {
  color: #ff3333;
  font-size: 12px;
  display: none;
}

label.error {
  color: #ff3333;
  font-size: 12px;
  display: none;
}

.card-body {
  color: #181c14;
}

.lightgrey-bg {
  background-color: #EFEFEF;
}

/* 04/03.25 */

.hcp_search_form {
  border-top: 1px solid #005CAB;
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.upload_error {
    color: #ff3333;
    font-style:italic;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    #search_submit {
    position: relative;
    padding-left: 20px;
  }

  #search_submit:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 75px;
    background-color: #C9C9C9;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 99;
  }

  .option-bottom.input-group::before,
  .option-bottom.lastDropDown::before {
    height: 0;
  }
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  background-color: #ffffff;
  padding: 32px 0 60px 0;
  scroll-margin-top: 100px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* padding: 1px 0 30px 0; */
}


.hero .banner_img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

.hero .icon img {
  position: relative;
  inset: 0;
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .title1 {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #005CAB;
}

.hero .title2 {
  margin: 16px 0 0 0;
  font-size: 22px;
  line-height: 30px;
  color: #005CAB;
}

.title3 {
  font-size: 20px;
  line-height: 26px;
  color: #005CAB;
}

@media (max-width: 992px) {
  .hero .banner_img {
    height: 260px;
    object-fit: cover;
    object-position: -40px;
  }
}

.hero .icon-box {
  background-color: #ffffff;
  padding: 20px 15px;
  position: relative;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  ;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  height: 100%;
  width: 100%;
  text-align: center;

}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.hero .icon-box .title a {
  color: #ffffff;
  transition: 0.3s;
}

.hero .icon-box .description {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 0;
  color: #005CAB;
}

.hero .icon-box .icon {
  margin-bottom: 5px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
}

.hero .info {
  position: absolute;
  z-index: 999;
  top: 6px;
  right: 8px;
  left: auto;
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  cursor: pointer;
}

.hero .info img {
  vertical-align: top;
}

@media (min-width: 640px) {
  .hero .icon-box:hover {
    cursor: pointer;
    transform: scale(1.06);
  }

  .hero .icon-box:hover .title a {
    color: #ffffff;
  }
}


/*--------------------------------------------------------------
# Content Section
--------------------------------------------------------------*/
.content {
  padding: 0;
}

.content .title {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
  color: #005CAB;
}

.content .description {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}

.content .desc-text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}


/* form section */

.nav-pills .nav-item .nav-link,
.nav-pills .nav-item.finish .nav-link {
  position: relative;
  background-color: #F1F2F2;
  color: #181c14;
  border-radius: 0;
  display: flex;
  align-items: center;
  border-right: 1px solid #ffffff;
}

.nav-pills .nav-item:last-child .nav-link,
.nav-pills .nav-item:last-child .nav-link {
  border-right: none;
}

.nav-pills .nav-item .nav-link::before {
  content: "";
  background: none;
  background-size: contain;
  width: 0;
  height: 0;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease-in;
}

.nav-pills .nav-item.finish .nav-link::before {
  content: "";
  background: url(../img/form_complete.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 5px;
}

.nav-pills .nav-item:first-child .nav-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.nav-pills .nav-item:last-child .nav-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.nav-pills .nav-link.active {
  background-color: rgba(0, 92, 171, 10%);
  color: #005CAB;
  font-family: "ubuntu-medium", serif;
}



@media screen and (max-width: 768px) {

  .nav-pills .nav-item .nav-link,
  .nav-pills .nav-item.finish .nav-link {
    position: relative;
    flex-direction: column;
    background-color: #ffffff;
    border-right: none;
  }

  .nav-pills .nav-item .nav-link::before {
    background: url(../img/form_incomplete.png) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .nav-pills .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #f1f2f2;
    left: 0;
    right: 0;
    top: 17px;
  }

  .nav-pills .nav-item:first-child .nav-link::after {
    width: 50%;
    left: unset;
  }

  .nav-pills .nav-item:last-child .nav-link::after {
    width: 50%;
  }
}


/*--------------------------------------------------------------
# Start Call Page
--------------------------------------------------------------*/

.call .icon-box {
  background-color: #ffffff;
  padding: 15px 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  text-align: left;

}

.flag-icon {
  width: 35px;
  flex-shrink: 0;
}

.row-card .flag-card {
  height: 140px;
  max-height: 140px;
}

.flag-card .med-info {
  line-height: 1.3;
  margin-bottom: 0;
  color: #4b4b50;
  word-break: break-word;
}

.call .icon-box .icon {
  margin-bottom: 0px;
  padding-bottom: 0px;
  /*padding-top: 10px;*/
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
}

.call .info img {
  position: absolute;
  top: 2px !important;
  right: 4px !important;
  left: auto !important;
  inset: 0;
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
  z-index: 1;
  cursor: pointer;
}

.call .icon-box h6 {
  color: #005CAB;
}


.call .flag-box {
  background-color: #ffffff;
  padding: 5px 5px;
  position: relative;
  overflow: hidden;
  /*box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);;*/
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.call .flag img {
  position: relative;
  inset: 0;
  display: block;
  width: auto;
  height: 18px;
  object-fit: contain;
  z-index: 1;
}

.flag-box p {
  font-size: 12px;
  margin-bottom: 0;
}

#select2-rae_product-container + span {
    display: none;
}

#select2-rae_incyte_product-container + span {
    display: none;
}

#select2-rpc_particular_product-container + span {
    display: none;
}

#select2-product-search-container + span {
    display: none;
}



/* @media (min-width: 1400px) {
  .loc_card_sec .loc_card {
    height: 150px;
  }
}
@media (min-width: 1400px) {
  .loc_card_sec .loc_card {
    height: 150px;
  }
}

@media (min-width: 1200px) {
  .loc_card_sec .loc_card {
    height: 130px;
  }
}

@media (min-width: 992px) {
  .loc_card_sec .loc_card {
    height: 150px;
  }
} */
@media (max-width: 1200px) {
    .row-card .flag-card {
    height: 155px;
    max-height: 155px;
  }
}

@media (max-width: 1024px) {
  .row-card .flag-card {
    height: 157px;
    max-height: 157px;
  }

  .call .icon-box .icon {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .row-card .flag-card {
    height: auto;
    max-height: max-content;
  }
}

@media (min-width: 640px) {
  .hero .flag-box:hover {
    cursor: pointer;
    transform: scale(1.06);
  }

  .hero .flag-box:hover .title a {
    color: #ffffff;
  }
}

/* ---------- End Call Page ---------- */
.form-control,
.form-select,
.form-check-input {
  border-color: #181c14;
}



.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: #181c14;
}

.form-check-input:focus {
  border-color: #005CAB;
}

.form-check-input:checked {
  background-color: #005CAB;
  border-color: #005CAB;
}

.form-control[type=date],
.form-select {
  color: #181c14 !important;
  ;
}

.btn.disabled {
  border-color: #BCBEC0;
  background-color: #BCBEC0;
  color: #FFFFFF;
}

.alternate_txt a {
  color: #005CAB;
  text-decoration: none;
}

:-ms-input-placeholder {
  color: black;
  /* Internet Explorer 10-11 */
}

::-ms-input-placeholder {
  color: cyan;
  /* Microsoft Edge */
}

::placeholder {
  color: green;
  /* Firefox, Chrome, Opera */
}

.a-tag {
  color: #005CAB;
  text-decoration: underline;
}

.HCP_search-success_result .a-tag {
    display: block !important;
    width: fit-content;
    margin-bottom: 4px;
}

.rpc_form_2 {
    display: none;
}

.tab-pane {
  display: none;
}

.nav-inactive {
  color: #181c14;
}

.nav-active {
  color: #005CAB;
  background-color: rgba(0, 92, 171, 10%);
}

input.error,
select.error {
  border: 1px solid #FF3333 !important;
}

.radio_options-error {
  display: none;
}

.contact-details {
  display: none;
}

.contact-consent {
  display: none;
}

#rpc_contacg_det {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

#cookie-table th {
  background-color: #F7F7F7;
  border: 2px solid #FFFFFF;
}

.fields,
.address-non-patient {
  display: none;
}

.success-dialog,
.error-dialog {
  display: none;
}

/* image upload input */

.drop-title {
  color: #005CAB;
}

.form__container {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #BCBEC0;
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.form__container.active {
  background-color: #eeeeee;
}

.form__file {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
}

.form__files-container {
  display: block;
  width: 100%;
  font-size: 0;
  margin-top: 20px;
}

.form__image-container {
  display: inline-block;
  height: 100px;
  position: relative;
}

.form__image-container:after {
  content: "\F62A";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 5px;
  left: 5px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.form__image-container:hover:after {
  opacity: 1;
  cursor: pointer;
}

.form__image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.europe,
.swizz {
  display: none;
}

/*  */

@media only screen and (max-width: 767px) {
  .form__image-container {
    height: 100px;
  }

  .form__image-container:after {
    line-height: 100px;
  }
}

/* search result */
.searchCardIcon {
  background-color: rgba(0, 92, 171, 0.10);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .searchCardIcon img {
    width: 30px;
  }
}


.radio_options-error {
  display: none;
}

#rpc_free_text {
  display: none;
}

#rpc_free_label {
  display: none;
}

#look-for-more {
  display: none;
}

/* tool tip */
.custom-tooltip {
  --bs-tooltip-bg: #ffffff;
  /* --bs-tooltip-zindex: #{$zindex-tooltip}; */
  --bs-tooltip-max-width: 500px;
  --bs-tooltip-padding-x: 15px;
  --bs-tooltip-padding-y: 15px;
  /* --bs-tooltip-margin: #{$tooltip-margin};
  --bs-tooltip-color: #{$tooltip-color};
  --bs-tooltip-border-radius: #{$tooltip-border-radius}; */
  --bs-tooltip-opacity: 1;
  --bs-tooltip-arrow-width: 20px;
  --bs-tooltip-arrow-height: 10px;
  --bs-tooltip-arrow-color: null;
}

.tooltip-inner {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 768px) {
  .info-toggle-img {
    width: 18px;

  }
}


.aos-animate {
  opacity: 1;
  -webkit-transform: unset !important;
  transform: unset !important;
}

/* terms and use */
@media only screen and (max-width: 767px) {
  .page-icon {
    width: 100px;
  }
}

#cookie-table th p,
#cookie-table td p {
  margin-bottom: 0;
  line-height: 1.3;
}

@media screen and (max-width: 800px) {
  table#cookie-table {
    border: 0;
  }

  table#cookie-table caption {
    font-size: 1.3rem;
  }

  table#cookie-table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table#cookie-table tr {
    border-left: 1px solid #d7d7d7;
    border-top: 1px solid #d7d7d7;
    display: block;
    margin-bottom: .625rem;
  }

  table#cookie-table td {
    border-bottom: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    display: block;
    font-size: .8rem;
    text-align: right;
  }

  table#cookie-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 1rem;
  }

  table#cookie-table td[data-label="Description"]::before {
    text-align: left;
    width: 100%;
    padding-bottom: 1rem;
  }

  table#cookie-table td[data-label="Description"] {
    text-align: left;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 402px) and (max-width: 874px){
    .form-select {
        width: 70%;
    }
}

@media screen and (min-width: 360px) and (max-width: 780px) {
    .form-select {
        width: 70%;
    }
}


.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: opacity scale 0.2s ease-in;
}

.modal-close:hover {
  opacity: 0.9;
  scale: 1.05;
}

/* breadcrumb  */

.breadcrumb-item {
  color: #005CAB;
}

.breadcrumb-item.active {
  color: #181c14;
}

/*--------------------------------------------------------------
# START Search Selection
--------------------------------------------------------------*/

.select2-container--default .select2-selection--single {
  height: 38px;
  border: 0;
  border-radius: 6px;
  border: 1px solid #000;
  outline: none;
}

#search-box .select2-container--default .select2-selection--single {
  height: 54px;
  border: 0;
  border-radius: 0px;
  border: 0;
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #181c14;
  line-height: 37px;
  background: transparent;
}

#search-box .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #181c14;
  line-height: 54px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 12px;
  padding-right: 20px;
  text-align: left;
}

#search-box .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
  padding-right: 20px;
  text-align: left;
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
  right: 8px;
}

#search-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
  right: 8px;
}

.select2-container--open .select2-dropdown--below {
  margin-top: -38px;
  background: transparent;
}


.select2-results__option {
  padding-top: 2px;
  padding-bottom: 2px;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background: url(../img/drop.svg) no-repeat;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url(../img/drop.svg) no-repeat;
  width: 12px;
  height: 12px;
  border: 0;
  margin: 0;
  top: 12px;
  left: 1px;
}

#search-box .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url(../img/drop.svg) no-repeat;
  width: 12px;
  height: 12px;
  border: 0;
  margin: 0;
  top: 20px;
  left: 2px;
}

.select2-container {
  /*z-index: 999;*/
  z-index: 99;
  display: block;
}

.select2-results {
  padding-top: 10px;
  display: none;
}

#search-box .select2-results {
  padding-top: 0px;
  display: none;
}

.select2-search--dropdown .select2-search__field {
  padding: 0px;
  height: 38px;
  border-radius: 6px;
  border: 0;
  background: transparent;
}

.select2-search--dropdown {
  padding: 0px;
}

.select2-search--dropdown .select2-search__field:focus {
  /* border: none !important; */
  outline: 0;
  box-shadow: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #000;
  border-radius: 6px;
  padding: 4px;
  padding-left: 8px;
}

.select2-dropdown {
  border: 0;
}

.select2-results__options {
  /* border: 1px solid #000; */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1) !important;
}

.select2-results__option {
  background-color: #ffffff;
  color: #181c14;
  padding: 10px;
  transition: ease 0.2s;
}

.select2-results__option.select2-results__option--highlighted:hover {
  background-color: rgba(0, 92, 172, 0.1);
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

select+.select2-container {
  width: 100% !important;
  /* display: inline-block; */
}

.select2-container--default .select2-selection--single,
.option-bottom,
.location-select {
  background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #ffffff;
  color: #005CAB;
}

/*--------------------------------------------------------------
# END Search Selection
--------------------------------------------------------------*/