/*
Theme Name: BDS Dungnt
Theme URI: https://bds_dungnt.local
Author: Dungnt
Author URI: https://bds_dungnt.local
Version: 1.0
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

*:focus {
    outline: none
}

html {
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none
}

:root {
    --primary-color: #f60003;
    --secondary-color: #704cff;
    --white-color: #ffffff;
    --black-color: #000000;
    --transition: all 300ms linear;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    font-weight: 500;
    background-color: var(--white-main);
}

a,
a:hover {
    text-decoration: none;
    color: var(--black-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-weight: 700;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

ul,
li {
    padding: 0;
}


input,
textarea {
    width: 100%;
    border: 1px solid #d6d5d5;
    border-radius: 24px;
    padding: 10px 20px;
}

iframe {
    width: 100%;
    height: 100%;
}

section {
    padding: 25px 0px;
}

button:focus {
    outline: none;
}

/* Header */
@-webkit-keyframes slide-top-fixed {
    0% {
        -webkit-transform: translateY(-50px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes slide-top-fixed {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.header {
    background-color: #ffffff;
    z-index: 9;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    border-bottom: 1px solid #0000001f;
}

.header.sticky {
    z-index: 997;
    background: var(--primary-color);
    -webkit-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 10%);
    -webkit-animation-name: slide-top-fixed;
    animation-name: slide-top-fixed;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.header .logo img {
    height: 70px;
}

/* 
.header.sticky .logo img {
    filter: brightness(0%) invert(1);
} */

.header .headerTop {
    background-color: var(--primary-color);
    padding: 4px 0px;
    transition: all 300ms linear;
}

.header.sticky .headerTop {
    display: none;
}

.header.sticky .wrap-search .icon::before {
    filter: invert(1);
}

.header.sticky .main-menu .menu-item a {
    color: var(--white-color);
}

.header.sticky .main-menu .menu-item a:hover {
    color: #ffc107;
}

.header .headerTop .name_company {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid var(--white-color);
    line-height: 1;
}

.header .headerTop .box-social .info>span {
    color: var(--white-color);
    font-size: 14px;
}

.header .headerTop .box-social .icon {
    display: flex;
    margin-left: 12px;
}

.header .headerTop .box-social img {
    filter: invert(1);
    width: 18px;
}

.header .list-unstyled {
    margin-bottom: 0px;
}

#WrapSearch form {
    position: relative;
    padding: 20px 0px;
    margin: 0 auto;
    max-width: 80%;
}

#WrapSearch [type=submit] {
    background-color: var(--primary-color);
    color: var(--white-color);
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    padding: 10px 20px;
    border-radius: 0px 24px 24px 0px;
    border: 1px solid #d6d5d5;
    cursor: pointer;
}

.wrap-search .icon {
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
    margin-left: 12px;
}

.wrap-search .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url(assets/images/search.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: var(--transition);
}

.wrap-search.open .icon::before {
    background-image: url(assets/images/close.png);
    transform: translate(-50%, -50%) scale(1.5);
}

#WrapSearch {
    display: none;
}

#overSearch {
    background-color: #000000b0;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

#overSearch.open {
    opacity: 1;
    transform: scale(1);
}

.header .gtranslate_wrapper a {
    color: var(--white-color);
    font-size: 13px;
    display: block;
}

.header .gtranslate_wrapper a.gt-current-lang {
    display: none;
}

.header .inner-header .box-end {
    display: none !important;
}

.header .inner-header .gtranslate_wrapper {
    display: none;
}

/* Menu */
.main-menu {
    margin: 0;
}

.main-menu .menu-item {
    list-style: none;
    position: relative;
}

.main-menu .menu-item-has-children {
    position: relative;
}

.main-menu .menu-item a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 26px 12px;
    transition: var(--transition);
    position: relative;
    color: var(--black-color);
    display: block;
}

.main-menu .menu-item a:hover {
    color: var(--primary-color);
}

.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -50%;
    background-color: var(--white-color);
    width: 250px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(10px);
    box-shadow: 0px 0px 2px 1px #dee2e6;
    padding: 6px 0;
    pointer-events: none;
}

