/* 1. Headings */

/* 2. Body Text */
/* Dùng !important để đè mọi cấu trúc khác */
body.modal-open {
    overflow: hidden !important;    
}
body.modal-open .navbar-toggler{
    display: none!important;
}


/* 3. Links */
a.text-white:hover{
    color: #F0F0F0!important;
}
.cursor-pointer{
    cursor: pointer;
}

/* 4. Font size & Transformation */

/* 5. Aligment: padding, margin, width, height */
.line-height-1{
    line-height: 1.0!important;
}
.line-height-auto{
    line-height: normal!important;
}
.mb-30 {
    margin-bottom: 30px !important;
}

/* 6. Lists */

/* 7. Tables */

/* 8. Forms */

/* 9. Buttons */


/* 10. Images */
.img-zoom {
    position: relative;
    overflow: hidden;
}
    .img-zoom img {
        transition: all 0.3s;
    }
    .img-zoom:hover img {
        transform: scale(1.1);
    }
.image-4x3 {
    /* 1. Thiết lập ngữ cảnh cho các phần tử con tuyệt đối */
    position: relative;
    /* 2. Đặt chiều rộng, ví dụ 100% của phần tử cha (hoặc bất kỳ giá trị nào) */
    width: 100%;
    /* 3. Padding Hack: 3/4 = 0.75 -> 75% */
    padding-top: 75%; /* Thiết lập chiều cao dựa trên 75% chiều rộng */
    /* Đảm bảo không có nội dung thừa */
    overflow: hidden; 
}
    .image-4x3 img {
        /* 4. Đặt ảnh vào vị trí tuyệt đối để nó phủ lên "padding space" */
        position: absolute;
        top: 0;
        left: 0;
        /* 5. Đảm bảo ảnh lấp đầy toàn bộ không gian 4:3 */
        width: 100%;
        height: 100%;
        /* 6. (Tùy chọn) Đảm bảo ảnh giữ tỷ lệ và cắt bớt nếu cần */
        object-fit: cover; 
    }
.image-3x2 {
    /* 1. Thiết lập ngữ cảnh cho các phần tử con tuyệt đối */
    position: relative;
    /* 2. Đặt chiều rộng, ví dụ 100% của phần tử cha (hoặc bất kỳ giá trị nào) */
    width: 100%;
    /* 3. Padding Hack: 2/3 = 0.67 -> 67% */
    padding-top: 67%; /* Thiết lập chiều cao dựa trên 75% chiều rộng */
    /* Đảm bảo không có nội dung thừa */
    overflow: hidden; 
}
    .image-3x2 img {
        /* 4. Đặt ảnh vào vị trí tuyệt đối để nó phủ lên "padding space" */
        position: absolute;
        top: 0;
        left: 0;
        /* 5. Đảm bảo ảnh lấp đầy toàn bộ không gian 4:3 */
        width: 100%;
        height: 100%;
        /* 6. (Tùy chọn) Đảm bảo ảnh giữ tỷ lệ và cắt bớt nếu cần */
        object-fit: cover; 
    }

/* 11. Background */

/* 12. Others */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
}
.policy-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}
.policy-wrapper {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 1400px) {
  .modal-xxl {
    --bs-modal-width: 1368px;
  }
}

/* Button quanity with 2 btn minus & plus */
.quantity__btn {
    width: 35px;
    border: 1px solid #ced4da;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff
}
.quantity__btn::after {
    content: "\f068";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: fontawesome;
    font-size: 8px
}
.quantity__btn:first-child {
    border-radius: 14px 0 0 14px;
    border-right: 0
}
.quantity__btn:not(:first-child) {
    border-radius: 0 14px 14px 0;
    border-left: 0
}
.quantity__btn:not(:first-child)::after {
    content: "\f067"
}
.quantity__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 28px;
    min-width: 20px;
    max-width: 44px;
    border: 1px solid #ced4da;
    border-left: 0;
    border-right: 0;
    text-align: center
}

@media (max-width: 767px) {
    .quantity__input{
        max-width: 40px;
    }    
}

