:root {
    --color-white-: #fff;
    --color-primary-: #006991;
    --color-second-: #0090a1;
    --color-grey-: #929497;
}

.popup-booking .section__book .container {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}


.values table td a {
	    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    background-color: #009bab;
    padding: 8px 40px;
    border-radius: 24px;
    width: fit-content;
    cursor: pointer;
    display: block;
    white-space: nowrap;
    margin: 0 auto;
    transition: all 0.3s linear;
}

.values table td a:hover {
	    transform: scale(1.04);
    background-color: #00749b;
    transition: all 0.3s linear;
}

body {
    overflow-x: hidden;
}

.table-responsive > .table-bordered a {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    background-color: #009bab;
    padding: 8px 40px;
    border-radius: 24px;
    width: fit-content;
    cursor: pointer;
    display: block;
    white-space: nowrap;
    margin: 0 auto;
    transition: all 0.3s linear;
}

.table-responsive > .table-bordered a:hover {
    transform: scale(1.04);
    background-color: #00749b;
    transition: all 0.3s linear;
}

.popup-booking {
    position: fixed;
    z-index: 101;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear all;
}

.popup-booking.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s linear all;
}

.popup-booking .close {
    position: absolute;
    top: 10px;
    right: 10px;
    text-shadow: unset;
    opacity: 1;
    color: #272727;
    cursor: pointer;
}

.blur {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear all;
}

.blur.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s linear all;
}

.global-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 54px;
    color: #00749b;
    text-align: center;
    margin-bottom: 0;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
    color: #ff0f1c;
    font-weight: 500;
    margin-bottom: 0;
	display: none;
}
.group-choice-date .wpcf7-form-control-wrap {
    width: 100%;
}
strong {
    font-weight: 700;
}

.background-grey {
    background-color: #f4f6f6;
}

.title-campaign {
    color: var(--color-primary-);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
}

.title-campaign--second {
    color: #00749b;
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
}

.header__book-section {
    background-color: var(--white-color);
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    height: 110px;
    z-index: 3;
    transition: all 0.3s linear;
}

#header__book-section.header__book-section.active {
    height: 110px;
    transition: all 0.3s linear;
}

header .header__book--group-left {
    gap: 40px;
}

header .header__menu--list {
    gap: 35px;
    display: flex;
    align-items: center;
}

header .header__menu--list .header__menu--item {
    /*    white-space: pre-line;*/
    text-align: left;
    letter-spacing: 0.68px;
    color: #009bab;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
}

