/* ------------------------------------------------------------------------------
Keyframe animation
-------------------------------------------------------------------------------*/
.fading-animation{
    animation: fading-animation 5s infinite;
}
.pointing-animation{
    animation: pointing-animation 1s infinite;
}
.beat-animation{
    animation: beat-animation 2s infinite;
}
.shake-animation{
    animation: shake-animation 0.82s cubic-bezier(.36,.07,.19,.97) both infinite;
}
.shake-slow-animation{
    animation: shake-slow-animation 2s cubic-bezier(.36,.07,.19,.97) both infinite;
}
.spin-animation{
    animation: spin-animation 10s infinite;
}
.light-rotate-animation{
    animation: light-rotate-animation 5s infinite;
}
.perspective-rotate-animation{
    animation: perspective-rotate-animation 10s infinite;
}
.transform-animation{
    animation: transform-animation 20s infinite;
}
.skew-animation{
    animation: skew-animation 10s infinite;
}
.border-radius-animation{
    animation: border-radius-animation 5s infinite;
}
.border-radius-all-animation{
    animation: border-radius-all-animation 5s infinite;
}


/* ------------------------------------------------------------------------------
Keyframe
-------------------------------------------------------------------------------*/
@keyframes border-radius-all-animation {
    0% {
        border-radius: 0;
    }
    10%{
        border-radius: 20px;
    }
    50%{
        border-radius: 10px;
    }
    70%{
        border-radius: 100%;
    }
    100%{
        border-radius: 0;
    }
}
@keyframes border-radius-animation {
    0% {
        border-top-right-radius: 0px;

    }
    20%{
        border-radius: 0;
        border-top-left-radius: 20px;
    }
    40%{
        border-radius: 0;
        border-bottom-left-radius: 20px;
    }
    60%{
        border-radius: 0;
        border-bottom-right-radius: 20px;
    }
    80% {
        border-radius: 0;
        border-top-right-radius: 20px;
    }
    100%{
        border-radius: 0;
    }
}
@keyframes skew-animation {
    0% {
        transform: skew(0deg,0deg);
    }
    30%{
        transform: skew(10deg,-10deg);
    }
    40%{
        transform:skew(-10deg,20deg);
    }
    55% {
        transform: skew(10deg,-20deg);
    }
    75%{
        transform:skew(15deg,10deg);
    }
    100% {
        transform: skew(0deg,0deg);
    }
}
@keyframes transform-animation {
    0% {
        transform: translate(0px);
    }
    10%{
        transform: translate(-10px);
    }
    30%{
        transform: translate(10px);
    }
    40%{
        transform: translate(15px);
    }
    55% {
        transform: translate(-10px);
    }
    100% {
        transform: translate(0px);
    }
}
@keyframes fading-animation {
    0% {
        opacity: 1;
    }
    55% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}
@keyframes light-rotate-animation {
    0% {transform:rotate(5deg);}
    25% {transform:rotate(10deg);}
    85% {transform:rotate(-15deg);}
    100% {transform:rotate(5deg);}
}
@keyframes perspective-rotate-animation {
    0% {transform:rotateY(-30deg);}
    25% {transform:rotateY(-25deg);}
    75% {transform:rotateY(-35deg);}
    100% {transform:rotateY(-30deg);}
}
@keyframes spin-animation {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
@keyframes pointing-animation {
    0%    {margin-left:0px;}
    25%   {margin-left:-15px;}
    100%  {margin-left:0px;}
}
@keyframes beat-animation {
    0%    {transform:scale(1);}
    25%   {transform:scale(1.02);}
    40%   {transform:scale(0.98);}
    75%   {transform:scale(1.05);}
    100%  {transform:scale(1);}
}
@keyframes shake-animation {
    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);
    }
}
@keyframes shake-slow-animation {
    5%, 45% {
        transform: translate3d(-1px, 0, 0);
    }
    10%, 40% {
        transform: translate3d(2px, 0, 0);
    }
    15%, 25%, 35% {
        transform: translate3d(-4px, 0, 0);
    }
    20%, 30% {
        transform: translate3d(4px, 0, 0);
    }
}


/*********************************************************************

                         THEME SETTING

***********************************************************************/



@font-face {
    font-family: "Inter";
    src: url("/font/inter/thin.ttf");
    font-weight: 100;
    font-style: thin;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/extralight.ttf");
    font-weight: 200;
    font-style: extralight;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/light.ttf");
    font-weight: 300;
    font-style: light;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/medium.ttf");
    font-weight: 500;
    font-style: medium;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/semibold.ttf");
    font-weight: 600;
    font-style: semibold;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/bold.ttf");
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/extrabold.ttf");
    font-weight: 800;
    font-style: extrabold;
}

@font-face {
    font-family: "Inter";
    src: url("/font/inter/black.ttf");
    font-weight: 900;
    font-style: black;
}



p,
h1,
span,
h2,
h3,
h4,
h5,
h6,
a,
li,
ul,
html,
body,
b,
label {
    font-family: "Inter", "微软雅黑", sans-serif;
}


:root {
    --primary-theme-color: #2fd4b8;
    --primary-hover-theme-color: #1b9f89;
    --secondary-theme-color: #e4f7f4;
    --secondary-font-theme-color: #28b59d;
    --highlight-theme-color: #05887d;
    --inactive-theme-color: #eafaf7;
    --default-background-color: #ffffff;
    --title-font-size: 4em;
    --header-font-size: 2em;
    --sub-header-font-size: 1.5em;
    --paragraph-font-size: 1em;
    --label-font-size: 0.8em;
    --h1-font-size: 3em;
    --h2-font-size: 2em;
    --h3-font-size: 1.8em;
    --h4-font-size: 1.6em;
    --input-font-size: 0.9em;
    --button-font-size: 0.9em;
    --small-font-size: 0.7em;
    --default-font-color: #161616;
    --link-font-color: #05887d;
    --link-inactive-color: cfcfcf;
}


footer .container{
    border-top: 2px solid #ededed;
    padding-top: 80px;
}
footer{
    background:rgb(255, 255, 255) !important;
}
nav.navbar p, nav.navbar span, nav.navbar h1, nav.navbar h2, nav.navbar h3, nav.navbar h4, nav.navbar h5, nav.navbar h6, nav.navbar b, nav.navbar small, nav.navbar a, .topnav .navbar-nav a,.navbar-toggler{
    color: white !important;
}

#navbarNavRight ul li.active a{
    opacity: 1 !important;
}
#navbarNavRight ul li.active a, #navbarNavRight ul li.active button{
    font-weight: 600 !important;
    position: relative;
}

#academyDropdown{
    background: transparent;
    opacity: 0.5;
}


/* actual dropdown animation */
.dropdown .dropdown-menu {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

    max-height: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
}

.dropdown.show .dropdown-menu {
    max-height: 200px;
    opacity: 1;
}

