/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* ----------------------------------------------------------- */
/*  1. General Header Styles                                   */
/* ----------------------------------------------------------- */

a:hover {
  color: var(--white-color);
}

.why-header {
  position: relative;
  z-index: 41;
}

.why-header-template {
  border-radius: 13px;
  background: var(--white-color);
  box-shadow: 0px 4px 71px 0px rgba(18, 37, 75, 0.12);
  padding: 0 50px;
}

.header-logo {
  padding: 0 !important;
}

.why-header-logo {
  position: absolute;
  left: 0;
  background: var(--black-color);
  padding: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  height: 140px;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.why-header-logo a img {
  max-height: 65px;
  transition: all 0.4s ease-in-out;
}

.why-header-template .main-menu>ul>li>a {
  padding: 45px 0;
  transition: padding 0.4s ease-in-out, color 0.3s ease;
}

.header-menu {
  display: flex;
  justify-content: center;
}

.why-header-template .header-one-button .theme-btns {
  padding: 15px 35px;
  font-weight: 600;
}

.header-button-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.why-header-mobile-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-header .menu-area .row {
  flex-wrap: nowrap;
}

.why-header-logo .why-mobile-logo {
  display: none;
}

.translate-open {
  cursor: pointer;
  color: var(--black-color);
  transition: color 0.3s ease;
}

/* ----------------------------------------------------------- */
/*  2. Mobile Menu Styles                                      */
/* ----------------------------------------------------------- */

.why-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(36, 35, 29, 0.8);
  z-index: 999999;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.why-menu-wrapper.why-body-visible {
  opacity: 1;
  visibility: visible;
}

.why-menu-wrapper .mobile-logo {
  padding: 30px;
  display: block;
  text-align: center;
  background: var(--black-color);
}

.why-menu-wrapper .why-menu-toggle {
  border: none;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--black-color);
  background-color: var(--white-color);
  border-radius: 50%;
}

.why-menu-wrapper .why-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--white-color);
  border-right: 3px solid var(--black-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.why-menu-wrapper.why-body-visible .why-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.why-mobile-menu {
  overflow-y: auto;
  flex: 1;
  padding-bottom: 20px;
  margin-top: 33px;
  text-align: left;
}

.why-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.why-mobile-menu ul li {
  border-bottom: 1px solid var(--border-color);
  list-style-type: none;
}

.why-mobile-menu ul li li:first-child {
  border-top: 1px solid var(--border-color);
}

.why-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--black-color);
  padding-left: 18px;
}

.why-mobile-menu ul li.tp-active>a {
  color: var(--black-color);
}

.why-mobile-menu ul li ul li {
  padding-left: 10px;
}

.why-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.why-mobile-menu ul .why-item-has-children>a {
  position: relative;
}

.why-mobile-menu ul .why-item-has-children>a .why-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
}

.why-mobile-menu ul .why-item-has-children>a .why-mean-expand:before {
  content: "\F64D";
  font-family: 'bootstrap-icons';
}

.why-mobile-menu ul .why-item-has-children>a:after {
  content: "\F659";
  font-family: 'bootstrap-icons';
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--border-color);
  float: right;
  margin-top: 1px;
}

.why-mobile-menu ul .why-item-has-children.tp-active>a .why-mean-expand:before {
  content: "\F2EA";
  font-family: 'bootstrap-icons';
}

.why-mobile-menu ul .why-item-has-children.tp-active>a:after {
  content: "\F2EA";
  font-family: 'bootstrap-icons';
}

.why-mobile-menu>ul {
  padding: 0 40px;
}

.why-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 20px;
  border: none;
  display: inline-block;
  border-radius: 5px;
  background: #eff1f5;
  color: var(--black-color);
}

.why-menu-toggle:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