header .header__menu--list .header__menu--item a {
	    font-size: 13px;
    line-height: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

header .header__menu--list .header__menu--item::before {
    background-color: #a2dadd;
	position: absolute;
    display: block;
    content: "";
    bottom: -45px;
    left: 50%;
    height: 4px;
    width: 0;
    transition: all .3s linear;
    transform: translateX(-50%);
}

header .header__menu--list .header__menu--item:hover::before {
        width: 130%;
    transition: all .3s linear;
}

/* section banner */

.section__banner {
    position: relative;
}

.section__banner .banner__img {
    width: 100%;
    height: auto;
}

.section__banner .banner__content--heading {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
    color: #00749b;
white-space: nowrap;
}

.section__banner .banner__container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section__banner .banner__container .col-content-custom {
    flex: 0 0 40%;
    max-width: 40%;
}

.section__banner .banner__content--heading div:first-child {
    color: var(--color-primary-);
}

.section__banner .banner__content--heading div:last-child {
    color: var(--color-second-);
}

.section__banner .banner__content--desc {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #5d5d5d;
    text-align: justify;
}

.section__banner .banner__content--button {
    font-size: 22px;
    line-height: 1;
    color: var(--color-white-);
    font-weight: 500;
    background-color: var(--color-second-);
    padding: 10px 30px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s linear;
}

.section__banner .banner__content--button:hover {
    background-color: var(--color-primary-);
    transition: all 0.3s linear;
}

.section__banner .banner__content--button img {
    width: 32px;
    height: auto;
    margin: 0;
}

/* section news */

.section__news {
    padding: 40px 0;
}

.section__news .news__item .news__group--title {
    padding: 33px 0;
    cursor: pointer;
}

.section__news .news__item:first-child .news__group--title {
    background-color: #a2dadd;
}

.section__news .news__item:nth-child(2) .news__group--title {
    background-color: #6cb5c3;
}

.section__news .news__item:nth-child(3) .news__group--title {
    background-color: #368faa;
}

.section__news .news__item:last-child .news__group--title {
    background-color: #006991;
}

.section__news .news__group--title h3 {
    color: #fff;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section__news .news__group--title h3 .news__dropdown {
    margin: 0;
    transition: all linear 0.3s;
    /* padding-left: 20px; */
    margin-left: 20px;
}

.section__news .news__group--title h3 .news__dropdown.active {
    transform: rotate(180deg);
    transition: all linear 0.3s;
}

.section__news .news__group--content .container {
    padding: 50px 38px;
}
.section__news .news__group--content ul {
    list-style: disc;
    padding-left: 15px;
}
.section__news .news__group--content ul li {
    margin-bottom: 5px;
}
.section__news .news__group--content {
    /*    max-height: 0;*/
    overflow: hidden;
    transition: all 0.4s linear;
}

.section__news .news__group--content.active {
    /*    max-height: 2000px;*/
    transition: all 0.6s linear;
}

/* section infor */

.section__infor {
    padding: 80px 0 50px;
}

.section__infor .infor__img {
    padding-right: 25px;
}

.section__infor .infor__img img {
    width: 100%;
    height: auto;
}

.section__infor .infor__content {
    /* padding-top: 15px; */
    padding-left: 10px;
}

.infor__content--button {
    font-size: 19px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    background-color: #009bab;
    padding: 8px 25px;
    border-radius: 24px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s linear;
}

.infor__content--button:hover {
    background-color: #006991;
    color: #fff;
    transition: all 0.3s linear;
}

.infor__content ul {
    list-style-position: inside;
    padding-left: 20px;
}

.section__infor .infor__content ul li {
    list-style: disc;
    margin-bottom: 4px;
}
.section__infor .infor__content--desc {
    /* white-space: break-spaces; */
    padding-top: 20px;
    font-weight: 400;
    color: var(--color-grey-);
    margin-bottom: 24px;
    text-align: justify;
}

/* section package */

.section__package {
    padding: 40px 0 50px;
}

.section__package .package__item {
    background: #f5f7f7 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 20px #00000021;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 40px 30px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section__package .package__title {
    text-align: center;
    color: var(--color-primary-);
    font-size: 31px;
    line-height: 1.2;
    font-weight: 500;
}

.section__package .package__item--desc {
    padding: 30px 0;
    margin-top: 30px;
    border-top: 2px solid #a2dadd;
    color: #767575;
}

.section__package .package__item--desc span {
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}

.section__package .package__item--desc ul {
    padding-left: 47px;
    list-style-type: disc;
}

.section__package .package__item--desc .img-tick {
    position: absolute;
    top: 4px;
    left: 0;
}

.section__package .package__item--cost {
    display: block;
    text-align: center;
}

.section__package .package__note {
    letter-spacing: 0.38px;
    color: #006991;
    font-size: 16px;
    font-style: italic;
    padding-left: 15px;
    display: block;
    margin-bottom: 30px;
}

.section__package .slick-initialized .slick-slide {
    padding: 0 16px 50px;
}

/* section client */

.client:lang(en) {
    display: none;
}

.section__client {
    padding: 80px 0 100px;
    background-color: #f5f7f7;
}

.section__client .client__item--infor-img {
    width: 76px;
    height: 76px;
    border-radius: 100%;
    overflow: hidden;
}

.section__client .package__title {
    padding: 32px 0 54px;
}

.section__client .client__item {
    background: #fff;
    box-shadow: 0px 30px 20px #00000015;
    border: 2px solid #ffffff;
    border-radius: 11px;
    padding: 16px;
    height: 100%;
}

.section__client .slick-slider .slick-slide {
    padding: 0 15px 50px;
}

.section__client .slick-slider .slick-slide > div {
    height: 100%;
}

.section__client .client__item--desc {
    padding: 0px;
    color: #929497;
    min-height: 230px;
}

.section__client .client__item .client__item--img img {
    margin: 0;
}

.section__client .client__item--infor {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #929497;
    font-size: 20px;
    /* flex-direction: column; */
}

.section__client .client__item--infor .client__item--infor-name {
    font-size: 16px;
    min-height: 75px;
    flex: 1 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__client .slick-track {
    display: flex !important;
}

.section__client .slick-slide {
    height: inherit !important;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slick-dots button {
    display: block;
    width: 14px;
    height: 14px;
    padding: 0;

    border: 1px solid var(--color-second-);
    border-radius: 100%;
    background-color: transparent;

    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: #0090a1;
}

/* section book */

.section__book {
    background-color: var(--color-primary-);
    padding: 40px 0 50px;
}

.section__book .book__form .row {
	align-items: flex-start;
}

.section__book .desc-text {
	font-size: 10px;
    font-weight: 400;
    display: block;
    padding: 16px;
    background-color: #eee;
    border-radius: 8px;
}
.section__book .desc-text a {
	color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
.section__book .book__title {
    color: var(--color-white-);
}

.section__book .book__form input {
    padding: 27px 16px;
    border-radius: 0;
    color: var(--color-second-);
    font-weight: 500;
    outline: none;
}

.section__book .book__form input::placeholder {
    color: var(--color-second-);
}

.section__book .book__form textarea {
    height: 188.8px;
    border-radius: 0;
    width: 100%;
    color: var(--color-second-);
    font-weight: 500;
    outline: none;
}

.section__book .book__form .group-choice-date {
    width: 100%;
    position: relative;
}

.section__book .book__form .group-choice-date label.error {
    position: absolute;
    left: 0;
    top: 100%;
}

.section__book .book__form #allow-error {
    display: none;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.section__book .book__form .input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    border: 0px;
    border-radius: 0.25rem;
    position: absolute;
    z-index: 2;
    height: 100%;
    right: 0;
}

.section__book .book__form p {
    margin-bottom: 0;
	width: 100%;
}

.section__book .book__form .book__form--title {
    font-size: 24px;
    color: #006991;
    display: block;
	margin-top: 0;
    margin-bottom: 16px;
    font-weight: 500;
}

.section__book .book__form--title.title {
    font-size: 34px;
    line-height: 71px;
    font-weight: 500;
    margin-top: 0;
}

.section__book .book__form--title.second {
    margin-top: 45px;
}

.section__book .book__form .book__form--group {
    padding-top: 41.5px;
    padding-bottom: 20px;
}

.section__book .book__form .book__form--checkbox {
    display: flex;
    align-items: self-start;
    gap: 5px;
}

.section__book .book__form .book__form--checkbox p {
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 500;
    color: var(--color-white-);
}

.section__book .book__form .book__form--checkbox p.active {
    color: #ff0f1c;
}

.section__book .book__form .book__form--checkbox input[type='checkbox'] {
    transform: translateY(2px);
    width: 13px;
    height: 13px;
    accent-color: var(--color-primary-);
}

.section__book .book__form .book__form--button {
    width: 100%;
    height: 57.6px;
    text-align: center;
    border: 0;
    outline: none;
    background-color: #0090a1;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    /* margin-top: 61px; */
    transition: all 0.3s linear;
	margin-top: 0px;
	height: 48px;
    border-radius: 999px;
}

.section__book .book__form .book__form--button:hover {
    background-color: #00a2b5;
	color: #ffffff;
    transition: all 0.3s linear;
}

.section__book .book__form .input-group {
    display: flex;
    flex-direction: column;
	position: relative;
	border-radius: 15px;
}

.section__book .book__form .input-group img {
	width: 16px;
    	height: auto;
    	position: absolute;
    	top: 50%;
    	right: 20px;
    	pointer-events: none;
    	z-index: 2;
    	transform: translateY(-50%);
}
.section__book .book__form .input-group input {
    width: 100%;
}

.section__book .book__form label.error {
    color: #ff0f1c;
    font-weight: 500;
    margin-bottom: 0;
    display: none !important;
}

.section__book .checkbox__container {
    display: block;
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: translateY(4px);
    height: 13px;
}

.section__book .checkbox__container input {
    position: absolute;
    opacity: 0;
    top: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    left: 0;
    z-index: 2;
}

.section__book .checkbox__container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    width: 13px;
    background-color: #006991;
    border: 1px #fff solid;
}

.section__book .checkbox__container:hover ~ .checkmark {
    background-color: #ccc;
}

.section__book .checkbox__container input:checked ~ .checkmark {
    background-color: #006991;
}

.section__book .checkbox__container .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.section__book .checkbox__container input:checked ~ .checkmark:after {
    display: block;
}

.section__book .checkbox__container .checkmark:after {
    left: 33%;
    top: 50%;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg) translate(-50%, -50%);
}

/* section video */

.section__video {
    padding: 80px 0 100px;
}

.section__video .video__content--desc {
    padding-top: 20px;
    font-weight: 400;
    color: var(--color-grey-);
    margin-bottom: 0;
    white-space: break-spaces;
}

.section__video .video__content {
    padding-right: 40px;
}

.section__video .video__group {
    position: relative;
    width: 100%;
    padding-top: 20px;
}

.play-btn-campaign {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    padding: 20px;
    width: 80px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 100%;
    color: white;
    border: 2px solid #fff;
}

.play-btn-campaign img {
    transform: translateX(10px);
}

/* section faq */

.section__faq {
    padding: 80px 0 100px;
}

.section__faq .faq__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__faq .faq__title-main {
    font-size: 104px;
    color: var(--color-primary-);
    line-height: 1.2;
    font-weight: 500;
}

.section__faq .faq__item {
    padding: 15px 20px;
    border: 2px solid #006991;
    border-radius: 11px;
    margin-bottom: 15px;
    cursor: pointer;
}

.section__faq .faq__item--bottom {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.6s linear;
}

.section__faq .faq__item.active .faq__item--bottom {
    max-height: 2000px;
    transition: max-height 0.6s linear;
}

.section__faq .faq__item--top {
    /*    display: flex;*/
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-right: 25px;
}

.section__faq .faq__item--top .faq__item--img {
    position: absolute;
    top: calc(50% - 7.5px);
    right: 5px;
}

.section__faq .faq__item--top .faq__item--img img {
    margin: 0;
    transition: all 0.3s linear;
}

.section__faq .faq__item.active .faq__item--top .faq__item--img img {
    transform: rotate(180deg);
    transition: all 0.3s linear;
}

.section__faq .faq__item--bottom span {
    color: #929497;
    padding: 20px 20px 0 0;
    display: block;
}

/* section thank you */

.section__thanks {
    position: relative;
}

.section__thanks .thanks__img img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.section__thanks .thanks__img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: linear-gradient(
        to right,
        #a2dadd,
        var(--color-primary-),
        var(--color-primary-),
        var(--color-primary-),
        #a2dadd
    );
    opacity: 0.8;
}