#academyDropdownMenu{
    background: #ffffff;
    border: 1px solid #e8e8e8;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 5px solid var(--primary-theme-color);
}
#academyDropdownMenu li{
    margin: 0 !important;
    cursor: pointer;
    transition: 0.5s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#academyDropdownMenu li:hover a{
    color: white !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}
#academyDropdownMenu li:hover{

    background: var(--primary-theme-color);
    color: white !important;
}
#academyDropdownMenu i{
    padding-right: 12px;
}


/*********************************************************************

                         GENERAL SETTING

***********************************************************************/


html{
    background:black !important;
}

a{
    color:var(--font-color);
}
p{
    font-size: var(--paragraph-font-size);
    font-weight: 400;
}
small{
    font-size: var(--small-font-size);
    font-weight: 300;
}
h1{
    font-size: var(--h1-font-size);
    font-weight: 700;
    color: var(--font-color);
}
h2{
    font-size: var(--h2-font-size);
    font-weight: 800;
}
h3{
    font-size: var(--h3-font-size);
    font-weight: 800;
}
h4{
    font-size: var(--h4-font-size);
    font-weight: 800;
}
h5{
    font-size: var(--h5-font-size);
    font-weight: 700;
}
h6{
    font-size: var(--h6-font-size);
    font-weight: 600;
}
label{
    font-size: var(--label-font-size);
    font-weight: 400;
}
input, select, .form-control{
    font-size: var(--input-font-size);
}
button, button.btn{
    font-size: var(--button-font-size);
}
body{
    background:transparent;
}
html{
    background-color: white !important;
}
.btn-default{
    background:var(--default-button-color);
}
.mobile{
    display: none;
}
.width-100{ width:100%; }
.width-90{ width:90%; }
.width-80{ width:80%; }
.width-70{ width:70%; }
.width-60{ width:60%; }
.width-50{ width:50%; }
.width-40{ width:40%; }
.width-30{ width:30%; }
.width-20{ width:20%; }
.width-10{ width:10%; }
.opacity-10 {opacity:1 !important;}
.opacity-8 {opacity:0.8;}
.opacity-7 {opacity:0.7;}
.opacity-6 {opacity:0.6;}
.opacity-5 {opacity:0.5;}
.opacity-4 {opacity:0.4;}
.opacity-3 {opacity:0.3;}
.opacity-2 {opacity:0.2;}
.opacity-1 {opacity:0.1;}

.picture-box{
    background-repeat: no-repeat !important;
    background-position: center center !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    width: 100%;
    height: 100%; 
    height: 100px;
}

span.highlight{
    color: var(--highlight-theme-color);
}
.cms-section{
    padding:3.5rem 0;      
}

.banner-section{
    margin-bottom: 60px;
    margin-top: 20px;
}
video{
    width:auto;
    max-width: 100%;
    height:100%;
}
.banner-image{
    height:60vh !important;
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    outline: none !important;
    border: none !important;
    cursor: grab !important;
}
.banner-large .banner-image{
    height:80vh !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    outline: none !important;
    border: none !important;
    cursor: grab !important;
}

.banner-full .banner-image{
    height:95vh !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    outline: none !important;
    border: none !important;
    cursor: grab !important;
}
.banner-image video{
    position: absolute;
    width: 100% !important;
    top: 0;
    transform: none !important;
    height: 100% !important;
    object-fit: cover;
}


input[type="button"]:focus,
.btn.focus,
.btn:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.breadcrumb{
    padding: .5rem;
    background: transparent;
    font-size: 13px;
    margin-top: 15px;
}
.swal-title{
    font-size: var(--h4-font-size) !important;
    font-weight: 800 !important;
    color: var(--font-color) !important;
}
.swal-text{
    font-size: 15px !important;
}
.swal-button--danger{
    background-color: #cd2720 !important;
}
.swal-button--cancel{
    background-color: #efefef !important;
}

.swal-button-container, .swal-button{
    outline:none !important;
    border:none !important;
}

.swal-footer{
    text-align: center;
}
.breadcrumb-item a{
    color:black !important;
}
.breadcrumb-item.active{
    opacity: 0.7;
}

.custom-navbar button{
    color: black ;
}

.swal-button{    
    font-weight: 500;
    font-size: 13px;
    padding: 8px 24px;
    background:var(--primary-theme-color);
    border-radius: 5px;
}
.btn{
    transition:0.4s all;
}
.btn:hover {
    opacity: 0.4;
}
.btn-primary{
    background:var(--primary-theme-color) !important;
    border: 1px solid var(--primary-theme-color)  !important;
}
.btn-secondary{
    background:var(--secondary-theme-color) !important;
    border: 1px solid var(--secondary-theme-color)  !important;
}
.btn-primary:disabled{
    background:black !important;
    opacity: 0.4;
    border: 1px solid black !important;
    cursor: not-allowed;
}
.circle-btn {
    background: var(--primary-theme-color);
    border-radius: 100% !important;
    width: 40px;
    height: 40px;
    font-size: var(--button-font-size);
    font-weight: bold;
    color: white;
    text-align: center;
    margin: auto;
    padding: 0;
    line-height: 10px;
    margin: 0;
    margin-bottom: 25px;
    text-decoration: none;
    outline: none;
    transition: 0.4s all;
}

.circle-btn:hover {
    opacity: 0.7;
}

.back-btn {
    background: #f1f1f1 !important;
    color: #979797 !important;
}

.circle-btn {
    position: relative;
}

.circle-btn:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}


.circle-btn span {
    background: #fff;
    color: #222;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: -25px;
    right: -25px;
    padding: 10px 7px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: initial;
}

.circle-btn span:before {
    content: "";
    /*   width: 0;
    height: 0; */
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    position: absolute;
    bottom: -5px;
    left: 40px;
}