.mobile-button-area {
  padding: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-button-area .theme-btns {
  display: block;
}

/* ----------------------------------------------------------- */
/*  3. Sticky Header Styles                                    */
/* ----------------------------------------------------------- */

.sticky-placeholder {
  display: none;
}

/*
 * Sticky Header Styles
 * Using 'body' prefix to ensure high specificity over theme's default styles.
*/
body .site-header#why-sticky-menu.sticky {
  position: fixed;
  top: calc(30px + var(--wp-admin--admin-bar--height, 0px));
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  max-width: 100%;
}

header.header-area.site-header.why-site-header {
  position: absolute;
  width: 100%;
  top: 50px;
}

body .site-header#why-sticky-menu.sticky .why-header-logo {
  height: 120px;
}

body .site-header#why-sticky-menu.sticky .why-header-logo img {
  height: auto;
  width: auto;
}

body .site-header#why-sticky-menu.sticky .main-menu>ul>li>a {
  padding: 35px 0;
}

/* ----------------------------------------------------------- */
/*  4. Responsive Styles                                       */
/* ----------------------------------------------------------- */

@media (max-width: 991px) {

  /* General Header Responsive */
  .why-header-template {
    padding: 0 30px;
  }

  .why-header-template .menu-area {
    padding: 0;
  }

  .why-header-logo {
    height: 100px;
    padding: 15px;
  }

  .why-header-logo a img {
    max-height: 50px;
  }

  .why-header-template .why-menu-toggle {
    margin: 15px 0;
  }

  .header-menu {
    justify-content: flex-end;
  }

  /* Sticky Header Responsive */
  body .site-header#why-sticky-menu.sticky .why-header-logo {
    height: 100px;
  }

  .why-header-logo .why-desktop-logo {
    display: none;
  }

  .why-header-logo .why-mobile-logo {
    display: block;
  }

  .why-header-logo .why-mobile-logo img {
    max-height: 80px;
  }
}

/* ----------------------------------------------------------- */
/*  5. Search Popup Styles                                     */
/* ----------------------------------------------------------- */

.header-translate-popup {
  position: fixed;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  padding: 20px;
  display: flex;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.header-translate-popup.active {
  opacity: 1;
  visibility: visible;
}

.header-translate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: -1;
}

.header-translate-popup-content {
  position: relative;
  background: var(--white-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 9px 75px rgba(8, 20, 44, 0.09);
  width: 100%;
  max-width: 280px;
  margin: auto;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.header-translate-popup.active .header-translate-popup-content {
  transform: scale(1);
}

.header-translate-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--black-color);
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.header-translate-close-btn:hover {
  color: var(--thm-color);
}

.why-translate-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
  min-width: 200px;
}

.why-translate-menu li {
  display: block;
  margin-bottom: 5px !important;
}

.why-translate-menu li:last-child {
  margin-bottom: 0 !important;
}

.why-translate-menu li a {
  color: var(--black-color);
  font-size: 18px !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 15px !important;
  display: flex !important;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
}

.why-translate-menu li a:hover {
  color: var(--thm-color);
  opacity: 1;
}

.why-translate-menu li a img {
  width: 24px !important;
  height: auto !important;
  min-width: 24px;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #e1e1e1 !important;
}

body.locked {
  overflow: hidden;
}


/* ----------------------------------------------------------- */
/*  5. Form                                                    */
/* ----------------------------------------------------------- */

body.user-registration-page .user-registration.ur-frontend-form:has(.ur-grid-1) {
  max-width: 1200px;
}

.ur-frontend-form .user-registration-multi-part-indicator.circle .user-registration-multi-part--steps-list {
  padding-left: 0;
}

#user-registration-form-10145.user-registration .field-radio ul.user-registration-image-options {
  display: grid;
}


.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul.user-registration-image-options li label:hover,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-multiple_choice ul.user-registration-image-options li label:hover,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-radio ul.user-registration-image-options li label:hover {
  color: #08273c !important;
  border-color: #08273c !important;
}