.section__thanks .thanks__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section__thanks .thanks__content--title {
    font-size: 68px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.section__thanks .thanks__content--desc {
    font-size: 38px;
    text-align: center;
    color: #fff;
    max-width: 1150px;
}

.ff-18 {
    font-size: 18px;
}
.ff-14 {
    font-size: 14px;
}
.fs-justify {
    text-align: justify;
}
.table td,
.table th {
    vertical-align: middle;
}
.doctor_list_item ul {
    list-style: disc;
}
.doctor_list_item .title-campaign--second {
    height: 45px;
    text-align: center;
}
.doctor_list_item ul li {
    margin-bottom: 5px;
}

a.btn {
    background-color: #009bab;
    font-size: 16px;
    line-height: 1;
    height: unset;
    padding: 8px 25px;
    font-weight: 400;
    text-transform: unset;
    border-radius: 24px;
}

/* value */

.values .nav-item {
    width: 50%;
}

.values table {
    font-size: 20px;
    line-height: 30px;
}

.values .table-type-1 tr:nth-child(2),
.values .table-type-1 tr:nth-child(6) {
    background-color: #c6c6c6;
    color: #fff;
}

.values .table-type-1 th,
.values .table-type-4 th {
    padding: 24px;
    font-weight: 500;
    border: 1px solid #e1e1e1;
}

.values .table-type-4 th {
    text-align: center;
}

.values .table-type-4 thead th {
    width: 25%;
}

.values .table-type-4 thead th:nth-child(2) {
    width: 25%;
}

.values .table-type-4 thead th:nth-child(3),
.values .table-type-4 thead th:nth-child(5) {
    width: 12.5%;
}

.values .table-type-4 tbody th {
    color: #006991;
    text-align: left;
}

.values .table-type-4 tbody td {
    font-size: 16px;
    padding: 12px 24px;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.values .table-type-4 tbody tr:nth-last-child(-n + 5) td {
    text-align: left;
}

.values .table-type-4 tbody tr:nth-child(odd) {
    background-color: #fff;
}

.values .table-type-1 th:first-child {
    text-align: center;
}

.values .table-type-1 td {
    border: 1px solid #e1e1e1;
}

.values .table-type-1 td:first-child {
    padding: 36px 24px 24px;
    text-align: center;
}

.values .table-type-1 td:not(:first-child) {
    font-size: 14px;
    line-height: 20px;
    padding: 36px 24px 24px;
}

.values .table-type-1 td:first-child {
    color: #00749b;
    text-align: center;
    font-weight: 500;
    /* padding: 36px 24px 24px; */
}

.values .table-type-1 td ul {
    list-style: disc;
    list-style-position: inside;
}

.values .table-type-1 td ul li {
    margin-bottom: 6px;
}

.values .table-type-2 {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}

.values .table-type-2 thead th,
.values .table-type-3 thead th {
    width: auto;
    text-align: center;
    color: #00749b;
    font-size: 20px;
    line-height: 24px;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
}

.values .table-type-2 tbody tr:nth-child(even),
.values .table-type-3 tbody tr:nth-child(even) {
    background-color: #fff;
}

.values .table-type-2 tbody td,
.values .table-type-3 tbody td {
    font-size: 16px;
    padding: 12px 24px;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.values .table-type-2 thead th span,
.values .table-type-3 thead th span {
    font-weight: 300;
}

.values .nav-link {
    text-align: center;
    padding: 33px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 15px 15px 0px 0px;
    background-color: #00749b;
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    border: 0;
    transition: all 0.3s linear;
}

.values .nav-link.active {
    background-color: #009bab;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    transform: scale(1.04) translateY(-2px);
    transition: all 0.3s linear;
}

.values .nav-item:first-child .nav-link.active {
    transform: scale(1.04) translateY(-2px) translateX(11px);
}

.values .nav-item:last-child .nav-link.active {
    transform: scale(1.04) translateY(-2px) translateX(-11px);
}

.values .tab-content > .tab-pane {
    background-color: #f5f7f7;
    padding: 32px 16px;
}

/* information */

.section__information {
    background-color: #eeefef;
}

.section__information .information__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section__information .information__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
    max-width: 556px;
    padding: 106px 0;
    padding-left: 76px;
}

.section__information .information__item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.section__information
    .information__item:nth-child(even)
    .row
    .information__content {
    padding-left: 0;
    padding-right: 70px;
    margin-left: auto;
}

.section__information
    .information__item:nth-child(even)
    .row
    .information__content
    .global-heading {
    margin-bottom: 17px;
}

.section__information
    .information__item:nth-child(even)
    .row
    .information__content
    .global-desc {
    max-width: 410px;
    margin-left: 0;
}

.section__information .information__img {
    height: 100%;
}

.section__information .information__img img {
    height: 100%;
}

.section__information .global-heading {
    line-height: 44px;
}

.section__information h3 {
    font-size: 34px;
    line-height: 44px;
    color: #00749b;
    font-weight: 500;
    /* max-width: 90%; */
}

.section__information .content {
    color: #5d5d5d;
    font-weight: 400;
    text-align: justify;
}

/* section doctors */

.section__doctors {
    padding: 124px 0 106px;
}

.section__doctors .doctors__list,
.section__doctors .doctors__list-home {
    padding-top: 62px;
}

.section__doctors .doctors__item {
    /* max-width: 312px; */
    /* max-height: 418px; */
    position: relative;
    overflow: hidden;
}

.section__doctors .slick-slide > div {
    margin: 0 20px;
}

.section__doctors .slick-list {
    margin: 0 -20px;
}

.section__doctors .slick-list.draggable {
    padding-bottom: 60px;
}

.section__doctors .doctors__item .img-logo {
    width: 50px;
    margin: auto;
}

.section__doctors .doctors__item--img {
    width: 100%;
    height: 100%;
    height: 350px;
    object-fit: cover;
}

.section__doctors .slick-slide {
    /* padding: 0 10px; */
}

.section__doctors .doctors__item .doctors__item--content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 10px 20px;
    background-color: #009babbf;
    transform: translateY(78%);
    transition: all 0.3s linear;
}

.section__doctors .doctors__item.active .doctors__item--content {
    background-color: #009bab;
}

.section__doctors .doctors__item:hover .doctors__item--content,
.section__doctors .doctors__item.active .doctors__item--content {
    padding: 25px 20px;
    transform: translateY(0%);
    transition: all 0.3s linear;
}

.section__doctors .doctors__item--name {
    color: #fff;
    /* font-size: 20px; */
    /* font-size: 16px; */
    font-size: 11px;
    /* line-height: 1; */
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 0;

    /* min-height: 48px; */
}

.section__doctors .doctors__item--position {
    /* font-size: 11px; */
    font-size: 10px;
    min-height: 32px;
    display: block;
    line-height: 16px;
    font-weight: 300;
    color: #fff;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section__doctors .doctors__item--desc {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section__doctors .doctors__item--desc span {
    font-size: 9px;
    line-height: 16px;
    color: #fff;
    font-weight: 300;
    display: block;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7; /* number of lines to show */
    line-clamp: 7;
    -webkit-box-orient: vertical;
}

.section__doctors .doctors__item--more {
    width: fit-content;
    border: 0;
    border-radius: 17px;
    background-color: #fff;
    /* padding: 3px 30px 5px; */
    padding: 0px 30px 3px;
    transition: all 0.3s linear;
}

.section__doctors .doctors__item--more:hover {
    transform: scale(1.06);
    transition: all 0.3s linear;
}

.section__doctors .doctors__item--more span {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: var(--third-color);
}

.section__doctors .desc,
.values .desc,
.dropdown .desc {
    font-size: 20px;
    line-height: 30px;
    color: #5d5d5d;
    text-align: center;
    max-width: 80%;
    margin: 30px auto 0;
}

.dropdown .desc {
    max-width: 100%;
}

.desc em {
    color: #006991;
}

.values.bottom .desc,
.dropdown .desc {
    margin-bottom: 50px;
}

.values.bottom .tab-pane {
    padding: 40px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    box-shadow: 0px 20px 20px #00000021;
    /* border: 2px solid #FFFFFF;
    border-radius: 20px; */
}

.values {
    padding: 120px 0;
}

.values.bottom .nav-item:first-child .nav-link.active {
    transform: scale(1.04) translateY(-1px) translateX(11px);
}

.values.bottom .nav-item:last-child .nav-link.active {
    transform: scale(1.04) translateY(-1px) translateX(-11px);
}

footer .footer__item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 100%;
    justify-content: space-between;
}

