:root {
    --red: #842029;
    --blue: #0d6efd;

    --main-color: #6366F1;
    --zalo-color: #3264F9;
}

.h__color {
    color: var(--red);
}

.__white {
    color: #fff
}

.bg__color {
    background-color: var(--red);
}

.t__w__color {
    color: #fff;
}

.t__center {
    text-align: center;
}

.FA__icon {
    font-size: 2rem;
    margin-right: 7px;
}

.t__18px {
    font-size: 18px;
}

.t__20px {
    font-size: 20px;
}

.t__22px {
    font-size: 22px;
}

.t__jtf {
    text-align: justify;
}

.chon__chung__toi {
    width: 100px;
    display: block;
    margin: 25px auto 0;
}

.m__t10px {
    margin-top: 10px;
}

.m__t20px {
    margin-top: 20px;
}

.m_b10px {
    margin-bottom: 10px;
}

.custom__li ul {
    list-style-type: "👉 ";
}

.c__blue {
    color: var(--blue);
}

.c__red {
    color: var(--red);
}

.t__bold {
    font-weight: bold;
}

.dv+.dv {
    margin-top: 20px;
}

.dvnb+.dvnb {
    margin-top: 10px;
}

#py-phone {
    position: fixed;
    top: 30%;
    right: 20px;
    z-index: 9999;
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 1s;

    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

#py-zalo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake2 1s;

    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

#py-messenger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

@keyframes shake2 {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.img-booking {
    width: 70px;
    height: 70px;
}

@media (min-width: 768px) {
    .img-booking {
        width: 90px;
        height: 90px;
    }
    .center__flex{
        display: flex;
    }
}

ul li{
    list-style-type: inherit !important;
}

.fit__width{
    width: -webkit-fill-available;
    height: auto;
}

.container{
    width: 100% !important;
    padding: 0 10px;
}
.align-items-center {
    align-items: center!important;
}
.input-field input:focus{
    background: transparent;
}
/* SLIDER */
* {box-sizing:border-box}
/* thiết lập style cho slideshow container */
 .slideshow-container {
   max-width: 1000px;
   position: relative;
   margin: auto;
 }
/* ẩn hình ảnh cho phần tử slideshow */
 .mySlides {
   display: none;
 }
/* thiết kế nút mũi tên*/
 .prev, .next {
   cursor: pointer;
   position: absolute;
   top: 50%;
   width: auto;
   margin-top: -22px;
   padding: 16px;
   color: white;
   font-weight: bold;
   font-size: 18px;
   transition: 0.6s ease;
   border-radius: 0 3px 3px 0;
   user-select: none;
 }
/* thiết kế nút mũi tên next nằm phía bên phải */
 .next {
   right: 0;
   border-radius: 3px 0 0 3px;
 }
/* hiệu ứng thay đổi background khi hover vào nút mũi tên*/
 .prev:hover, .next:hover {
   background-color: rgba(0,0,0,0.8);
 }
/* Thiết lập style cho nội dung của mỗi phần tử slideshow */
 .text {
   color: #f2f2f2;
   font-size: 15px;
   padding: 8px 12px;
   position: absolute;
   bottom: 8px;
   width: 100%;
   text-align: center;
 }
/* Thiết lập style cho số hiển thị của phần tử */
 .numbertext {
   color: #f2f2f2;
   font-size: 12px;
   padding: 8px 12px;
   position: absolute;
   top: 0;
 }
/* thiết lập style  nút tròn điều khiển*/
 .dot {
   cursor: pointer;
   height: 15px;
   width: 15px;
   margin: 0 2px;
   background-color: #bbb;
   border-radius: 50%;
   display: inline-block;
   transition: background-color 0.6s ease;
 }
/* .active, .dot:hover {
   background-color: #717171;
 } */
/* tạo hiệu ứng chuyển động fade */
 .fade {
   -webkit-animation-name: fade;
   -webkit-animation-duration: 1.5s;
   animation-name: fade;
   animation-duration: 1.5s;
 }
@-webkit-keyframes fade {
   from {opacity: .4}
   to {opacity: 1}
 }
@keyframes fade {
   from {opacity: .4}
   to {opacity: 1}
 }

 li + li {
    margin-top: 8px;
 }

 /* BOOKING */
@keyframes zoom {

    0%,
    100% {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

@keyframes ring-zoom {

    0% {
        transform: scale(.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes ring-call {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

.btn-call {
    animation: zoom 1s infinite;
}

.btn-contact {
    position: fixed;
    right: 18px;
    bottom: 50px;
    z-index: 19;
}

.btn-contact-zalo {
    position: fixed;
    right: 18px;
    bottom: 126px;
    z-index: 19;
}

.btn-contact-fb {
    position: fixed;
    right: 18px;
    bottom: 206px;
    z-index: 9999;
}

.logo-icon {
    position: absolute;
    top: -23px;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 999999;
}

.logo-icon-ring-animation{
    animation: ring-call 1.2s infinite ease-in-out;
}

.call-contact {
    position: relative;
}

.btn-call-contact {
    background-color: var(--main-color);
    padding: 12px 24px;
    border-radius: 30px;
    padding-right: 58px;
}

.btn-contact-logo{
    display: block;
    width: 40px;
    height: 40px;
    margin-top: -21px;
}

.btn-call-contact-icon {
    position: absolute;
    padding: 12px;
    top: -15px;
    right: 4px;
    background-color: var(--main-color);
    border-radius: 30px;
    z-index: 99;
    animation: ring-call 1s infinite ease-in-out;
}

.btn-call-contact-icon-effect {
    position: absolute;
    padding: 20px;
    top: -12px;
    right: 8px;
    background-color: var(--main-color);
    border-radius: 30px;
    z-index: 98;
}

.btn-call-contact-icon-effect::after {
    content: "";
    position: absolute;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    z-index: 99;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: ring-zoom 2s linear infinite;
}

.btn-call-contact-icon-logo-effect {
    position: absolute;
    padding: 20px;
    top: -21px;
    right: 0;
    background-color: var(--zalo-color);
    border-radius: 30px;
    z-index: 98;
}

.btn-call-contact-icon-logo-effect::after {
    content: "";
    position: absolute;
    border: 1px solid var(--zalo-color);
    background: var(--zalo-color);
    z-index: 99;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: ring-zoom 1.9s linear infinite;
}

.is-size-5 {
    font-size: 1.25rem!important;
}

@media (min-width: 1024px) {

    .btn-call-contact-icon-logo-effect {
        padding: 30px;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .btn-contact-logo{
        width: 60px;
        height: 60px;
    }

    .btn-contact {
        bottom: 56px;
    }

    .btn-contact-zalo {
        bottom: 154px;
    }
    
    .btn-contact-fb {
        bottom: 258px;
    }

    .btn-call-contact {
        padding: 18px 30px;
    }

    .btn-call-contact-icon {
        padding: 15px;
        top: -23px;
    }

    .btn-call-contact-icon-effect {
        padding: 30px;
        top: -21px;
        right: 0;
    }

    .btn-call-contact {
        padding-right: 70px;
    }

    .is-size-3-desktop {
        font-size: 2rem !important;
    }
}

@media screen and (max-width: 1023px) {
    .is-size-4-touch {
        font-size: 1.5rem !important;
    }
}
/* /BOOKING */