.circle-btn:hover span {
    bottom: 50px;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

a{
    text-decoration: none !important;
}


.hover-container:not(:hover) .hover-item{
    opacity:1;
}
.hover-item{
    transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    opacity: 0.5;
}
.collection-mix.hover-item{
    transition: 0.6s opacity cubic-bezier(0.075, 0.82, 0.165, 1);
}
.collection-mix .product-item {
    transition: 0.6s transform cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hover-item:hover{
    opacity: 1;
    transform:scale(1.08);
}
.collection-mix.hover-item:hover{
    opacity: 1;
    transform:none;
}
.collection-mix.hover-item:hover .product-item{
    opacity: 1;
    transform:scale(1.08);
}
.collection-mix.hover-item .new-label{
    left:0px;
}

.content{
    padding-top: 25px;
    padding-bottom: 0px;
}


.toastify {
    padding: 12px 20px;
    color: #535353 !important;
    display: inline-block;
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12),
        0 10px 36px -4px rgb(102 99 99 / 30%) !important;
    background: -webkit-linear-gradient(315deg, #f9f9f9, #f8f8f8) !important;
    background: linear-gradient(135deg, #f9f9f9, #f8f8f8) !important;
    position: fixed;
    top: -150px;
    left: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 2px;
    cursor: pointer;
    transform: translateX(-50%) !important;
    z-index: 10000000;
    max-width: 95% !important;
    border-radius: 100px;
    width: fit-content;
    padding: 5px;
    display: flex;
    padding-right: 25px;
    justify-content: center;
}

.toastify.on {
    opacity: 1;
}

.toastify img {
    width: 40px;
    height: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin: auto;
    margin-left: 5px;
    margin-right: 15px;
}

.toastify .title {
    font-size: 14px;
    font-weight: 700;
    color: var(--font-color);
    display: block;
}

.toastify div {
    display: flex;
    font-size: 12px;
    font-weight: 300;
    color: var(--primary-theme-color);
    justify-content: center;
    flex-direction: column;
}

.picture-box-video{
    position: relative;
    height: 100%;;
}
.picture-box-video video{
    object-fit: cover;
    min-width: 100%;
    position: absolute;
    left: 0;
    max-height: 100% !important;
}


.hide{
    display:none;
}

.badge-tag{
    color: #fff;
    font-size: var(--small-font-size);
    background-color: #c1c1c1;
    font-weight: 400;
}



.modal-close-btn {
    border-radius: 100% !important;
    width: 35px !important;
    height: 35px !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border: none !important;
    color: #b0b0b0 !important;
    font-size: 12px !important;
    transition: 0.5s all;
    margin: auto;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-close-btn:hover {
    opacity: 0.4;
}








/*********************************************************************

                         CHAT POPUP SETTING

***********************************************************************/



.chatHead-content {
    display: none;
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
}

.chatHead-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0px;
}

.chatHead-content p {
    font-size: 14px;
    opacity: 0.4;
}

#chatToggle {
    z-index: 20;
    border: none;
    width: 50px;
    height: 60px;
    cursor: pointer;
    background: transparent;
    position: relative;
    transition: 0.4s all;
    padding-right: 0;
    padding-left: 0;
    border: none;
    outline: none;
    box-shadow: none;
}

#chatToggle img {
    width: 100%;
    border-radius: 100%;
    transition: 0.4s all;
}

#chatToggle img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px #e0e0e0;
}

#chatHeadWidget {
    position: fixed;
    right: -150px;
    bottom: 50px;
    float: right;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

#chatHeadTooltips {
    width: auto;
    position: absolute;
    top: 50%;
    transform: translate(-105%, -50%);
    background: white;
    padding: 10px 30px;
    border-radius: 69px;
    transition: 1s all;
    opacity: 1;
}
#chatHeadTooltips p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 1s all;
    margin: 0;
    font-size: 14px;
}

div#chatHeadTooltips:after {
    border-style: solid;
    border-width: 10px 0 10px 13.3px;
    border-color: transparent transparent transparent #ffffff;
    content: "";
    position: absolute;
    right: -8px;
    top: 33%;
}

#chatHeadTooltips.off {
    opacity: 0;
}
#chatHeadTooltips.off p {
    width: 0px !important;
    opacity: 0;
}

.loaded {
    animation: off-screen 1s forwards;
    animation-delay: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

#chatOption {
    position: absolute;
    top: 0;
    width: 70px;
    display: flex;
    justify-content: center;
}

.chathead-item {
    width: 50px;
    height: 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    transition-timing-function: cubic-bezier(1, 0.1, 1, 1);
    opacity: 1;
}
.chathead-item img {
    transition: 0.4s all;
    box-shadow: 0px 0px 3px #e6e6e6;
    border-radius: 100%;
    width: 100%;
}
.chathead-item img:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 5px #e6e6e6;
}

#chatOption.off .chathead-item {
    top: 0px !important;
    opacity: 0;
}

.hide-fb-dialog {
    min-height: 0px !important;
    max-height: 0px !important;
}

@keyframes off-screen {
    from {
        right: -150px;
    }
    to {
        right: 25px;
    }
}

.slick-dots li button:before{
    font-size:8px !important;
    margin-top:15px !important;
}



/* prevent all iframe scaled by above hover icon function  */
.chathead-item iframe:hover {
    transform: scale(1);
}

.modal-dialog.xl{
    max-width: 90vw !important;
}


footer .social-icons{
    display: flex;
    align-items: center;
}


/* fb chat box reposition */
.fb-customerchat > span  iframe{
    bottom: 0px !important;
    right: 70px !important;

}
.fb_dialog_content > iframe{
    bottom: 0px !important;
    right: 70px !important;
    display: block !important;
    position:inherit !important;
    margin: 0px !important;
    box-shadow: none !important;
    transition: 0.3s all !important;
}

.fb_dialog_content:hover{
    transform: scale(1);
}


.fb_dialog_content 
{
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
   position:inherit !important;
   background-color: transparent !important;
   transform: scale(0.88);
} 

.fb_dialog{
    position:inherit !important;
   background-color: transparent !important;
   margin-top:15px;
} 







/*********************************************************************

                        ANNOUNCEMENT SETTING

/*********************************************************************/

#announcementModal section {
    margin-top: 5vh !important;
}

.announcement-title {
    text-align: center;
    margin-bottom: 0 !important;
}
.announcement-title::before {
    content: none !important;
}

.announcement-description {
    text-align: center;
    font-size: 16px !important;
    opacity: 0.6 !important;
    margin-bottom: 30px !important;
}

.announcement-image {
    text-align: center;
}
.announcement-image img {
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 15px;
}
.announcement-image video {
    max-width: 80%;
    margin: auto;
}
.announcement-button {
    text-align: center;
    padding-top: 15px;
}

#announcementContent {
    text-align: center;
}
#announcementModal .announcement-picture img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
#announcementModal .announcement-picture video {
    max-width: 100%;
    margin: auto;
}

#announcementModal .announcement-picture {
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
}
#announcementModal .announcement-title {
    font-size: var(--header-font-size);
    font-weight: 800;
    margin: 0;
}
#announcementModal .announcement-description {
    opacity: 0.7;
    font-weight: 300;
}

#announcementModal .tox-tinymce {
    border: none;
}
#announcementContent,
#guidelineContent {
    opacity: 0;
    transition: all 1.5s;
    max-height: 100px;
}
#announcementContent.open,
#guidelineContent {
    opacity: 1;
    max-height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
}
#announcementContent .modal-body{
    padding: 8%;
    padding-left:10%;
}
#announcementModal .no-show {
    opacity: 0.5;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    right: 7%;
}
#announcementModal .slick-dots {
    position: fixed !important;
    bottom: 40px !important;
    left: 10px !important;
    right: 0 !important;
    margin: auto !important;
}
#announcementModal .modal-content {
    padding:25px;
    padding-bottom: 50px !important;
}

#announcementModal .no-show input,
#announcementModal .no-show label {
    cursor: pointer;
}

.slick-dots li button::before {
    font-size: 8px !important;
}

.slide {
    height: 100%;
  }






/*********************************************************************

                         NAVBAR SETTING

***********************************************************************/