footer .footer__item-right .text-copyright {
    margin-bottom: 15px;
}

.faq__item--top .title-campaign--second {
    font-size: 18px;
    line-height: 28px;
}

.section__book .book__form .input-group {
    margin-bottom: 26px !important;
}

@media screen and (max-width: 1200px) {
    /* header */

    header .header__book--group-left {
        gap: 30px;
    }

    header .header__menu--list {
        gap: 28px;
    }

    header .header__menu--list .header__menu--item {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
    }

    /* section banner */

    .section__banner .banner__container .col-content-custom {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        padding-left: 16px;
    }

    .section__banner .banner__content--heading {
        font-size: 48px;
    }

.section__banner .banner__content--desc {
	line-height: 22px;
}

    .section__banner .banner__content--button {
        font-size: 22px;
    }

    /* section news */

    /* section thanks */

    .section__thanks .thanks__content--desc {
        max-width: 670px;
    }

    .section__video .video__content.d-flex .title-campaign {
        font-size: 44px;
    }

    /* doctor */

    /* .section__doctors .doctors__item .doctors__item--content {
        transform: translateY(78%);
    } */

    .section__doctors .slick-list.draggable {
        padding-bottom: 40px;
    }

    .section__doctors .doctors__item--desc {
        padding-top: 0;
        margin-top: 10px;
        max-height: 120px;
        overflow: auto;
    }

    .section__doctors .doctors__item--desc::-webkit-scrollbar {
        width: 3px;
    }

    /* Track */
    .section__doctors .doctors__item--desc::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .section__doctors .doctors__item--desc::-webkit-scrollbar-thumb {
        background: var(--third-color);
    }

    .mb-120 {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 991px) {
    /* ------------------------- */

    .dropdown__header {
        font-size: 22px;
        line-height: 28px;
        padding: 30px 0;
        background-color: #009bab;
        color: #fff;
        font-weight: 500;
        position: relative;
    }

    .dropdown__header span::after {
        position: absolute;
        content: '';
        width: 14px;
        height: 14px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        right: 40px;
        top: 33%;
        transform: rotate(135deg) translateY(-50%);
        transition: all 0.3s ease;
    }

    .dropdown__header.active span::after {
        top: 55%;
        transform: rotate(-45deg) translateY(-50%);
        transition: all 0.3s linear;
    }

    .dropdown .dropdown__content {
        display: none;
    }

    .dropdown .dropdown__content--cate {
        font-size: 22px;
        line-height: 28px;
        color: #fff;
        background-color: #c6c6c6;
        padding: 20px 0;
    }

    .dropdown .dropdown__content--group {
        padding: 60px 0 40px;
        background-color: #f5f7f7;
    }

    .dropdown .dropdown__content--sec .title {
        font-size: 22px;
        line-height: 28px;
        color: #00749b;
        font-weight: 500;
        margin-bottom: 24px;
    }

    .dropdown .dropdown__content--sec .heading {
        font-size: 20px;
        line-height: 28px;
        color: #5d5d5d;
        font-weight: 500;
    }

    .dropdown .dropdown__content--sec ul {
        list-style: disc;
        list-style-position: inside;
        font-size: 18px;
        margin-top: 8px;
        margin-bottom: 36px;
    }

    .dropdown
        .dropdown__content--sec
        .dropdown__content--group:nth-child(even) {
        background-color: #f2f2f2;
    }

    .section__information {
        padding: 68px 0 40px;
    }

    .section__information h3 {
        text-align: center;
    }

    .section__information .content {
        text-align: justify;
    }

    .dropdown.bottom {
        padding-top: 60px;
    }

    .dropdown .dropdown__item-mb {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dropdown .dropdown__item-mb:not(:last-child) {
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 3px solid #e1e1e1;
    }

    .dropdown .dropdown__item-mb span {
        font-size: 20px;
        line-height: 28px;
        color: #5d5d5d;
        font-weight: 500;
    }

    .dropdown .dropdown__item-mb .title {
        color: #00749b;
    }

    .dropdown .dropdown__list-mb {
        padding: 48px 0 84px;
    }

    .section__client .container {
        max-width: 100%;
        padding: 0;
    }

    /* ------------------------- */

    html {
        overflow-x: hidden;
    }

    .section__banner {
        background-color: #f5f7f7;
    }

    .section__information .information__content {
        padding-top: 40px;
        padding-bottom: 40px;
        margin: auto;
        padding: 40px 0;
        align-items: center;
    }

    .section__information
        .information__item:nth-child(even)
        .row
        .information__content {
        margin-left: 20px;
        margin: auto;
    }

    .global-heading,
    .section__information h3 {
        font-size: 26px;
        line-height: 40px;
    }

    .title-campaign--second {
        font-size: 22px;
    }

    .title-campaign {
        font-size: 42px;
        text-align: center;
    }

    header .header__menu--list {
        display: none;
    }

    /* section banner */

    .section__banner .banner__content--heading {
        font-size: 32px;
        text-align: center;
        margin-bottom: 12px;
    }

    .section__banner .banner__content--heading br {
        content: '';
    }

    .section__banner .banner__content--heading br::after {
        content: ' ';
    }

    .section__banner .banner__content--button {
        font-size: 16px;
    }

    .section__banner .banner__content--button img {
        width: 16px;
    }

    /* section infor */

    .section__infor {
        padding: 52px 0 48px;
    }

    .section__infor .infor__img {
        padding-right: 0;
        padding-top: 32px;
    }

    .section__infor .infor__content--title {
        font-size: 28px;
        text-align: center;
        margin: 30px 0;
    }

    .section__infor .infor__content--desc {
        padding-top: 0;
        margin-bottom: 32px;
    }

    .section__infor .infor__content ul li {
        margin-bottom: 0;
    }

    .section__infor .infor__content {
        padding-left: 0;
    }

    /* section book */

    .section__book .book__form .book__form--group {
        padding-bottom: 0;
        padding-top: 10px;
    }

    /* section video */

    .section__video .video__content {
        padding-right: 0;
    }

    /* section faq */

    .section__faq .faq__content {
        text-align: center;
        margin-bottom: 30px;
    }

    .section__faq .faq__title-main {
        font-size: 55px;
    }

    .section__banner .banner__container {
        position: relative;
        top: unset;
        transform: unset;
    }

    .section__banner .banner__container .col-content-custom {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        padding: 0 16px;
        padding-top: 60px;
    }

    .banner__group--button {
        justify-content: center;
    }

    .banner__content {
        margin-bottom: 60px;
    }

    .section__banner .banner__content--desc {
        text-align: center;
    }

    .values .nav-link {
        padding: 12px 24px;
        font-size: 16px;
        line-height: 20px;
    }

    .values .nav-link.active {
        font-size: 16px;
    }

    .values .nav-item:first-child .nav-link.active {
        transform: scale(1.04) translateY(-1px) translateX(4px);
    }

    .values .nav-item:last-child .nav-link.active {
        transform: scale(1.04) translateY(-1px) translateX(-4px);
    }

    .values .table-type-1 th,
    .values .table-type-4 th {
        padding: 12px;
        font-size: 16px;
    }

    .values .table-type-1 td:not(:first-child) {
        padding: 24px 12px;
        font-size: 12px;
    }

    .values .table-type-1 td:first-child {
        font-size: 16px;
        padding: 12px;
    }

    .values .table-type-4 thead th:nth-child(2) {
        width: auto;
    }

    .values .table-type-4 th,
    .values .table-type-4 tbody td {
        font-size: 12px;
    }

    .values.bottom .tab-pane {
        padding: 0px;
    }

    .values .table-type-2 tbody td,
    .values .table-type-3 tbody td {
        font-size: 12px;
    }

    .values .table-type-2 thead th,
    .values .table-type-3 thead th {
        font-size: 14px;
    }

    .values.bottom .nav-item:first-child .nav-link.active {
        transform: scale(1.04) translateY(0px) translateX(4px);
    }

    .values.bottom .nav-item:last-child .nav-link.active {
        transform: scale(1.04) translateY(0px) translateX(-4px);
    }
}

@media screen and (max-width: 768px) {
    /* section package */

    .section__package .package__title {
        padding: 0 0 50px;
    }

    .section__package .package__title {
        padding: 16px 0 32px;
    }

    /* section client */

    .section__client {
        padding: 32px 0 48px;
    }

    .section__client .package__title {
        padding: 16px 0 48px;
    }

    /* section video */

    .section__video {
        padding: 16px 0 32px;
    }

    .section__video .video__content.d-flex .title-campaign {
        padding-top: 20px;
        font-size: 42px;
    }

    /* section faq */

    .section__faq {
        padding: 16px 0 48px;
    }

    /* section thanks */

    .section__thanks .thanks__img img {
        height: 40vh;
    }

    .section__thanks .thanks__content--img img {
        width: 100px;
    }

    .section__thanks .thanks__content--title {
        font-size: 55px;
    }

    .section__thanks .thanks__content--desc {
        font-size: 22px;
    }

    /* doctors */

    /* .section__doctors .doctors__item {
        margin-bottom: 30px;
    } */

    .section__doctors .doctors__item--img {
        height: auto;
        height: 280px;
    }

    /* .section__doctors .doctors__item {
        margin-bottom: 20px;
    } */

    .section__doctors .slick-list.draggable {
        padding-bottom: 20px;
    }

    .section__doctors .doctors__item .doctors__item--content {
        transform: translateY(74%);
    }
}

@media screen and (max-width: 768px) {
	.popup-banner-2 {
		width: 100%;
	}

	

	 .section__book .book__form .book__form--button {
		margin-top: 40px;
    }

	

	.section__book {
		background-size: 35vw !important;
	}
}

@media screen and (max-width: 576px) {
    .values .tab-content > .tab-pane,
    .dropdown__content--sec {
        padding: 16px;
    }

    .values.bottom .tab-content > .tab-pane {
        padding: 0;
    }

.table-bordered td, .table-bordered th {white-space: nowrap;}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgb(245 247 247);
}

.values.bottom .container {padding: 0px;}

    /*main {
        margin-top: 50px;
    }*/

    .title-campaign {
        font-size: 26px;
    }

    .title-campaign--second {
        font-size: 20px;
    }

    .banner__group--button {
        justify-content: center;
        align-items: center;
    }

    /* section banner */
    .section__infor .infor__content {
        padding-left: 15px;
    }

    .section__banner .banner__container {
        width: 100%;
        position: relative;
        margin-top: 20px;
        transform: unset;
    }

    .section__banner .banner__container .col-content-custom {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }

    .section__banner .banner__content--heading {
        font-size: 24px;
        margin-bottom: 5px;
        transform: unset;
    }

    .section__banner .banner__content--desc {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
        overflow: hidden;
        text-align: justify;
        margin-top: 20px;
        /*text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
                line-clamp: 2; 
        -webkit-box-orient: vertical;*/
    }

    .section__banner .banner__content--desc > p:first-child {
        text-align: center;
    }

    .dropdown__header {
        padding-right: 70px;
    }

    .section__banner .banner__content--button {
        font-size: 16px;
    }

    .section__banner .banner__content--button img {
        width: 16px;
    }

    .section__banner .banner__content--button {
        gap: 5px;
        padding: 12px 24px;
    }

    /* section infor */

    .section__infor {
        padding: 16px 0 32px;
    }

    .section__infor .infor__content--title {
        font-size: 20px;
    }

    /* section news */

    .section__news {
        padding: 32px 0;
    }

    .section__news .news__group--title h3 {
        padding: 0;
    }

    .section__news .news__group--title h3 .news__dropdown {
        width: 20px;
    }

    /* section package */

    .section__package {
        padding: 16px 0 32px;
    }

    .section__package .slick-initialized .slick-slide {
        padding: 0 16px 38px;
    }

    .section__package .package__note {
        font-size: 10px;
        margin-top: 32px;
    }

    /* section book */

    .section__book .book__form input {
        padding: 20px 12px;
    }

    .section__book .book__form textarea {
        height: 118.8px;
    }

    .section__book .book__form .book__form--button {
        height: 40px;
        font-size: 15px;
		line-height: 145%;
		margin-top: 40px;
		vertical-align: middle;
        line-height: unset;
        padding: 0px 30px;
    }

    /* section client */

    .section__client,
    .section__client .package__title {
        padding: 16px 0 32px;
    }

    /* section video */

    .section__video {
        padding-bottom: 16px;
    }

    /* section faq */

    .section__faq {
        padding-top: 0;
    }

    .section__faq .faq__title-main {
        font-size: 42px;
    }

    h3.faq__item--title.title-campaign--second {
        width: 90%;
    }

    /* section thanks */

    .section__thanks .thanks__img img {
        height: 30vh;
    }

    .section__thanks .thanks__content--title {
        font-size: 42px;
    }

    .section__thanks .thanks__content--desc {
        font-size: 16px;
        padding: 0 32px;
    }

    .section__thanks .thanks__content {
        gap: 5px;
    }

    .section__video .video__content.d-flex .title-campaign {
        font-size: 26px;
    }

    .section__thanks .thanks__content--img img {
        width: 60px;
    }

    /* doctor */

    .section__doctors {
        padding: 60px 0;
    }

    .section__doctors .doctors__list,
    .section__doctors .doctors__list-home {
        padding-top: 30px;
    }

    .section__doctors .doctors__item .doctors__item--content {
        transform: translateY(70%);
    }

    .section__doctors .doctors__item--desc {
        max-height: 290px;
    }

    .section__doctors .doctors__item--desc span {
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    /* .section__doctors .doctors__item--desc span {
        font-size: 14px;
        line-height: 26px;
    }

    
    .section__doctors .doctors__item--position {
        font-size: 16px;
        line-height: 20px;
        min-height: 40px;
    } */

    .section__doctors .doctors__item--name {
        font-size: 9px;
        line-height: 16px;
    }

    .section__doctors .doctors__item--position {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .section__doctors .doctors__item--img {
        height: 192px;
    }

    .section__doctors .doctors__item--more {
        width: 100%;
        padding: 0 0 3px;
        text-align: center;
    }

    .section__doctors .doctors__item:hover .doctors__item--content,
    .section__doctors .doctors__item.active .doctors__item--content {
        padding: 15px 10px;
    }

    .section__doctors .doctors__item .doctors__item--content {
        padding: 5px 15px;
    }

    .values .tab-pane {
        max-width: 100%;
        overflow-x: auto;
    }

    .section__information .information__content {
        max-width: 100%;
        padding: 32px 0;
    }

    .section__information
        .information__item:nth-child(even)
        .row
        .information__content {
        padding: 32px 0;
        margin-left: 0;
    }

    .global-heading,
    .section__information h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .popup-booking {
        width: 100%;
    }

    .section__client .client__item {
        padding: 16px;
    }

    .section__client {
        padding: 32px 0 32px;
    }

    .section__doctors .desc,
    .values .desc,
    .dropdown .desc {
        font-size: 16px;
    }

    .dropdown__header span {
        font-size: 18px;
    }

    .dropdown .dropdown__item-mb span {
        font-size: 16px;
    }

    .dropdown .dropdown__item-mb {
        gap: 6px;
    }

    .dropdown .dropdown__content--sec ul {
        font-size: 16px;
    }

    footer .footer__item-right {
        align-items: center;
    }

   .section__book .book__form .book__form--title {
        margin-top: 0;
        padding-top: 0 !important;
		font-size: 18px;
		line-height: 135%;
    }

    .section__book .book__form .book__form--button {
        margin-top: 0;
    }

    .section__book .book__form .input-group {
        margin-bottom: 16px !important;
    }
	
		.section__book {
		background-size: 50vw !important;
	}
}


/* ==== CUSTOM FORM CSS ==== */
/* ===================================== */
/* 1. KHU VỰC CHUNG VÀ TIÊU ĐỀ */
/* ===================================== */

:root {
    --primary-blue: #0087A0; 
    --accent-teal: #00A3B5;
    --error-red: #FF0000; 
    --border-color: #E2E2E2;
    --placeholder-color: #999999;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #f7f7f7; 
    font-family: var(--font-family);
}

/* Container bọc form */
.section__book {
    background: #ffffff;
    /* background: #f7f7f7; */
	
	background-image: url("https://staging.hoanmy.com/vinh/thai-san/wp-content/uploads/2025/11/pattern-logoicon.png"); 
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 25vw;
}

/* Tiêu đề phần (Thông tin tư vấn, Ngày dự sinh, v.v.) */
.book__form--title {
    display: block;
    font-size: 1.25rem; /* Phù hợp với ảnh mẫu */
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 15px;
    margin-bottom: 10px;
}
@media (min-width: 992px) {
    .book__form--title.pt-lg-0 {
        padding-top: 0 !important;
    }
}

/* Xử lý thẻ <p> thừa của CF7 */
.wpcf7-form p {
    margin: 0 !important; /* Xóa margin mặc định của thẻ p */
}


/* ===================================== */
/* 2. STYLES CHO INPUT VÀ FIELDSETS */
/* ===================================== */

/* Container bọc input (.input-group) */
.book__form .input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px !important; /* Tăng khoảng cách giữa các input */
    background-color: #fff; /* Nền trắng */
}

/* Ghi đè style cho input và textarea (wpcf7-form-control, form-control) */
.book__form .form-control {
    height: 50px; 
    border: none !important;
    box-shadow: none !important;
    padding: 0 15px;
    font-size: 1rem;
    color: #333;
    width: 100% !important; 
    transition: border-color 0.2s;
    background-color: transparent !important; /* Quan trọng: để input trong suốt, border nằm ở .input-group */
}

/* ❌ Loại bỏ focus outline mặc định */
.book__form .form-control:focus {
    border-color: transparent;
    outline: none; 
}
/* Tùy chọn: Thêm viền màu xanh cho .input-group khi input focus */
/* .book__form .input-group:focus-within {
    border-color: var(--primary-blue);
} */

/* Placeholder Style */
.book__form .form-control::placeholder {
    color: var(--placeholder-color);
}

/* Style cho textarea */
.book__form textarea.form-control {
    height: 100px;
    resize: none;
    padding-top: 10px;
}

/* Icon Lịch trong trường "Ngày dự sinh" */
.book__form .input-group img {
    height: 20px;
    width: 20px;
    margin-left: 15px;
    flex-shrink: 0;
    opacity: 0.6; /* Làm mờ icon Lịch */
}
/* Đảm bảo input ngày dự sinh chiếm đủ chỗ */
.book__form .input-group img + .wpcf7-form-control-wrap {
    flex-grow: 1;
}


/* ===================================== */
/* 3. HIỆU ỨNG LỖI (ERROR STATE) */
/* ===================================== */

/* 🔴 Border màu đỏ khi lỗi: Áp dụng cho .input-group để bao trọn cả input và icon (nếu có) */
.book__form .input-group:has(.wpcf7-not-valid) {
    border-color: var(--error-red) !important;
    position: relative; /* Dùng cho icon X */
}

/* Ghi đè padding right cho input bị lỗi để không che mất icon X */
.book__form .input-group:has(.wpcf7-not-valid) .form-control {
    padding-right: 40px !important; 
}


/* 🔴 Chèn icon X bằng CSS Pseudo-element (cho input text, tel, number) */
.book__form .input-group:has(.wpcf7-not-valid) .wpcf7-form-control-wrap::after {
    /* Đảm bảo chỉ áp dụng cho field bị lỗi */
    content: "✕"; 
    position: absolute;
    top: 50%;
    right: 15px; 
    transform: translateY(-50%);
    color: var(--error-red);
    font-size: .6rem;
    font-weight: bold;
    line-height: 1;
    background: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--error-red);
    pointer-events: none; 
    z-index: 5;
}

/* Loại trừ icon X cho Textarea */
.book__form .input-group:has(textarea.wpcf7-not-valid) .wpcf7-form-control-wrap::after {
    content: none;
}

/* ===================================== */
/* 4. NÚT SUBMIT VÀ CHECKBOX CUỐI FORM */
/* ===================================== */

/* Checkbox (để căn chỉnh với text) */
.col-12.col-md-12 > p:first-of-type {

}

/* Văn bản chính sách quyền riêng tư */
.desc-text {
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}
.desc-text a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.book__form--button {
    background-color: var(--accent-teal);
    color: #ffffff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background-color 0.2s;
    border: none;
    width: 100%;
    margin-top: 15px;
}

.book__form--button:hover {
     background-color: #0087A0; 
}

.desc-text-wrapper .wpcf7-list-item.first.last,
.desc-text-wrapper .wpcf7-list-item.first.last label {
	margin: 0;
}

.desc-text-wrapper .wpcf7-list-item.first.last > label {
	display: flex;
    align-items: center;
    gap: 6px;
}

.desc-text-wrapper, .desc-text-wrapper p {
	display: flex;
    align-items: center;
	margin-bottom: 24px;
}


.desc-text-wrapper .wpcf7-list-item-label,
.desc-text-wrapper a {
	font-weight: 400;
	font-size: 14px;
	line-height: 145%;
}

.desc-text-wrapper .wpcf7-list-item-label {
	color: #272727;
	flex: 1;
}

.desc-text-wrapper a {
	text-decoration: underline;
	text-decoration-style: solid;
	color: #0090A1;
	margin-left: 5px;
}

.desc-text-wrapper .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
	display: flex;
	align-items: center;
}

.desc-text-wrapper input[type="checkbox"] {
    cursor: pointer;
    width: 28px;
    height: 28px;
    border: 1px solid #B5B5B5;
    border-radius: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    transition: all 0.2s ease-in-out; 
    position: relative;
	padding: unset !important;
}

.desc-text-wrapper input[type="checkbox"]:hover {
    border-color: #777777;
}

.desc-text-wrapper input[type="checkbox"]:checked {
    background-color: #0090a1; 
    border-color: #0090a1;     
}

.desc-text-wrapper input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 8px;
    height: 16px;
    border: solid white;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 3px; 
    left: 9px;
}