/* Desktop */
@media (min-width: 768px) {
    .col-md-6:nth-child(odd) .policy-item {
        border-right: 1px solid #e5e7eb;
    }
    .col-md-6:nth-child(3) .policy-item,
    .col-md-6:nth-child(4) .policy-item {
        border-bottom: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .col-md-6:last-child .policy-item {
        border-bottom: none;
    }
}
.policy-icon {
    width: 56px;
    height: 56px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.policy-icon i {
    font-size: 28px;
    color: white;
}
.policy-text {
    flex: 1;
    font-size: 15px;
    color: #1f2937;
    line-height: 1.5;
}

.gradient {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 200px;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
/* Common */
.blockquote {
	position: relative;
	padding-left: 40px;
	font-family: 'Times New Roman', Times, serif;
	font-size: 24px;
    line-height: 150%;
	font-weight: 500;
	color: #333;
	quotes: "“" "”" "‘" "’";
}
	.blockquote::before, .blockquote::after {
		color: #c6c6c6;
		font-size: 2em;
		font-weight: 600;
		line-height: 0.1em;
	}
	.blockquote::before {
		position: absolute;
		left: 0;
		content: open-quote;
		margin-right: 0.15em;
		vertical-align: -0.15em;
	}
	.blockquote::after {
		content: close-quote;
		vertical-align: -0.7em;
	}

/* Accordion */

/* Limit line */
.max1line {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.max2line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.max3line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.max4line {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.max5line {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Begin Back-to-top */
a.back-to-top {
    display: none;
    position: fixed;
	z-index:9000;
    bottom: 18px;
    right: 15px;
    text-decoration: none;
}
	a.back-to-top i {
	    display: block;
	    font-size: 18px;
	    width: 30px;
	    height: 30px;
	    line-height: 30px;
	    color: #fff;
	    background: #ff0200;
	    /*border-radius: 50% 50%;*/
		border-radius: 6px;
	    text-align: center;
	    transition: all 0.2s ease-in-out;
	    -moz-transition: all 0.2s ease-in-out;
	    -webkit-transition: all 0.2s ease-in-out;
	    -o-transition: all 0.2s ease-in-out;
	    /*box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);*/
		box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
	}
	a.back-to-top:hover,
	a.back-to-top:focus {
	    text-decoration: none;
	}
/* End Back-top-top*/

/*BEGIN CONTENT PAGE CSS*/
#dvsArticleContent, .dvsArticleContent{
    font-size: 16px;
    line-height: 150%;
}
#dvsArticleContent .tplCaption, #dvsPageContent .tplCaption, .dvsArticleContent .tplCaption{
    background: #F1F1F1;
}
    #dvsArticleContent .tplCaption p.Image, #dvsPageContent .tplCaption p.Image, .dvsArticleContent .tplCaption p.Image{
        padding: 3px 5px;
        font-style: italic;
        /* font-size: 90%; */
    }
#dvsArticleContent figcaption, .dvsArticleContent figcaption{
    background: #F1F1F1;
    color: #222;
    /* font-size: 90%; */
}
#dvsArticleContent a, .dvsArticleContent a{
    color: #ff0200;
}
#dvsArticleContent a:hover, .dvsArticleContent a:hover{
    text-decoration: underline;
}
#dvsArticleContent p, #dvsPageContent p, .dvsArticleContent p{
    margin: 0px 0px 1em;
}
#dvsArticleContent h2, #dvsArticleContent  h2, #dvsArticleContent  h3,  #dvsArticleContent h4, #dvsArticleContent h5, #dvsArticleContent h6{
    margin: 1rem 0px 1rem;
    line-height: 1.5;
}
.dvsArticleContent h2, .dvsArticleContent  h2, .dvsArticleContent  h3,  .dvsArticleContent h4, .dvsArticleContent h5, .dvsArticleContent h6{
    margin: 1rem 0px 1rem;
    line-height: 1.5;
}
#dvsArticleContent h2, .dvsArticleContent h2{    
	color: #ff0200;
    padding-left: 16px;
    position: relative;
}
#dvsArticleContent h2::before, .dvsArticleContent h2::before  {
    content: '';		
    position: absolute;
    width: 4px;
    height: 40px;
    background: #ff0200;		
    left: -0px;
}
#dvsArticleContent h2{
    font-size: 26px;		
}
#dvsArticleContent h3, .dvsArticleContent h3{
    font-size: 24px;
    line-height: 1.5;
}
#dvsArticleContent h3, .dvsArticleContent h3{
    font-size: 22px;
    line-height: 1.5;
}
#dvsArticleContent h4, .dvsArticleContent h4{
    font-size: 20px;
    line-height: 1.5;
}
#dvsArticleContent h5, .dvsArticleContent h5{
    font-size: 18px;
    line-height: 1.5;
}
#dvsArticleContent h6, .dvsArticleContent h6{
    font-size: 16px;
    line-height: 1.5;
}
#dvsArticleContent ul, .dvsArticleContent ul, #dvsArticleContent ol, .dvsArticleContent ol{
    margin-left: 1rem;
    margin-bottom: 1rem;
}
#dvsArticleContent ul li, .dvsArticleContent ul li, #dvsArticleContent ol li, .dvsArticleContent ol li{
    line-height: 1.5;
    margin-bottom: 10px;
}
#dvsArticleContent blockquote, .dvsArticleContent blockquote {		
    position: relative;
    border-left: none;
    margin: 30px 2% 28px;
    padding: 0px 0px 0px 20px;
    line-height: 130%;
    word-wrap: break-word;
    border-left: 1px solid #ff0200;
}
#dvsArticleContent blockquote::before, .dvsArticleContent blockquote::before {
    content: '';		
    position: absolute;
    width: 4px;
    height: 100%;
    background: #ff0200;		
    left: -6px;
}
#dvsArticleContent blockquote p, .dvsArticleContent blockquote p {
    font-family: PT Serif !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: -0.5px !important;
    color: #ec3535;
    line-height: 130%;
}
#dvsArticleSapo, .dvsArticleSapo{
	font-weight: 500;
    text-align: justify;
}
.js-post-content .table-content{
    width: 70%;
}
.js-post-content .post-menu__content ul{
    list-style-type: none;
    margin: 0px!important;
}
    .js-post-content .post-menu__content > ul > li{
        margin-bottom: 10px!important;
    }
    .js-post-content .post-menu__content > ul > li ul, .js-post-content .post-menu__content > ul > li ul li{
        margin-bottom: 0px!important;
    }
    @media (max-width: 768px) {
        .js-post-content .table-content{
            width: 100%;
        }
    }