.navbar-light .navbar-brand img{
    height: 35px;
    margin-top: -10px;
}
.navbar-brand.mobile{
    display: none;
}
.close-toggle{
    display: none;
}
.navbar-light .navbar-brand{
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-right: 0 !important;

}
.navbar-light .navbar-brand span{
    font-weight: 800;
    padding-left: 2px;
    color: #3a0776;
    font-size: 20px;
}

.navbar-light .navbar-toggler{
    border:none;
    font-size: 26px;
    outline: none !important;
    opacity: 0.8;
    margin-top: -8px;
    padding-left:0;
}
.custom-navbar ul{
    margin: auto;
    margin-right: 0;
}
.custom-navbar ul li{
    margin-right:20px;
}
.navbar-toggler {
    color: black !important;

}
.custom-navbar ul a{
    font-size: var(--link-font-size);
    font-weight: 400 !important;
    opacity: 0.5 ;
    color: black !important;
}
.custom-navbar ul a span{
    padding-left: 2px;
}
.navbar{
    transition:0.3s all;
    padding-top: 20px;
}
.navbar.fixed-top{
    box-shadow: 1px 1px 15px #d2d2e3;
    padding-top:15px;
    padding-bottom:15px;
}
.fixed-top{
    animation: nav-animation 0.3s linear;
}
.signup-btn{
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.7);
    font-weight: 300;
    background: rgba(0,0,0,0.02);
}
.employer-btn{
    background: #ff1b60;
    border: 1px solid #ff1b60;
}
.custom-navbar ul a.active{
    opacity: 1 !important;
    font-weight: 700 !important;
}
.custom-navbar {
    padding-bottom: 25px;
    padding-top: 35px !important;
}
.custom-navbar .container{
    justify-content: space-between;
}
#desktopNav ul{
    margin:auto;
    margin-left:0;
}
#desktopNav, #navbarNavRight{
    flex-basis: 100% !important;
}
#desktopNav .inner-nav{
    flex-wrap: wrap;
    overflow:hidden;
}
#desktopNav{
    max-width: 39vw;
}
.landing-section {
    margin-top: 100px !important;
}
#navbarNavRight ul li{
    margin-right:0;
    margin-left:15px;
    position: relative;
}
.logo-white{
    display: none;
}
ul li.active #academyDropdown{
    opacity: 1 !important;
}
#academyDropdownMenu li a{
    padding: 10px !important;
    width: 100%;
    display: block;
}
#navbarNavRight ul li.sub button{
    background: transparent !important;
    border: none !important;
}


ul li.sub{
    display: inline-block;
    position: relative;
}

ul li.sub::after{
    content: '';
    position: absolute;
    width: 40%;
    border-radius: 50px;
    transform: scaleX(0);
    height: 4px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #149ea3;
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
}
ul li.sub:hover::after {
    transform: scaleX(1);
    transform-origin: bottom right;
}



#navbarNavRight ul li button{
    font-size: 15px !important;

}
#navbarNavRight ul li button:hover{
    color: black !important;
}
#navbarNavRight ul li button.subscribe-btn:hover{
    color: var(--primary-theme-color) !important;
}
.custom-navbar .subscribe-btn{
    margin-left: 35px;
    color: black !important;
    border: 1px solid lightgray !important;
    border-radius: 35px;
    padding: 7px 30px;
    font-weight: 700;
}

.subscribe-btn{
    background: white !important;
    color: black !important;
    font-weight: 500;
}

@keyframes nav-animation {
    0% {
        top:-10%
    }

    100%{
        top : 0;
    }
}

.topnav .navbar-nav{
    flex-direction: row !important;
    justify-content: flex-end !important;
}

.topnav{
    padding-top:20px;
 
}

.topnav .navbar-nav a
{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600 !important;
    opacity: 0.6 !important;
}

.topnav .navbar-nav li {
    margin-right: 0;
    margin-left: 40px;
}

.language-select{
    background: #f1f1f1;
    font-size: 12px;
    height: 32px !important;
    border-radius: 30px;
}
.topnav ul a.active{
    color: rgba(0,0,0,0.25) !important;
}

.language-nav{
    padding-right:5%;
    color: rgba(0,0,0,0.3);
    font-size: 12px;
    align-self: center;
}
.language-nav span{
    padding: 0px 10px;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s all;
}
.language-nav span:hover{
    opacity: 0.5;
}
.language-nav span.active{
    color: rgba(0,0,0,1);
    font-weight: 500;
}

.mobile-nav{
    display:none;    
}
.mobile-nav i, .mobile-nav .nav-link{
    color: #c5c5c5 !important;
}
.topnav .navbar-nav  .mobile-nav  a{
    color: #c5c5c5 !important;
}
.mobile-nav .cart-btn{
    position:relative;
}
.mobile-nav .cartNumber{
    width: 13px;
    height: 13px;
    background: black;
    border-radius: 100%;
    position: absolute;
    line-height: 13px;
    text-align: center;
    color: white;
    font-size: 7px;
}

.desktop-nav{
    display:block;
}
#mobileNav{
    overflow: auto;
    padding-top: 10vh;
    padding-bottom: 10vh;
}
#mobileNav ul.inner-nav{
    margin-left:0 !important;
}

#mobileNav.collapse{
    width: 0px;
    transition: 0.3s all;
    height: 0px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index:999999;
    box-shadow: 4px 4px 10px #d0d0d054;
}

#mobileNav.collapse.active{
    width: 40vw;    
    height: 100vh;
    overflow: auto;
    border-radius: 0;
}

#mobileNav .navbar-nav{
    margin: auto;
    text-align: left;    
    margin-left: 15%;
    position: relative;
    width:100%;
    flex-direction: column !important;
}
#mobileNav .navbar-nav a {
    padding-left :0; 
}
.close-nav-toggle{
    position: absolute;
    top: 0;
    right: 15%;
    margin-top: 3px;
    text-decoration:none !important;
    width: 40px;
    height: 40px;
    background: #ededed;
    border-radius: 100%;
    color: #595959;
    font-weight: 800;
}

#mobileNav .navbar-nav li{
    margin-bottom: 15px;
}

.login-btn{
    margin-left: 50px;
    font-weight: 700;
}










/*********************************************************************

                         LOADER SETTING

***********************************************************************/




/* ------------------------------------------------------------------------------
Page Loader
-------------------------------------------------------------------------------*/









/*********************************************************************

                             FAV SETTING

***********************************************************************/


.fav-nav{
    position:relative;
    
}
.fav-nav i{
    color: #ee4949;
}
.fav-nav span{
    width: 13px;
    height: 13px;
    background: black;
    color: white;
    border-radius: 100%;
    font-size: 9px;
    position: absolute;
    text-align: center;
    line-height: 13px;
    top: 0px;
}
.fav-title i {
    color: red;
    transform: rotate(21deg);
    font-size: 14px;
}