.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul.user-registration-image-options li input[type=checkbox]:checked~label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul.user-registration-image-options li input[type=radio]:checked~label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-multiple_choice ul.user-registration-image-options li input[type=checkbox]:checked~label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-multiple_choice ul.user-registration-image-options li input[type=radio]:checked~label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-radio ul.user-registration-image-options li input[type=checkbox]:checked~label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-radio ul.user-registration-image-options li input[type=radio]:checked~label {
  color: #08273c !important;
  border-color: #08273c !important;
}

body.user-registration-membership_page_user-registration-login-forms #user-registration:not(.user-registration-MyAccount),
body.user-registration-membership_page_user-registration-login-forms .user-registration:not(.user-registration-MyAccount),
body.user-registration-page #user-registration:not(.user-registration-MyAccount),
body.user-registration-page .user-registration:not(.user-registration-MyAccount) {
  border-radius: 10px;
}

.ur-frontend-form .ur-button-container.split {
  width: 100% !important;
  display: flex;
  justify-content: space-between;
}

.ur-frontend-form .ur-button-container.split .user-registration-multi-part-nav-prev {
  background-color: #6DBEED !important;
  color: #fff !important;
  box-shadow: none !important;
  border-radius: 50px;
}

.ur-frontend-form .ur-button-container.split .user-registration-multi-part-nav-next,
body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-button-container .ur-submit-button {
  color: #fff;
  background-color: #08273c;
  border-radius: 50px;
}

.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul.user-registration-image-options li label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-multiple_choice ul.user-registration-image-options li label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-radio ul.user-registration-image-options li label {
  min-height: 38px;
  place-content: center;
  margin-bottom: 0 !important;
}

.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-radio:has(.ur-input-border-red) ul.user-registration-image-options li label,
.user-registration .ur-form-row .ur-form-grid .ur-field-item.field-radio:has(.user-registration-error):not(:has(.user-registration-valid)) ul.user-registration-image-options li label {
  margin-bottom: 0;
  border-color: #ff4f55 !important;
}

.why-ur-form .ur-form-row .ur-form-grid input.ur-flatpickr-field {
  padding-left: 35px !important;
}

.ur-field-item:has(input[type="checkbox"]) .description a:hover {
  color: #6DBEED !important;
}

:root {
  --ur-primary-color: #08273c;
}

@media (max-width: 480px) {
  .ur-frontend-form .user-registration-multi-part-indicator.circle {
    padding-left: 0;
    padding-right: 0;
  }

  .ur-frontend-form .user-registration-multi-part-indicator.circle .user-registration-multi-part-indicator-title {
    font-size: 12px;
    line-height: 1.2;
    padding-left: 5px;
    padding-right: 5px;
  }

  .user-registration .ur-form-row .ur-form-grid .ur-field-item.field-radio ul.user-registration-image-options li:first-child label {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 601px) {
  .user-registration-page .ur_membership_registration_container .ur_payment_gateway_container #payment-gateway-body .ur_membership_input_label {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 600px) {
  .user-registration-page .ur_membership_registration_container .ur_payment_gateway_container #payment-gateway-body .ur_membership_input_label:last-child {
    margin-bottom: 0 !important;
  }
}

.user-registration .ur-form-row .ur-form-grid .user-registration-password-hint {
  margin: .5em 0;
}


.user-registration .ur-form-row .ur-form-grid .user-registration-password-strength {
  color: #000;
  margin-bottom: 20px;
}

.user-registration .ur-form-row .ur-field-address-state-outer-wrapper {
  gap: 20px;
}

/* ----------------------------------------------------------- */
/*  6. Login Form Styles                                       */
/* ----------------------------------------------------------- */