.main-menu>.menu-item:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: inherit;
}

.main-menu .sub-menu a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 6px 12px;
}

.main-menu .sub-menu a:not(:last-child) {
    border-bottom: 1px dashed #adb5bd;
}

.header .header-top .icon-menu {
    display: none;
}

.header .btn-menu {
    display: none;
}

.wrap-menu_mobile {
    transform: translateX(-100%);
    transition: all .4s;
    position: fixed;
    top: 0%;
    left: 0%;
}

.wrap-menu_mobile .main-menu {
    height: 100vh;
    flex-direction: column;
    align-items: flex-start !important;
}

.wrap-menu_mobile .main-menu .menu-item {
    width: 100%;
}

/* End Menu */

/* 404 */
.error-404 {
    text-align: center;
}

.error-404 .title {
    font-size: 40px;
}

.error-404 .sub-title {
    font-size: 24px;
}

.error-404 .back {
    padding: 12px 24px;
    display: block;
    margin: 24px auto 0;
    color: var(--white-color);
    background-color: var(--primary-color);
    width: max-content;
}

/* End 404 */
/* Footer */
.footer {
    padding: 24px 0px 10px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.icon img {
    width: 22px;
    height: auto;
    margin-right: 6px;
}

.footer .logo {
    text-align: center;
}

.footer .logo img {
    height: 110px;
    max-width: 100%;
    width: auto;
}

.footer .box-title .title {
    font-size: 26px;
    text-transform: uppercase;
}

.footer .footer-top {
    padding: 20px 0;
}

.footer .footer-top .footerTopContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .footer-top .footerTopContentItem {
    width: calc(25% - 1%);
    margin: 0 .5%;
}

.footer .footer-top .footerTopContentItem .title_footer {
    font-size: 24px;
    color: var(--white-color);
}

.footer-top .footerTopContent .footerTopContentItem .footerLogo img {
    max-width: 80px;
}

.footer-top .footerInfo {
    margin-top: 15px;
}

.footer-top .footerInfo ul li {
    color: var(--white-color);
    list-style: none;
    margin-bottom: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.footer-top .footerInfo ul li img {
    filter: invert(1);
    width: 13px;
}

.footer-top .footerInfo ul li .icon {
    width: 5%;
    margin-right: 4px;
}

.footer-top .footerInfo ul li span {
    width: 95%;
}

.footerMainList ul li {
    padding: 10px 0px 0px;
    list-style: none;
}

.footerMainList ul li a {
    font-size: 13px;
    color: var(--white-color);
}

footer.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    z-index: 1;
}

footer.footer .container {
    position: relative;
    z-index: 2;
}

.footerSocial .icon img {
    filter: invert(1);
}

/* End Footer */
/* Wrap Contact Form */
#wrap_popup-contact .close {
    display: none;
}

/* End Wrap Contact Form */
/* Coppyright */
.coppyright {
    padding: 12px 0;
    text-align: center;
    border-top: 1px solid #ffffff;
}

.coppyright p {
    color: var(--white-color);
}

.coppyright {
    padding: 12px 0;
    background-color: #00000000;
    text-align: center;
}

.coppyright p {
    color: var(--white-color);
}

/* End Coppyright */
/* Banner */
.section-banner {
    padding-top: 0px;
}

.section-banner .wrap-slider img {
    height: 35vw;
}

.section-banner .slick-dots {
    bottom: 0px;
}

.section-banner .slick-dots li button:before {
    font-size: 50px;
}

.section-banner .slick-arrow {
    background-color: #ffffff80;
}

.section-banner .slick-arrow:hover {
    background-color: #ffffff;
}

/* End Banner */
/*  Section Video */
.section-video .wrap-video {
    height: 50vh;
}

.section-video .wrap-content {
    text-align: justify;
}

.section-video .view_more {
    display: inline-block;
    padding: 6px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    transition: var(--transition);
    margin-top: 12px;
}

/* End Section Video */