.fav-item-section{
    margin-top:50px;
}
.fav-item-box{
    border-radius: 5px;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fav-item-box img{
    width:60%;
}


#favRow a{
    text-decoration:none !important;
    outline: none !important;
}
.fav-product-title{
    font-size: var(--paragraph-font-size);
    font-weight: 400;
    margin-top: 15px;
    text-align: center;
    color:var(--font-color);
}
.fav-title{ 
    font-size: var(--h4-font-size);
    font-weight: 800;
    margin-top: 15px;
    text-align: center;
    color:var(--font-color);
}

.no-fav{
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    max-width: 60%;
    margin: auto;
    display:none;
    color:black;
    opacity: 0.6;
}
#favRow .fav-item{
    transition:0.5s all;
    cursor: pointer;
    position: relative;
}
#favRow .delete-fav-btn{    
    position: absolute;
    top: 0px;
    right: 3px;
    opacity: 0;
    font-size: 11px;
    color: black;
    text-decoration: none !important;
    outline: none !important;
    transition: 0.4s all;
}
#favRow .fav-item.active{
    opacity: 1 !important;
    transform:scale(1.05);
}
#favRow .fav-item.hover{
    opacity: 0.4;
}
#favRow .fav-item:hover .delete-fav-btn{
    top: -20px;
    right: 0px;
    opacity: 1;
}

#favouriteModal .modal-body{
    padding: 25px 35px;
}




.transaction-badge-0 {
    color: #fff;
    background-color: #343a40;
}
.transaction-badge-1 {
    color: #fff;
    background-color: #1dcf76;
}
.transaction-badge-4,
.transaction-badge-5 {
    color: #fff;
    background-color: #5d5f61;
}
.transaction-badge-6,
.transaction-badge-2,
.transaction-badge-3 {
    color: #fff;
    background-color: #af1717;
}








/*********************************************************************

                             CART SETTING

***********************************************************************/


.price-change-icon{
    padding-left: 8px;
    font-size: var(--small-font-size);
    padding-right: 8px;
    opacity: 0.6;
}
.price-change{
    text-decoration: line-through;
}
.cart-section{
    position: fixed;
    top: 0;
    right: -200vw;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition:0.6s all;
    z-index: 100;

}

.cart-box{
    width: 40vw;
    float: right;
    padding: 5% 3%;
    background: #fcfcfc;
    min-height: 100vh;
    box-shadow: -2px 0px 15px rgba(255, 255, 255, 0.34);
    max-width:400px;
    opacity: 0;
    transition-delay: 0.3s;
    transition: 0.4s all ease-in;
    margin-right: -100vw;
    position: relative;
}
.cart-overlay{
    width: 0vw;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: 0.4s all ease-in-out;
    margin-right: -100vw;
}
.cart-section.active{
    right:0;
    opacity: 1;
}

.cart-box.active{
    opacity: 1;
    margin-right:0;
}
.cart-overlay.active{
    width: 100vw;
    height: 100vh;
    opacity: 1;
    margin-right:0;
    border-radius: 0;
}

.close-cart-btn{
    position: absolute;
    top: 15px;
    right: 35px;
    background: rgba(0,0,0,0.04);
    border: none;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.cart-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin:25px 0;
}
.cart-header span{
    font-size: 13px;
    font-weight: 500;
}
.cart-header span i{
    font-size: 14px;
    padding-right: 5px;
}
.cart-header h1{
    font-size: 14px !important;
    font-weight: 600 !important;
}




/*********************************************************************

                            AUTH MODAL SETTING

***********************************************************************/

.auth-forgot-btn{
    padding-right: 0 !important;
}

.modal-header, .modal-footer{
    border:none !important;
}

  
#loginModal .modal-body{
    width:70%;
    margin:auto;
}

#loginModal .btn-section button{
    width:100%;
    margin-top:15px;
    margin-bottom: 15px;
}

#loginModal .fav-title{
    margin-bottom: 25px;
}

.auth-register-form , .auth-login-form, .auth-forgot-form, .auth-email-form{
    display:none ;
}
.auth-back-btn, .email-back-btn{
    margin: 0 !important;
    font-size: 12px;
    color: black;
    opacity: 0.7;
}

#forgotPassword{
    color: blue;
    cursor: pointer;
    transition: 0.4s all;
}
#forgotPassword:hover{
    opacity: 0.7;
}
#forgotPasswordBox{
    width:100%;
    text-align: right;
}

.or-section
{
    text-align: center;
    position: relative;
    width: 100%;
    height: 20px;
    opacity: 0.5;
}
.socialite-section{
    margin-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.socialite-section img{
    width:35px;
    margin: 0 10px;
}
.or-section:before
{
    content: '';
    background: #ababab;    
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 56%;    
    transform: translateY(-50%);
}
.or-section span{
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    width: auto;
    padding: 0 10px;
    font-size: 12px;
}







.navdd{
    position: fixed;
    top: 0;
    z-index: 500;
    width: 100%;
    background: white;
    padding-bottom: 10px;
    box-shadow: 2px 2px 19px #f5f5f5;
    animation: dddafsadas 0.3s linear;
}

@keyframes dddafsadas {
    0% {
        top:-110px;
    }
    100%{
        top:0px;
    }
}


/*********************************************************************

                            FOOTER SETTING

***********************************************************************/


footer small span{
    font-weight: 700;
}
footer p{
    text-align: left !important;
    font-size: 0.9em;
    opacity: 0.8;
    padding-top: 5px;
}
footer{
    padding-top: 30px;
    padding-bottom: 100px;
}
footer b{
    font-size: 17px;
    color: black;
    font-weight: 800;
    padding-bottom: 25px;
    display: block;
    text-transform: uppercase;
}
.flex-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer .partner img{
    margin-bottom: 35px;
    width: 150px !important;
    max-width: 50% !important;
    filter: invert(0.25);
    display: block;
}
footer small{
    font-size: 0.9em;
    margin-bottom: 0.8em;
}
footer .copyright{
    margin-top: 2em;
}
footer a{
    display: block;
    font-size: 0.9em;
    padding-bottom: 15px;
}
footer .input-group{
    margin-top: 5px;
}
footer p i{
    margin-right: 10px;
}
footer .social {
    width: 55px;
    margin-top: 1em;
}
footer h2{
    font-size: 1.5em;
    font-weight: 700;
}
footer img{
    margin-bottom: 35px;
    width: 60px;
    max-width: 60%;
}
.footer-social-section img{
    width: 35px;
    margin-right: 8px;
    margin-bottom: 0px;
}
.footer-info a{
    margin: 10px;
    margin-left: 0;
    color: white ;
    opacity: 1;
}

.footer-powered a{
    color: #542dff !important;
    font-weight: 700;
}
.footer-powered{
    opacity: 1;
    text-align: center !important;
    margin-top: 50px;
}
.footer-social-section{
    text-align: left;
    margin-bottom: 25px;
}
.footer-social-section i{
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.04);
    border-radius: 100%;
    line-height: 50px;
    font-size: 24px;
    color: rgba(0,0,0,0.4);
    font-weight: 100;
    margin-right: 5px;
    margin-left:5px;
}






.blue{
    color: #251bff !important;
}





