


.square-container{
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff !important;
    font-size: 1.5em;
}

.bi-chevron-right{
    color: var(--first-color);
}

.sidebar_square{
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--second-color);
    color: #fff;
    font-size: 1.1em;
    font-weight: 550;
    padding: 8px;
}

.header {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    position: fixed;
    border-radius: 0 0 24px 24px;
    top: 0;
    box-shadow: none;
    background-color: #fbfbfb;
    height: 60px!important;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.header a{
    font-size: 0.8em;
    color: var(--first-color);
}
.header a img{
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 8px;
}

.main {
    margin: 0 auto;
    display: block;
    height: 100vh !important;
    margin-top: 75px;
}
.mainInner{
    height: 100%;
    width: 100%;
}

#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 250px;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, #fbfbfb 0%, #fbfbfb 100%);
}
.sidebarMenuInner{
    margin:0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li{
    list-style: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
}
.sidebarMenuInner li a{
    color: #333;
    padding: 0 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 100 !important;
    height: 100%;
    width: 100%;
    top: 18px;
    left: 15px;
    height: 22px;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--first-color);
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

.disabled-click{
    pointer-events: none;
}
.menu-shadow{
    box-shadow: 100vw 0px 0px 100vw rgba(0,0,0,0.34);
    -webkit-box-shadow: 100vw 0px 0px 100vw rgba(0,0,0,0.34);
    -moz-box-shadow: 100vw 0px 0px 100vw rgba(0,0,0,0.34);
}
input[type=checkbox] ~ .sidebarIconToggle > .horizontal {
    width: 18px !important;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}



.floatingButtonWrap {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999999999;
}

.floatingButtonInner {
    position: relative;
}

.floatingButton {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    background: -webkit-linear-gradient(45deg, var(--first-color) 0% , var(--second-color) 100%);
    background: -o-linear-gradient(45deg, var(--first-color) 0% , var(--second-color) 100%);
    background: linear-gradient(45deg, var(--first-color) 0% , var(--second-color) 100%);
    color: #fff;
    font-size: 1.3em;
    border-radius: 50% 50%;
    bottom: 0px;
    right: 0px;
    left: 0px;
    border: 5px solid #b2bedc;
    opacity: 0.6;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floatingButton .fa {
    font-size: 15px !important;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
    opacity: 1;
    color: #fff;
}


.floatingButton .fa {
    transform: rotate(0deg);
    transition: all 0.4s;
}

.floatingButton.open .fa {
    transform: rotate(270deg);
}

.floatingMenu {
    position: absolute;
    bottom: 60px;
    right: 0px;
    /* width: 200px; */
    display: none;
}

.floatingMenu li {
    width: 100%;
    float: right;
    list-style: none;
    text-align: right;
    margin-bottom: 5px;
}

.floatingMenu li a {
    padding: 8px 15px;
    display: inline-block;
    background: #ccd7f5;
    color: #6077b0;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s;
    /* -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22); */
    -webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
    box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
}

.floatingMenu li a:hover {
    margin-right: 10px;
    text-decoration: none;
}


.main-search-input-item input{
    padding: 15px;
    background: #02a4bb1a;
    border: none;
    border-radius: 50px;
    width: 100%;
}

.main-search-input-item input:focus{
    border-bottom: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


.card-img, .card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card {
    border-radius: 8px;
}

.swiper {
    width: 100%;
    margin: 0 auto;
    height: 370px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1em !important;
}



.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


.form-control1 {
    height: 25px;
    width: 100%;
    border: none;
    border-radius: 0;
    font-weight: 800;
    padding: 0 0 5px 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    margin: 0;
    font-size: 18px;
    text-align: center;
}

.form-control1:focus {
    box-shadow: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
}

.form-control2 {
    font-size: 14px;
    height: 20px;
    width: 55px;
    border: none;
    border-radius: 0;
    font-weight: 800;
    padding: 0 0 5px 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    margin: 0;
}

.form-control2:focus {
    box-shadow: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
}

.form-control3 {
    font-size: 14px;
    height: 20px;
    width: 30px;
    border: none;
    border-radius: 0;
    font-weight: 800;
    padding: 0 0 5px 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    margin: 0;
}

.form-control3:focus {
    box-shadow: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-muted {
    font-size: 10px;
}

.textmuted {
    color: #6c757d;
    font-size: 13px;
}

.textmuted,
h5,
.text-muted {
    font-family: 'Poppins', sans-serif;
}

.animation-like{
    display: flex;
    justify-content: center;
    align-items: center;

}

.animation-like i{
    font-size: 2.2em;
    color: red;

}

.bi-bag-heart-fill{
    animation:like 0.5s 1;
}


@-webkit-keyframes like {
    0%   { transform: scale(1); }
    90%   { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}


.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
    height: auto !important;
    display: block !important;
    border: 1px solid #f1f1f1 !important;
    background-color: #f1f5fb !important;
}