/* Slick slide*/

.slick-slider {
    margin-bottom: 0px;
}

.slick-dots li button:before {
    font-size: 20px;
    color: var(--white-color);
}


/* End Slick Slide */
/* Section CTA */
.section-cta {}

.section-cta .wrap-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-cta .wrap-cta .item {
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(25% - 15px);
    text-align: center;
    padding: 40px 20px 40px 20px;
}

.section-cta .wrap-cta .item .icon img {
    width: 80px;
    margin-bottom: 15px;
    margin-right: 0px;
}

.section-cta .wrap-cta .item .title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.section-cta .wrap-cta .item .sub_title {
    font-size: 14px;
    text-align: justify;
}

.section-cta .wrap-cta .item .icon:hover {
    animation-name: animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes animation {
    16.65% {
        transform: translateY(8px)
    }

    33.3% {
        transform: translateY(-6px)
    }

    49.95% {
        transform: translateY(4px)
    }

    66.6% {
        transform: translateY(-2px)
    }

    83.25% {
        transform: translateY(1px)
    }

    100% {
        transform: translateY(0)
    }
}

/* End Section CTA */
/* Section Map */
.section-map {
    position: relative;
    overflow: hidden;
    height: 30vw;
    margin-top: 25px;
}

.section-map iframe {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

/* End Section Map */
/* Section Category */
.section-category .inner-content {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    padding: 25px 0px;
}

.section-category .inner-content::after {
    content: "";
    position: absolute;
    top: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: #00000050;
}

.section-category .main_title {
    margin-bottom: 0px;
    color: var(--white-color);
    z-index: 1;
}

/* End Section Category */

/* Section CTA Sale */
section#bannerSale .bannerSaleMain {
    position: relative;
    overflow: hidden;
}

section#bannerSale .bannerSaleMain picture {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
}

section#bannerSale .bannerBig {
    width: 100%;
    height: 30vw;
    background-position: 50% 76%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

section#bannerSale .bannerSaleMain .bannerBig::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #0000006b;
    z-index: 1;
}


section#bannerSale .bannerSaleMain .bannerSaleBig {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
}

section#bannerSale .bannerSaleMain .bannerSaleBig span {
    color: #ed9fa6;
    font-size: 200px;
    font-weight: bold;
    opacity: 0.3;
}

section#bannerSale .bannerSaleMain .bannerSaleSmall {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    text-align: center;
    z-index: 2;
    color: var(--white-color);
    width: 100%;
}

section#bannerSale .bannerSaleMain .bannerSaleSmall a {
    display: inline-block;
    background: #ffba00;
    padding: 10px 25px;
    margin-top: 10px;
    color: #000000;
    transition: all .5s linear;
    cursor: pointer;
}

section#bannerSale .bannerSaleMain .bannerSaleSmall a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}



section#bannerSale .bannerSaleSmall h2 {
    text-shadow: 0px 0px 4px #000000;
    transition: all .5s linear;
    font-size: 36px;
    color: #ffba00;
}

section#bannerSale .bannerSaleSmall h6 {
    text-shadow: 0px 0px 4px #000000;
    transition: all .5s linear;
    font-size: 24px;
    width: max-content;
    margin: 0px auto;
}

/* End Section CTA Sale */

/* Section News */

.section-news {
    padding-bottom: 10px;
}

.section-news .slick-prev {
    left: -40px;
}

.section-news .slick-next {
    right: -40px;
}

.section-news .poket-single-blog {
    margin: 15px;

}

/* End Section News */
/*  Section Partner */
.section-partner {
    padding-bottom: 0px;
}

.section-partner .slide-partner img {
    margin: 0px 10px;
    object-fit: fill;
}

.section-partner .slide-partner .slick-track {
    display: flex;
    align-items: center;
}

/* End Section Partner */
/* Page About  */
.page-about {
    padding: 24px 0px;
}

.page-about .inner-content {
    box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 10%)
}

.page-about .content {
    padding: 20px;
}

.page-about .content .main-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-about .sticky-wrap {
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    height: max-content;
}