/*********************************************************************

                    GLOBAL PRODUCT SETTING

***********************************************************************/


.recommend-product-list{
    margin-top: 25px;
}

.recommend-product-list .fa-heart{
    color: red;
    transform: rotate(25deg);    
    padding: 10px;
    padding-bottom: 0;
}

.recommend-product-list h1{
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-bottom: 25px;
}

.recommend-product-box a{
    text-decoration: none !important;
    outline: none !important;
}
.recommend-product-box .picture-box{
    height: 160px;
}


.new-label{
    position: absolute;
    top: 15px;
    left: 15px;
    background: black;
    color: white;
    padding: 5px 10px;
    font-size: var(--small-font-size);
    z-index: 10;
}

.strikePrice{
    text-decoration: line-through;
    text-decoration-color: #787878;
    position: absolute;
    font-size: 10px;
    opacity: .5;
    white-space: pre;
    font-weight: 300;
    padding-left: 5px;  
}

.relative-price .strikePrice{
    position:relative !important; 
    top: 0px !important;
}

.discountedPrice{
    position: relative;
    font-weight: 700;
    color: black; 
}

.out-of-stock{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    width: 100%;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.out-of-stock span{
    color: white !important;
    font-size: 18px;
}



.loader{
    background: white;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1000000;
    position: fixed;
}

.loader-bg{
    width: 90px;
}

.loader-love{
    position: absolute;
    margin-left: 0px;
    margin-top: 80px;
    width: 90px;
    animation: loader-animation 2s infinite;
}

@keyframes loader-animation {
    0% {
        transform: rotate(-64deg) scale(0) translate(0px, 0px);
    }
    33% {
        transform: rotate(0deg) scale(1) translate(0, -40px);
    }
    66% {
        transform: rotate(0deg) scale(1) translate(0, -40px);
    }
    100%{
        transform: rotate(-150deg) scale(0) translate(0px, 00px);
    }
}


.material-scrolltop {
    bottom: 150px;
    right: 18px;
    cursor: pointer;
    background-color: var(--primary-theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    box-shadow: 0px 0px 2px #8078a3 !important;
}

.material-scrolltop.reveal {
    width: 48px !important;
    height: 48px !important;
    border-radius: 100% !important;
    right: 26px;
    bottom: 130px;
    background-color: #d1cfcf;
}

.material-scrolltop:hover {
    background-color: var(--primary-theme-color);
}

.material-scrolltop svg {
    object-fit: contain;
    color: #fff;
}

/**
* material-scrolltop
*
* Author: Bartholomej
* Website: https://github.com/bartholomej/material-scrolltop
* Docs: https://github.com/bartholomej/material-scrolltop
* Repo: https://github.com/bartholomej/material-scrolltop
* Issues: https://github.com/bartholomej/material-scrolltop/issues
*/
.material-scrolltop {
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    bottom: 23px;
    right: 23px;
    padding: 0;
    overflow: hidden;
    outline: none;
    border: none;
    border-radius: 2px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    cursor: hand;
    border-radius: 50%;
    background: #4caf50;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    -ms-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1); }
    .material-scrolltop:hover {
      background-color: #4caf50;
      text-decoration: none;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 3px 15px rgba(0, 0, 0, 0.5); }
    .material-scrolltop::before {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      content: '';
      width: 0;
      border-radius: 100%;
      background: #67bb6a; }
    .material-scrolltop:active::before {
      width: 120%;
      padding-top: 120%;
      -webkit-transition: all 0.2s ease-out;
      -ms-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .material-scrolltop.reveal {
      width: 56px;
      height: 56px; }
    .material-scrolltop span {
      display: block;
      font-size: 25px;
      color: #fff; }
  
  .material-scrolltop, .material-scrolltop::before {
    background-image: url(icons/top-arrow.svg);
    background-position: center 50%;
    background-repeat: no-repeat; }
  

.topbar{
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}
.topbar.scrolled {
    box-shadow: 0 1px 4px #cbcccd;
}

.topbar.scrolled.megaon {
    box-shadow: none;
}

.topbar.scrolled .link-click h5,
.topbar.scrolled .options-login,
.topbar.scrolled .options-localization {
    opacity: 0.5;
    transition: 0.5s;
}

.topbar.scrolled .link-click h5:hover,
.topbar.scrolled .options-login:hover {
    opacity: 1;
    color: #5c24e9;
    transition: 0.5s;
    box-shadow: none;
}

.topbar.scrolled .options-localization:hover {
    opacity: 1;
    transition: 0.5s;
    box-shadow: none;
}

.topbar.scrolled .options-signup {
    border: 1px solid #5c24e9;
    color: #5c24e9;
}



/* ------------------------------------------------------------------------------
Chat Popup
-------------------------------------------------------------------------------*/

.chatHead-content {
    display: none;
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
}

.chatHead-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0px;
}

.chatHead-content p {
    font-size: 14px;
    opacity: 0.4;
}

#chatToggle {
    z-index: 20;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    position: relative;
    transition: 0.4s all;
    padding-right: 0;
    padding-left: 0;
}

#chatToggle:hover{
    box-shadow: none;
}

#chatToggle img {
    width: 100%;
    border-radius: 100%;
    transition: 0.4s all;
    box-shadow: 0 0 3px #c9c9c9;
}

#chatToggle img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px #c9c9c9;
}

#chatHeadWidget {
    position: fixed;
    right: -150px;
    bottom: 50px;
    float: right;
    border: none;
    cursor: pointer;
    z-index: 10;
}

#chatHeadTooltips {
    width: auto;
    position: absolute;
    top: 50%;
    transform: translate(-105%, -50%);
    background: white;
    padding: 10px 30px;
    border-radius: 69px;
    box-shadow: 1px 1px 5px #c9c9c9;
    transition: 1s all;
    opacity: 1;
}
#chatHeadTooltips p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 1s all;
    margin: 0;
    font-size: 14px;
}

div#chatHeadTooltips:after {
    border-style: solid;
    border-width: 10px 0 10px 13.3px;
    border-color: transparent transparent transparent #ffffff;
    content: "";
    position: absolute;
    right: -8px;
    top: 33%;
}

#chatHeadTooltips.off {
    opacity: 0;
}
#chatHeadTooltips.off p {
    width: 0px !important;
    opacity: 0;
}

.loaded {
    animation: off-screen 1s forwards;
    animation-delay: 0.5s;
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

#chatOption {
    position: absolute;
    top: 0;
    width: 70px;
    display: flex;
    justify-content: center;
}

.chathead-item {
    width: 50px;
    height: 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    transition-timing-function: cubic-bezier(1, 0.1, 1, 1);
    opacity: 1;
}

.chathead-item:hover{
    box-shadow: none;
}

.chathead-item img {
    transition: 0.4s all;
    box-shadow: 0px 0px 3px #e6e6e6;
    border-radius: 100%;
    width: 100%;
}
.chathead-item img:hover {
    transform: scale(1.3);
    box-shadow: 0px 0px 5px #e6e6e6;
}