/*Add more*/
.cat-sidebar>.navbar>li::before{
 content: unset;
}
.subcat ul li {
    border: unset;
    display: flex;
}
.list-group .subcat{
 padding: 16px;
}
.subcat li::before{
    position: relative;
    top: 12px;
    margin-right: 0;
}
.nav.cat-tab {
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    width: 100%;
    padding-left: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.nav.cat-tab::-webkit-scrollbar {
    height: 3px;
}
.nav.cat-tab::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}
.cat-name{
    flex: 0 0 auto;
}
.cat-list{
    width: 100%;
    overflow: hidden;
}
.subcat ul li a {
    padding: 4px 10px;
}
.header-bottom .navbar-nav > .nav-item:not(:last-child) > a{
    position: relative;
}
.header-bottom .navbar-nav > .nav-item:not(:last-child) > a::after {
    content: '';
    width: 1px;
    height: 14px;
    display: inline-block;
    position: absolute;
    right: -50px;
    background: #b9b9b9;
    top: 50%;
    transform: translateY(-50%);
}
.header-bottom .navbar-nav > .nav-item > a::after {
    content: unset;
}
.menu.sub-menu.mega-menu {
    width: 100%;
    left: 0;
    top: 54px;
    padding: 25px;
}
ul.mega-menu-sub {
    list-style: none;
    padding-left: 0;
}
ul.mega-menu-sub li{
    display: flex;
}
.mega-menu li a{
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
}
ul.mega-menu-sub li a:hover{
 text-decoration: underline;
}
ul.mega-menu-sub li:before{
    content: "\f45c";
    position: relative;
    top: 16px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-right: 6px;
    display: inline-block;
    font-size: 6px;
    color: #ff0200;
}
.title_menu_mega{
    margin-bottom: 6px;
    border-bottom: 2px solid #ff0200;
}
.title_menu_mega a{
    padding: 2px 0;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}
@media(min-width: 998px){
    li.nav-item.dropdown.menu-item-mega{
        position: static;
    }
    .mega-menu-item .btn-dropmenu{
        display: none !important;
    }
}
@media(max-width: 998px){
    .menu-item-mega,.mega-menu-item{
        position: relative;
    }
    .title_menu_mega{
        border-bottom: 1px dashed #ccc;
    }
    .title_menu_mega a,.header-bottom .navbar-nav>.nav-item>a{
        padding: 8px 0;
        display: block;
    }
     .mega-menu-item:last-child .title_menu_mega{
        border: unset;
        margin-bottom: 0;
     }
    ul.mega-menu-sub li:before,.header-bottom .navbar-nav>.nav-item::after{
        content: unset;
    }
    .menu.sub-menu.mega-menu,.mega-menu li a{
          padding:6px
    }
    .menu-item-mega>.btn-dropmenu{
        right: 4px;
    }
    ul.mega-menu-sub{
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    #dvsArticleContent img, .dvsArticleContent img{        
        height: auto!important;
    }
}
/*END CONTENT PAGE CSS*/

/******************************************* Login form *****************************************************/

/******************************************* Ratings CSS *****************************************************/