.ur-frontend-form.login:not(.ur-edit-profile) {
  padding: 60px;
  background-color: var(--white-color, #ffffff);
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px 0px, rgba(17, 17, 26, 0.05) 0px 8px 32px 0px;
  border-radius: 8px;
  max-width: 520px;
  margin: 0 auto;
}

.ur-frontend-form.login .ur-submit-button {
  border-radius: 50px !important;
  justify-content: center !important;
}

.ur-frontend-form.login .user-registration-LostPassword a:hover,
.ur-frontend-form.login .user-registration-register a:hover {
  color: #6DBEED !important;
}

.ur-frontend-form.login .user-registration-form-row--wide {
  margin-bottom: 15px !important;
}

.ur-frontend-form.login .user-registration-before-login-btn {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.ur-frontend-form.login .user-registration-form__input-checkbox,
.user-registration .ur-label.checkbox .input-checkbox.ur-frontend-field {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border: 1px solid #c4c4c4 !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.ur-frontend-form.login .user-registration-form__input-checkbox:checked,
.user-registration .ur-label.checkbox .input-checkbox.ur-frontend-field:checked {
  background-color: #08273c !important;
  border-color: #08273c !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.ur-frontend-form.login .user-registration-form__label-for-checkbox,
.user-registration .ur-label.checkbox {
  display: flex !important;
  align-items: center !important;
}


.ur-frontend-form.login .ur-reset-password-btn {
  border-radius: 50px !important;
  justify-content: center !important;
}

@media (max-width: 600px) {
  .ur-frontend-form.login:not(.ur-edit-profile) {
    padding: 40px 30px !important;
  }

  .ur-frontend-form.login .user-registration-before-login-btn {
    flex-direction: column !important;
    height: auto !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }
}

.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item:last-child {
  margin-bottom: 20px;
}

body.user-registration-membership_page_user-registration-login-forms #user-registration:not(.user-registration-MyAccount) .ur-button-container,
body.user-registration-membership_page_user-registration-login-forms .user-registration:not(.user-registration-MyAccount) .ur-button-container,
body.user-registration-page #user-registration:not(.user-registration-MyAccount) .ur-button-container,
body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-button-container {
  margin-top: 0;
}

/* ----------------------------------------------------------- */
/*  7. Account Page                                            */
/* ----------------------------------------------------------- */


#user-registration .user-registration-MyAccount-content .ur-frontend-form .user-registration-Button.button-primary {
  border-radius: 50px !important;
}

.user-registration-page .ur_membership_registration_container .ur_payment_gateway_container #payment-gateway-body .ur_membership_input_label {
  flex-grow: 1;
}

@media (max-width: 992px) {
  #user-registration .user-registration-MyAccount-content .ur-frontend-form {
    padding: 0 !important;
  }

  #user-registration.vertical .user-registration-MyAccount-content {
    padding: 20px 0 0 0 !important;
  }
}


.ur-thank-you-page .thank-you-page-container .ur-button-wrapper .ur-redirect-btn {
  border-radius: 50px !important;
}


/* ----------------------------------------------------------- */
/*  8. Service Widget                                          */
/* ----------------------------------------------------------- */
.service-box {
    padding: 40px;
    margin-bottom: 20px;
    border: 0.666667px solid #e3e8f4;
    border-radius: 15px;
    background: var(--white-color);
    position: relative;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    color: #7b7e86;
}

.service-box:hover {
    box-shadow: var(--box-shedow);
}

.service-grid-icon {
    font-size: 45px;
    margin-bottom: 40px;
    height: 75px;
    width: 75px;
    border-radius: 10px;
    color: #6dbeed;
    transition: 0.4s;
    display: inline-flex;
    background: rgba(14, 89, 242, 0.1);
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-grid-icon svg {
    height: 45px;
    width: 45px;
}

.service-box:hover .service-grid-icon {
    transform: rotateY(180deg);
}

.service-grid-title {
    margin-bottom: 15px;
    font-weight: 500;
    font-family: var(--heading-font);
    color: #08273c;
    font-size: 24px;
    line-height: 34px;
}

.service-grid-title a {
    color: #08273c;
}

.service-box:hover .service-grid-title a {
    color: var(--thm-color);
}

.services-grid-des {
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 16px;
    font-family: var(--body-font);
    color: #7b7e86;
}

.service-grid-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-grid-btn .btn-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    transition: 0.4s;
}

.service-box:hover .btn-text {
    color: var(--thm-color);
}