#chatOption.off .chathead-item {
    top: 0px !important;
    opacity: 0;
}

.hide-fb-dialog {
    min-height: 0px !important;
    max-height: 0px !important;
}

@keyframes off-screen {
    from {
        right: -150px;
    }
    to {
        right: 25px;
    }
}

/* fb chat box reposition */
.fb-customerchat > span  iframe{
    bottom: 0px !important;
    right: 70px !important;

}
.fb_dialog_content > iframe{
    bottom: 0px !important;
    right: 70px !important;
    display: block !important;
    position:inherit !important;
    margin: 0px !important;
    box-shadow: none !important;
    transition: 0.3s all !important;
}

.fb_dialog_content:hover{
    transform: scale(1);
}


.fb_dialog_content 
{
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
   position:inherit !important;
   background-color: transparent !important;
   transform: scale(0.88);
} 

.fb_dialog{
    position:inherit !important;
   background-color: transparent !important;
   margin-top:15px;
} 


/* prevent all iframe scaled by above hover icon function  */
.chathead-item iframe:hover {
    transform: scale(1);
}

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

    #mobileNav.collapse.active{
        width: 40vw;    
    }
    
}
@media screen and (max-width: 1195px) {
    .circle-container{
        transform: translate(-67%,-50%) scale(0.8) !important;
    }
    .cr{
        transform: translate(-50%,-50%) scale(0.8) !important; 
    }
    .filter-btn-section{
        margin-top: 15% !important;
    }
    .sort-section{
        margin-top:-8%;
    }
    .desktop{
        display: block;
    }
    .mobile{
        display:none;
    }
    
    #mobileNav.collapse.active{
        width: 45vw;    
    }
}
@media screen and (max-width: 992px) {
    .imgs{
        height: 120px !important;
        background-size: contain !important; 
    }
    .sol{
        margin-top: 50px !important;
    }
    .wave-section-img{
        background-attachment: initial !important;
    }
    .club-banner2{
        display: block !important;
        text-align: center;
        margin-top: 15vh;
    }
    .club-content{
        max-width: 70% !important;
        margin-top: 10vh !important;
    }
    .club-banner2 img{
        width: 60%;    
    }
    .club-banner, .shadow{
       display: none !important;
    }
    .navbar-brand.mobile{
        display: block !important;
    }
    .navbar-brand.desktop{
        display: none !important;
    }
    .close-toggle{
        display: block;
        position: absolute;
        top: 5vh;
        right: 8%;
        background: none;
        font-size: 24px !important;
        font-weight: 700 !important;
    }
    #academyDropdownMenu{
        display: none;
    }
    #academyDropdownMenu.show{
        display: block;
        max-height: 500px !important;
        width: 80%;
        margin: auto;
        margin-left: 12px;
        margin-top: 15px;
    }
    #navbarNavRight ul li{
        margin-bottom: 25px !important;
    }
    #navbarNavRight ul li.main button{
        width: 95%;
        margin: 0;
    }
    #navbarNavRight ul li.main {
        margin-top: 1em;
    }

    ul.navbar-nav{
        margin-top: 15vh !important;
    }
    #navbarNavRight{
        transition: 0.4s all;
        display: block;
        margin-left: -200vw;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 10000;
    }
    #navbarNavRight.expand{
        margin-left: 0;
    }
    .circle-container{
        transform: translate(-67%,-50%)!important;
    }
    .cr{
        transform: translate(-43%,-50%) !important; 
    }

    .wave-section-img{
        width: 350px !important;
        height: 350px !important;
    }
    .wave-section .container{
        margin-left:250px !important;
    }

    .contact_detail_title{
        margin-top: 80px;
    }
    #mobileNav.collapse.active{
        width: 100vw;    
        max-width:none;
    }
    .filter-btn-section{
        padding: 0 170px !important;
    }
    .category-item{
        height: 25rem ;
    }
    .feed-item .feed-icon{
        top:80% !important;
    }
    .custom-navbar ul li{
        margin-left:0;
    }
    .custom-navbar ul {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    #mobileNav.collapse.show{
        display: flex !important;
    }
    .mobile-nav{
        display:block !important;
    }
    .navbar-toggler{
        padding: .25rem .75rem !important;
    }
    .navbar-toggler.mobile-toggler{
        padding-left:0px !important;
    }
    
    .desktop-nav{
        display:none !important;
    }
    #cartModal{
        padding:0 !important;
    }
    #cartModal .modal-dialog{
        max-width:80% !important;
    }
    .checkout-container .title small{
        max-width: 90% !important;
    }
    #reviewSection{
        margin-top:15px !important;
    }
    
    #announcementModal .slick-dots {
        padding-bottom: 30px !important;   
    }
    
    .highlight_d h1, .highlight_d h2, .highlight_d h3, .highlight_d h4, .highlight_d h5 {
        word-wrap: break-word !important;
    }
    
    .social-section-link {
        width: 60% !important;
    }
    
    .menu-section .profile-header {
        display: flex !important;
        max-width: 100% !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .menu-section .profile-header-hr {
        display: none !important;
    }
    
    .menu-section .profile-header .profile-header-details {
        display: flex !important;
        flex-direction: column !important;
        margin-left: 0;
        text-align: center;
    }
    .profile-header .point{
        margin:auto;
    }
    
    .menu-section .menu-list {
        display: flex!important;
        flex-wrap: nowrap !important;
        margin-top: 30px!important;
        margin-bottom: 30px!important;
    }
    
    .menu-section .menu-list li{   
       flex:1 !important;
    }
    .menu-section .menu-list i{
        margin: 0 !important;    
        margin-bottom: 5px !important;
    }
    .menu-list a{
        padding: 15% 5%;
        text-align: center;
        height: 100%;
        justify-content: center;
        align-items: center;
        border-radius: 9px;
        line-height: initial;
        display: flex;
        flex-direction: column;
        min-height: 80px !important;
        font-size: var(--small-font-size) !important;
    }
    .menu-list a.active{
        background: rgba(0,0,0,.05);
        font-size: var(--link-font-size) !important;
    }
    .profile-header img {
        max-width: 60px !important;
        margin-bottom: 0 !important;
    }
    
    .history-area .title{
        margin-bottom: 20px !important;
    }
    
    .promo-area .stamp {
        width: 100% !important;
    }
    
    .profile-area-hr {
        display: none;
    }
    
    .search-input {
        max-width: 100% !important;
    }
    
    .content {
        padding-top: 0 !important;
        margin-top: 30px !important;
    }
    
    .product-button-section button {
        margin-bottom: 20px !important;
    }
    
    .lSSlideOuter .lSPager.lSGallery {
        width: 100% !important;   
    }
    
    .lSSlideOuter .lSPager.lSGallery li {
        margin-bottom: 20px;
        margin-right: 20px !important;
    }
    
}