/******************************************* Absolute Center Spinner *****************************************************/

/******************************************* Social Share Button *****************************************************/
.dvs-share-section {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
}

.dvs-share-title {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-align: center;
}


.dvs-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dvs-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem 1.0rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.dvs-share-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.dvs-share-btn:hover:before {
    width: 300px;
    height: 300px;
}

.dvs-share-btn i {
    font-size: 1.2rem;
    z-index: 1;
}

.dvs-share-btn span {
    z-index: 1;
}

.dvs-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.dvs-share-btn.facebook {
    background: #1877f2;
    color: white;
}

.dvs-share-btn.twitter {
    background: #000000;
    color: white;
}

.dvs-share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.dvs-share-btn.telegram {
    background: #0088cc;
    color: white;
}

@media (max-width: 576px) {
    
    .dvs-share-btn {
        padding: 0.1rem 0.7rem;
        font-size: 0.9rem;
    }    
}
/******************************************* CART **********************************************************/

/******************************************* DARK MODE *****************************************************/

/******************************************* OVERRIDE *****************************************************/
footer a, footer a:visited{
    color: #ffc732;
}
footer a:hover{
    color: #ec3535;
}

/******************************************* RESPONSIVE *****************************************************/
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
	
}

/* 
##Device = Laptops, Desktops
##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
	.desktop_hidden{
		display: none!important;
	}    
}

/* 
##Device = Tablets, Ipads (portrait & landscape)
##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
	.tablet_hidden{
		display: none!important;
	}
}
@media (max-width: 1024px) {
    
}
/* 
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/
@media (max-width: 767px) {
	.mobile_hidden{
		display: none!important;
	}
}

/* 
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/
@media (max-width: 480px) {

}

.sticky-btns {
    position: fixed;
    top: 50%;
    right: 15px;
    z-index: 50;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sticky-btns__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.sticky-btns__item,
.sticky-btns__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding: 0 16px 0 0;
    border-radius: 20px;
    font-weight: 700;
    line-height: 14px;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
    white-space: nowrap;
    margin-bottom: 10px;
    color: #000
}

.sticky-btns__item:hover,
.sticky-btns__toggle:hover {
    color: #000;
    text-decoration: none;
    background-color: #f6f6f6
}

.sticky-btns__item:first-child,
.sticky-btns__toggle:first-child {
    margin-bottom: 0
}

.sticky-btns__item {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: .4s;
    transition: .4s
}

.sticky-btns__item:nth-child(2) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.sticky-btns__item:nth-child(3) {
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.sticky-btns__item:nth-child(4) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.sticky-btns__item:nth-child(5) {
    -webkit-transition-delay: .25s;
    transition-delay: .25s
}

.sticky-btns__item:nth-child(6) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.sticky-btns__item:nth-child(7) {
    -webkit-transition-delay: .35s;
    transition-delay: .35s
}

.sticky-btns__item:nth-child(8) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s
}

.sticky-btns__item:nth-child(9) {
    -webkit-transition-delay: .45s;
    transition-delay: .45s
}

.sticky-btns__item small {
    display: block;
    text-align: center
}

.sticky-btns.active .sticky-btns__item {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.sticky-btns__toggle {
    margin-bottom: 0
}

.sticky-btns__toggle img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    height: 20px
}

.sticky-btns__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background: #c61d23;
    color: #fff;
    margin: -3px 10px -3px 0;
    position: relative
}

.sticky-btns__icon::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0
}

.sticky-btns__icon .fa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%
}

.sticky-btns__icon .fa-facebook {
    background-color: #37538d
}

.sticky-btns__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    border: 10px solid transparent
}

.sticky-btns__icon--zalo {
    background-color: #0080c8
}

.sticky-btns__toggle .sticky-btns__icon {
    background-color: #c61d23
}

.sticky-btns__item:hover .sticky-btns__icon::after {
    background-color: rgba(0, 0, 0, .15)
}

@media (min-width:1200px) {
    .sticky-btns__toggle {
        display: none
    }

    .sticky-btns__item {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@media (max-width:1199px) {
    .sticky-btns {
        top: auto;
        right: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        left: 15px;
        bottom: 15px
    }

    .sticky-btns__wrapper {
        position: absolute;
        bottom: 100%;
        left: 0;
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        -webkit-transition: 0s .5s;
        transition: 0s .5s
    }

    .sticky-btns__item:first-child {
        margin-bottom: 10px
    }

    .sticky-btns.active .sticky-btns__wrapper {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: 0s 0s;
        transition: 0s 0s
    }
}

.sticky-btns {
    top: 80%;
}