.service-btns {
    font-size: 35px;
    transform: rotate(320deg);
    margin-top: 5px;
    transition: 0.4s;
    color: var(--black-color);
    display: inline-block;
}

.service-box:hover .service-btns {
    transform: rotate(0deg);
    color: var(--thm-color);
}

/* ----------------------------------------------------------- */
/*  9. Location Selector (User Registration)                   */
/* ----------------------------------------------------------- */

.user-registration .location-selector ul.user-registration-image-options li {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.user-registration .location-selector ul.user-registration-image-options li label {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 20px;
    border: 1px solid #e3e8f4;
    border-radius: 15px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.user-registration .location-selector ul.user-registration-image-options li label span.user-registration-image-choice {
    width: 25px;
    height: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    margin: 0 !important;
}

.user-registration .location-selector ul.user-registration-image-options li label img {
    width: 25px !important;
    height: auto !important;
    margin: 0 !important;
    transition: transform 0.3s ease !important;
}

.user-registration .location-selector ul.user-registration-image-options li label:hover span img {
    transform: scale(1.1) !important;
}

.user-registration .location-selector ul.user-registration-image-options li label::before,
.user-registration .location-selector ul.user-registration-image-options li label::after,
.user-registration .location-selector ul.user-registration-image-options li label span.user-registration-image-choice::before,
.user-registration .location-selector ul.user-registration-image-options li label span.user-registration-image-choice::after {
    content: none !important;
    display: none !important;
}

/* ----------------------------------------------------------- */
/*  9. Account page                                            */
/* ----------------------------------------------------------- */


.user-registration-MyAccount .user-registration-MyAccount-content .user-registration-error {
    display: flex !important;
    flex-direction: column !important;
    padding-left: 45px !important;
    height: auto !important;
    width: 100% !important;
    position: relative !important;
    text-align: left !important;
}

.user-registration-MyAccount .user-registration-MyAccount-content .user-registration-error::before {
    position: absolute !important;
    left: 15px !important;
    top: 5px !important;
    margin: 0 !important;
}

.user-registration-MyAccount .user-registration-MyAccount-content .user-registration-error li {
    display: block !important;
    height: auto !important;
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 5px !important;
}

/* ----------------------------------------------------------- */
/* 10. Consultation Form                                       */
/* ----------------------------------------------------------- */

.why-consultation-form-wrapper {
    width: 100%;
}

.why-consultation-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-consultation-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
}

.why-consultation-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-consultation-field label {
    font-size: 16px;
    font-weight: 700;
    color: #08273c;
}

.why-consultation-input,
.why-consultation-form select,
.why-consultation-static-field {
    min-height: 64px;
    width: 100%;
    border: 1px solid #dbe4f2;
    border-radius: 22px;
    padding: 18px 22px;
    background: #ffffff;
    color: #08273c;
    font-size: 16px;
    line-height: 1.45;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-consultation-form .why-consultation-input,
.why-consultation-form select {
    margin-bottom: 0 !important;
}

.why-consultation-input:focus,
.why-consultation-form select:focus {
    outline: 0;
    box-shadow: none;
}

.why-consultation-static-field {
    display: flex;
    align-items: center;
    background: #f7fbff;
    font-weight: 500;
}

.why-consultation-custom-service.is-hidden {
    display: none;
}

.why-consultation-custom-service {
    margin-top: 12px;
}

.why-consultation-help {
    margin: 0;
    color: #617187;
    font-size: 15px;
    line-height: 1.7;
}

.why-consultation-form select {
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2308273c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 8px;
}

.why-consultation-form .why-consultation-submit {
    background: var(--black-color);
    border: 0;
    width: 100%;
}

.why-consultation-form .why-consultation-submit:hover {
    background: var(--thm-color);
}

.why-consultation-notice {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.why-consultation-notice--success {
    background: #edf8f0;
    border: 1px solid #b7e3c0;
    color: #1e6f37;
}

.why-consultation-notice--error {
    background: #fff3f0;
    border: 1px solid #f2c7bf;
    color: #a03b2a;
}