@media screen and (max-width: 770px) {
    .circle-container{
        transform: translate(-76%,-50%) scale(0.8) !important;
    }
    .cr{
        transform: translate(-50%,-50%) scale(0.8) !important; 
    }
    .circle-container{
        transform: translate(-67%,-50%) scale(0.7);
    }
    .club-content{
        max-width: 80% !important;
    }
    .services-item button{
        opacity: 1 !important;
        margin-bottom: 50px !important;
    }
.services-box{
    flex-direction: column;
}
    .wave-section-img{
        width: 250px !important;
        height: 250px !important;
    }
    .wave-section .container{
        margin-left:150px !important;
    }
    .wave-section p{
        max-width: 80% !important;
        margin-left:0px !important;
    }


    .landing-image{
        order:1;
    }
    .zxc{
        order:2;
    }
    .landing-image img{
        width: 100% !important;
    margin-top: -5%;
    margin-bottom: 50px;
    }


    .code-section{
        min-width: 100% !important;
    }
    .collection-container form{
        width:100% !important; 
    }
    .fav-item-box{
        max-height: 120px !important;
        position: relative !important;
    }
    .collection-button-section{
        margin-bottom: 25px;
    }
    .fb-customerchat iframe{
        left:0 !important;
    }
    .profile-col{
        padding:0;
    }
    #chatHeadWidget {
        bottom: 10px !important;
    }
    #mobileNav.collapse.active{
        width: 100vw;    
        max-width:none;
    }
    .guideline-panel{
        display:none;
    }
    .content-section{
        width:80%  !important;
    }
    .filter-content .content-section{
        width: 100% !important;
    }
    .filter-content .product-item .image-section{
        background-size: cover !important;
    }
    .filter-btn-section{
        margin-top: 20% !important;
    }
    .sort-section{
        margin-top:-10% !important;
    }
    .filter-btn-section{
        padding: 0 !important;
    }
    #cartModal .modal-dialog{
        max-width:90% !important;
        margin: auto !important;
        margin-top: .5rem !important;        
    }
    #cartModal .modal-body{
        width: 90% !important;
    }
    .banner-image video {
        position: relative !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
        top: 0 !important;
    }
    .faq-search-bar {
        flex-direction: column !important;   
        align-items: flex-start !important;
    }
    .botton::before{
        width: 50px !important;
    }
    .faq-search-bar .page-title {
        display: block !important;   
    }
    .faq-search-bar .input-group {
        width: 100% !important;
        margin-top: 20px !important;
    }
    .product-area #imageGallery {
        height: 233px !important;
    }

}
@media screen and (max-width: 660px) {
    footer .footer-info {
        line-height: 30px !important;
    }

    
    .cart-item .picture-box {
        margin-top: 20% !important;   
        margin-bottom: 10px !important;
        background-size: contain !important;
    }
    
    .cart-item .picture-box-video {
        display: block !important;
    }
    
    .picture-box-video video {
        position: relative !important;
        min-width: auto !important;
    }
    .fav-item-section video{
        max-height: 100px !important;
    }
    #cartFooter {
        align-items: baseline !important;
    }
    
    .checkout-section a {
        display: none !important;
    }
    
    .checkout-cart-item .picture-box {
        height: 150px !important;
        background-size: contain !important;
    }
    
}

@media screen and (max-width: 575px) {
 
    ul li.sub::after{
        width: 50px !important;
        right: unset !important;
        left: 12px !important;
    }

   
    .circle-container{
        transform: translate(-82%,-50%) scale(0.6) !important;
    }
    .cr{
        transform: translate(-50%,-54%) scale(0.6) !important;
    }
    .container{
        width: 90% !important;
    }
    .ste{
        flex-wrap: wrap;
    }
    .ste-i{
        flex: 50% !important;
        margin-bottom: 15px;
    }
    .club-content{
        max-width: 90% !important;
    }
    .sorder-2{
        order:2;
    }
    .sorder-1{
        order:1;
    }


    .tp2,.tp1{
        display: none !important;
    }
    .wave-section .container{
        margin-left: 50px !important;
    }
    .wave-section h1{
        margin-top: 50px !important;
    }
    .cooperation-slider .slider-item img{
        margin-bottom: 25px;
    }
    footer b{
        margin-top: 25px;
    }
    .desktop{
        display: none;
    }
    .mobile{
        display:block;
    }
   .feed-section .col-4{
        padding: 0 !important;
        margin: 0;
   }
   .feed-item{
       margin-bottom:0 !important;
   }
   .feed-item .feed-image{
       border-radius:0 !important;
   }
    #cartModal .cart-item{
        flex-direction:column;
    }
    #cartModal .cart-item-content{
        padding-left:0 !important;
    }
    #cartModal .modal-dialog{
        max-width:95% !important;    
        width:95% !important;    
    }
    #cartModal .delete-cart-btn{
        top: 20px !important;
        right: 20px  !important;
        background: rgba(0,0,0,0.4);
        border-radius: 100%;
        width: 25px;
        height: 25px;
        line-height: 27px;
        padding: 0;
        color: white;
        font-size: 9px;
        text-align: center;
    }
    #loginModal .modal-body{
        width:85% !important;
    }
    #cartModal .modal-body{
        width: 95% !important;
    }
    .feed-item .feed-icon{
        top:initial !important;
        left: 5px !important;
        bottom: 5px !important;
        width:15px !important;
    }
    .no-fav{
        max-width:90%;
    }
    .content-section{
        width:90%  !important;
    }
    .product-item:hover  .product-btn-section{
        margin-bottom: 0%;
        opacity: 0;
        z-index: 0;
    }
    .product-item:hover  .product-btn-section .add-fav-btn{
        margin-left:0%;
        margin-top: 0;
    }
    .product-item:hover  .product-btn-section .purchase-btn{
        margin-left:0%;
        margin-top: 0;
    }
    .fav-item-box{
        border:none !important;
    }
    .filter-btn-section{
        margin-top: 25% !important;
    }
    .sort-section{
        margin-top:-15% !important;
    }
    .profile-section{
        margin: 0 !important;
        width: 100% !important;
        padding: 15% 8% !important;
    }
    .category-item-section{
        padding:0;
    }
    .category-item{
        height: 20rem ;
    }
    .category-section, .product-section, .social-section{
        padding-top:50px !important;
    }
    .banner-section .row, .banner-section .col-12{
        padding:0 !important;
    }
}
@media screen and (max-width: 500px) {
    .botton::before{
        width: 0 !important;
    }
    .shipping-address-item ,.add-address-btn{
        width:100% !important;
    }
    .banner-image{
        height: 30vh ;
    }
    .category-section .row{
        margin-bottom:0 !important;
    }
    .category-content-box .title{
        font-size:14px !important;
    }
    .category-content-box .sub-title{
        font-size:10px !important;
    }
    .category-section h1{
        display:block !important;
    }
    .product-item .content-section .name{
        font-size:12px !important;
    }
    .product-title{
        font-size:22px !important;
    }
}
@media screen and (max-width: 380px) {
   
    
}
@media screen and (max-width: 320px) {

}