.page-about .sticky-wrap .title {
    font-size: 24px;
    padding: 0px 10px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.page-about .sticky-wrap ul {
    padding: 0px 10px;
}

.page-about .sticky-wrap li {
    list-style: none;
    cursor: pointer;
    padding: 6px 0px;
    transition: all 300ms linear;
}

.page-about .sticky-wrap li:not(:first-child) {
    border-top: 1px dashed #00000070;
}

.page-about .sticky-wrap li.current {
    color: var(--primary-color);
    padding-left: 16px;
    position: relative;
}

.page-about .sticky-wrap li.current::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background-image: url(assets/images/right-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 10px;
}

/* End Page About  */
/* Page  */
.page-content {
    padding: 24px 0px;
}

/* End Page  */

/* Seciton Contact */
.section-contact .footerInfo ul {
    margin-bottom: 0px;
    padding-left: 0px;
}

.section-contact .footerInfo .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.section-contact .footerInfo .wrap-map {
    height: 300px;
    margin-top: 20px;
}

.section-contact .inner-content {
    padding: 24px;
    box-shadow: 0px 0px 4px 4px #f1f1f1;
    border-radius: 6px;
    position: relative;
}

.section-contact .inner-content::before {
    content: "";
    position: absolute;
    top: 0%;
    right: 0%;
    background: black;
    width: 90px;
    height: 100%;
}

.section-contact .footerInfo li {
    list-style: none;
    margin-bottom: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.section-contact .footerInfo li img {
    margin-right: 6px;
    width: 16px;
}

.section-contact .wrap-form form {
    border: 1px solid #e3e3e3;
    padding: 20px;
    background-color: var(--white-color);
    position: relative;
}

.section-contact .wrap-form form::after {
    content: "";
    position: absolute;
    top: -25px;
    left: -40px;
    background: black;
    width: 80px;
    height: 80px;
    z-index: -1;
}

.section-contact .wrap-form form input,
.section-contact .wrap-form form textarea {
    margin-bottom: 12px;
}

.section-contact .wrap-form form input[type="submit"] {
    margin-bottom: 0px;
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
}

form p {
    position: relative;
}

form .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

/* Category */
.main-category {
    /* padding: 24px 0px; */
}

.main-category .main-title {
    font-size: 32px;
    margin-bottom: 9px;
}

/* Taxonomy Dịch Vụ */
.taxonomy_dich_vu .main-title {
    margin-bottom: 20px;
}

.taxonomy_dich_vu .item-category {
    margin: 0px 0px 24px;
}

/* Single Thực Đơn */
.single.thuc_don {
    padding-bottom: 24px;
}

.single.thuc_don .title {
    margin: 0px 0px 12px;
    font-size: 32px;
}

.single.thuc_don .wrap-menu {
    position: sticky;
    top: 90px;
    height: max-content;
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px #00000021;
}

.single.thuc_don .wrap-menu .main-title {
    font-size: 24px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0px 0px 0px 40px;
    position: relative;
}

.single.thuc_don .wrap-menu .main-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    background-image: url(assets/images/menu-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateY(-50%);
    filter: invert(1);
}

.single.thuc_don .wrap-menu .menu-thuc_don {
    margin: 0px;
}

.single.thuc_don .wrap-menu li {
    list-style: none;
    position: relative;
    cursor: pointer;
    padding: 8px 10px;
}

.single.thuc_don .wrap-menu li ul.sub-menu {
    padding-left: 20px;
}

.single.thuc_don .wrap-menu li ul.sub-menu li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url(assets/images/menu.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateY(-50%);
}

.single.thuc_don .wrap-menu li.menu-item-has-children a {
    display: block;
    position: relative;
    width: fit-content;
}

.single.thuc_don .wrap-menu li.menu-item-has-children::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-image: url(assets/images/left-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotate(360deg);
}

.single.thuc_don .wrap-menu li.menu-item-has-children.open::before {
    transform: rotate(-90deg);
}

.single.thuc_don .wrap-menu li.menu-item-has-children.open {
    padding-bottom: 0px;
}

.single.thuc_don .wrap-menu .sub-menu li {
    padding: 0px;
    border: none;
    padding: 4px 0px;

}

.single.thuc_don .wrap-menu li.menu-item-has-children .sub-menu {
    display: none;
}

.single.thuc_don .wrap-menu li:not(:last-child) {
    border-bottom: 1px dashed #0000002c;
}

.single.thuc_don .wrap-sidebar.thuc_don .wrap-post .img-wrap img {
    height: 250px;
}

.single.thuc_don .wrap-sidebar {
    margin-top: 24px;
}

/* Single */
.single .inner-content {
    box-shadow: 0px 0px 9px 0px #00000014;
    padding: 15px;
}

.single .inner-content .title {
    margin-bottom: 12px;
    padding-bottom: 6px;
    line-height: 1.2;
    position: relative;
}

.single .inner-content .title::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0%;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.single .wrap-sidebar {
    box-shadow: 0px 0px 9px 0px #00000014;
    padding: 15px;
    position: sticky;
    top: 90px;
    height: max-content;
}


.single .wrap-sidebar .main-title {
    font-size: 24px;
    font-weight: 700;
}

.single .wrap-sidebar .item-post {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    border: 1px solid #00000014;
}

.single .wrap-sidebar.related .item-post {
    flex-direction: row;
}

.single .wrap-sidebar.related .item-post .img-wrap {
    width: 35%;
}

.single .wrap-sidebar.related.dich_vu .item-post .img-wrap img {
    height: 80px;
}

.single .wrap-sidebar.related .item-post .img-wrap img {
    height: 110px;
    width: 100%;
}

.single .wrap-sidebar .item-post .img-wrap img {
    height: 150px;
    width: 100%;
}

.single .wrap-sidebar.related .item-post .info {
    width: 65%;
}

.single .wrap-sidebar .item-post .info {
    padding: 10px;
}

.single .wrap-sidebar .item-post .info .title {
    line-height: 1.2;
    margin-bottom: 6px;
    font-size: 16px;
}

.single .wrap-sidebar .poket-blog-meta-left {
    padding: 0px;
}

.single .wrap-sidebar .poket-blog-meta-left span {
    font-size: 14px;
}

.single .poket-blog-meta-left .icon {
    display: flex;
}

.single .wrap-sidebar .poket-blog-meta-left img {
    width: 14px;
}

#btn_scroll_top {
    position: fixed;
    right: 2.2vw;
    bottom: 24px;
    background-color: #ffffff;
    z-index: 9;
    padding: 6px 8px;
    cursor: pointer;
    border: 1px solid #000000;
    opacity: 0.7;
    transition: all 300ms linear;
}

/* Sticky Button Contact */
/* Button Sticky */
#button-contact-vr {
    position: fixed;
    bottom: 0;
    z-index: 99999;
    right: 0.5%;
}

#gom-all-in-one #zalo-vr {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
}

#gom-all-in-one #whatsapp-vr {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 35px;
    height: 35px;
    line-height: 40px;
    top: -30px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196F3;
}

#mess-vr .phone-vr-img-circle {
    background-color: #6901ff;
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}

.phone-vr-img-circle img {
    max-height: 20px;
    max-width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.phone-vr-circle-fill {
    width: 55px;
    height: 55px;
    top: -40px;
    left: 15px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#mess-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #fe6a66;
    background-color: #c740ca;
}

#button-contact-vr .content {
    transition: all .5s;
    padding: 6px;
    background-color: #c31d1d;
    position: absolute;
    top: -15%;
    right: 100%;
    width: max-content;
    transform: translateY(-50%);
    color: var(--white-color);
    font-weight: 600;
}

#button-contact-vr .content::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #c31d1d;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0px;
    z-index: -1;
}

/* 
#button-contact-vr .phone-vr:hover .content {
    opacity: 1;
    visibility: visible;
} */

@-webkit-keyframes phone-vr-circle-fill {
    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);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

/* End button sticky */