

html {
    height: 100%;
}

body {
    min-height: 100%;
    height: auto;
    overflow-y: auto;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
    -webkit-touch-callout: none;
}


/* primary colors */
.bg-primary,
.badge-primary {
    background-color: #0D76FF !important
}

.text-primary {
    color: #0D76FF !important
}

.text-default {
    color:  !important
}

.bg-primary-light {
    background-color: #CEE3FF !important
}

.bg-success,
.badge-success {
    background-color: #00BE7D !important
}

.text-success {
    color: #00BE7D !important
}

.bg-succss-light {
    background-color: #C0E9DB !important
}

.bg-warning,
.badge-warning {
    background-color: #000 !important
}

.text-warning {
    color: #FFC400 !important
}

.bg-warning-light {
    background-color: #FFF0C1 !important
}

.bg-orange,
.badge-orange {
    background-color: #FF6F00 !important
}

.bg-orange-light {
    background-color: #FFE5D1 !important
}

.bg-grey,
.badge-grey {
    background-color: #999999 !important
}

.bg-grey-light {
    background-color: #BBBBBB !important
}

.text-white a {
    color: #ffffff !important
}

.row.proh {
    position: relative;
    overflow-x: hidden;
}

.text-mute {
    opacity: 0.8;
}

.wrapper {
    height: auto;
    width: 100%;
    position: relative;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    margin-left: 0;
    z-index: 1;
    min-height: 100vh;
    padding-bottom: 80px;
}

p.small {
    line-height: 1.45em;
}

p:last-child {
    margin-bottom: 0;
}

sup {
    top: -.2em;
}

.background {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    opacity: 0.4;
    z-index: 0;
}

.background + div {
    position: relative;
    z-index: 1
}

/* sideabr  */
body.menuactive {
    overflow: hidden;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
}

html.menuactive {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body.menuactive .wrapper {
    overflow: hidden;
    height: 100vh;
}


body.sidemenu-open .wrapper {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    margin-left: 240px;
    border-radius: 10px;
}

body.sidemenu-open .wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 10;
    cursor: pointer
}

.sidebar {
    position: absolute;
    padding-top: env(safe-area-inset-top);
    width: 250px;
    height: 100%;
    z-index: 0;
    left: -260px;
    top: 0;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    overflow-y: auto;
}


.sidebar .main-menu .list-group-item {
    background-color: transparent;
    font-size: 16px;
    border: 0;
    border-radius: 10px;
}

.sidebar .main-menu .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar .main-menu .list-group-item.active {
    background-color: rgba(255, 255, 255, 0.25);
}

body.sidemenu-open .sidebar {
    left: 0;
}


.sidebar .figure-menu {
    height: 100px;
    width: 100px;
    border-radius: 50px;
    padding: 5px;
    display: block;
    margin: 45px auto 20px auto;
    background-color: #ffffff;
}

.sidebar .figure-menu figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.sidebar .figure-menu figure img {
    width: 100%;
}

/* Loader css */
.breadcrumb-item.active {
    color: #b9b9b9;
}

/* Loader css */
.laoderhorizontal {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.laoderhorizontal div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.laoderhorizontal div:nth-child(1) {
    left: 6px;
    animation: laoderhorizontal1 0.6s infinite;
}

.laoderhorizontal div:nth-child(2) {
    left: 6px;
    animation: laoderhorizontal2 0.6s infinite;
}

.laoderhorizontal div:nth-child(3) {
    left: 26px;
    animation: laoderhorizontal2 0.6s infinite;
}

.laoderhorizontal div:nth-child(4) {
    left: 45px;
    animation: laoderhorizontal3 0.6s infinite;
}


@keyframes laoderhorizontal1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes laoderhorizontal3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes laoderhorizontal2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}

.btn-loader {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.btn-loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 3px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: btnloader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #ffffff transparent transparent transparent;
}

.btn-loader div:nth-child(1) {
    animation-delay: -0.45s;
}

.btn-loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.btn-loader div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes btnloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    background-color: ;
}

/* introduction swiper slider css */
.banner-swiber {
    height:auto;
}

.demo-swiper .swiper-slide,
.swiper-init .swiper-slide {
    background-color: #ffffff
}

.demo-swiper .swiper-slide,
.swiper-init .swiper-slide {
    background-size: cover
}

.demo-swiper-gallery-top {
    height: 350px;
    margin-top: 30px;
}

.demo-swiper-gallery-top .swiper-slide {
    background-size: cover
}

.demo-swiper-gallery-thumbs {
    height: 80px;
}

.demo-swiper-gallery-thumbs .swiper-slide > div {
    height: 100%;
    width: 100%;
    background-size: cover;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000000;
}

.introduction.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 35px;
    margin-bottom: env(safe-area-inset-bottom);
}

.introduction .swiper-slide {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-top: env(safe-area-inset-bottom);
}

.right-image {
    position: absolute;
    z-index: 0;
    right: 0;
    top: auto;
    bottom: auto;
    height: 600px;
}

.right-image + div {
    z-index: 1
}

.orange-slice {
    margin-right: -200px;
}

.pinapple {
    margin-right: -120px;
}

.banana {
    margin-right: -190px;
}

.apple {
    margin-right: -280px;
}


/* form elements */
select.form-control option,
select.form-control optgroup {
    color: #000000
}

.form-control:focus {
    box-shadow: none;
    -ms-box-shadow: none;
}

.form-control::placeholder {
    color: #919399;
}

.float-label {
    padding-top: 15px;
    position: relative;
}

.form-group .form-control-label {
    font-size: 13px;
    line-height: 18px;
    color: #919399;
}

.float-label .form-control-label {
    position: absolute;
    left: 0;
    top: 24px;
    margin: 0;
    line-height: 20px;
    color: #919399;
    font-size: 15px;
    transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
    -moz-transition: ease all 0.5s;
    z-index: 0;
}

.float-label .form-control,
.float-label .chosen-container .chosen-choices,
.float-label .chosen-container .chosen-single {
    background-color: transparent;
    border-width: 0 0 1px 0;
    border-radius: 0;
    z-index: 1;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    background-image: none;
}

.float-label .form-control:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    outline: none;
}

.float-label .form-control:focus + .form-control-label,
.float-label.active label {
    top: 0;
    font-size: 13px;
    line-height: 20px;
}

.form-control-lg {
    font-size: 18px;
}

.search {
    border-radius: 30px;
    background: url('../img/search.png') no-repeat center right #fff;
    border-color: #ffffff;
}

.chosen-container-active .chosen-choices,
.chosen-container .chosen-single,
.chosen-container-active.chosen-with-drop .chosen-single {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}

.chosen-container-multi .chosen-choices,
.chosen-container .chosen-single {
    padding: 5px;
    height: auto;
    border-color: #ced4da;
}

.chosen-container-multi .chosen-choices li.search-choice,
.chosen-container .chosen-single li.search-choice {
    position: relative;
    padding: 5px 25px 5px 15px;
    line-height: 18px;
    border: 0px none;
    border-radius: 30px;
    background-image: none;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    outline: none;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    top: 8px;
    right: 6px;
    width: 12px;
    height: 12px;
    border-radius: 20px;
    padding: 5px;
}

.chosen-container.chosen-with-drop .chosen-drop {
    border: 0;
}

.chosen-container .chosen-results li.highlighted {
    background-image: none;
}

/* button */
.btn {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    border-width: 0;
}

[class*="outline"] {
    border-width: 1px;
}

body a.btn-primary,
body a.btn-warning,
body a.btn-danger,
body a.btn-success {
    color: #ffffff;
}

.btn-lg {
    padding: .815rem 1.5rem;
}

.btn-sm {
    font-size: 14px;
}

.btn i,
.btn span,
a i {
    vertical-align: middle
}

.btn img {
    max-width: 20px;
    vertical-align: middle;
}

.btn:focus {
    box-shadow: none;
    -ms-box-shadow: none;
}

.btn i:first-child {
    margin-right: 5px;
    margin-left: -4px;
}

.btn i:last-child {
    margin-left: 5px;
    margin-right: -4px;
}

.btn i:last-child:first-child {
    margin-left: 0px;
    margin-right: 0px;
}

.button-rounded-54 {
    height: 54px;
    width: 54px;
    line-height: 50px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 28px;
}

.button-rounded-36 {
    height: 36px;
    width: 36px;
    line-height: 32px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 28px;
}

.button-rounded-26 {
    height: 26px;
    width: 26px;
    line-height: 22px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 13px;
}

.float-bottom-right {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    margin-bottom: env(safe-area-inset-bottom);
}

.btn-rounded {
    border-radius: 30px;
}

.btn-rounded-15 {
    border-radius: 15px;
}

.btn-default,
body .btn.btn-secondary {
    color: #ffffff
}

.btn-warning {
    background-color: #FFC400;
    color: #ffffff;
}

.btn-warning:focus,
.btn-warning:active,
.btn-warning:hover {
    background-color: #f0b000;
    color: #ffffff !important;
}

.btn.btn-link-default {
    color: #bbbbbb;
}

.btn.shadow-sm {
	-webkit-appearance: none;
    box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
    -webkit-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
    -moz-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
    -ms-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
}

.btn.shadow-xs {
    box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
    -webkit-box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
    -moz-box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
    -ms-box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
}

.btn-light,
body a.btn-light {
    background-color: #ffffff;
    color: #999999;
}

.btn-light-grey,
body a.btn-light-grey {
    background-color: #E3EAF1;
    color: #BBBBBB;
    border-color: #F3F6F8
}

.btn-group > .btn:first-child,
.btn-group > .btn:first-of-type,
.btn-group > .btn-group:first-child > .btn {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.btn-group > .btn:last-child,
.btn-group > .btn:last-of-type,
.btn-group > .btn-group:last-child > .btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}


.btn h6,
.btn h5,
.btn h4,
.btn h3,
.btn h2,
.btn h1 {
    vertical-align: middle
}

.vm {
    vertical-align: middle
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.input-group > .form-control:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.input-group > .form-control:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.input-group > .input-group-prepend > .input-group-text + .input-group-text {
    border-radius: 0;
}

.w-45 {
    width: 45px !important;
    text-align: center
}

.w-35 {
    width: 35px !important;
    text-align: center
}

.input-group.input-group-sm > .form-control {
    height: calc(1.6em + .5rem + 2px);
    border-color: #E3EAF1;
}

.border-top-dashed {
    border-top: 2px dashed #e3ead7 !important;
}

.progress {
    background-color: rgba(0, 0, 0, 0.05)
}

/* heights  */
.h-2 {
    height: 2px;
}

.h-4 {
    height: 4px;
}

.h-6 {
    height: 6px;
}

.h-8 {
    height: 8px;
}

.h-10 {
    height: 10px;
}

/* popover  */
.popover {
    border: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
}

/* Notifications  */
.new-notification {
    height: 10px;
    width: 10px;
    border-radius: 6px;
    background-color: ;
    display: block;
    position: absolute;
    top: 23px;
    right: 5px;
    border: 2px solid #ffffff;
}

/* List items  */
.list-items {
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
}

.list-items li {
    margin-bottom: 5px;
    border-radius: 10px;
    background-color: #eef2f5;
    width: 100%;
    display: block;
    padding: 10px 15px;
    line-height: 20px;
}

.list-items li:last-child {
    margin-bottom: 0
}

.list-group .list-group-item {
    padding: 0.75rem 15px;
}

/*.list-group .list-group-item:hover {
    background-color: ;
}

.list-group .list-group-item:hover * {
    color: #FFFFFF !important
}
.list-group .list-group-item:hover .form-control{
    color: #000000 !important ;
}*/
.list-group-item.active {
    z-index: 2;
    color: #343a40;
    background-color: #e3eaf1;
    border-color: #ffffff;
}

.list-group-item.active:hover * {
    color: #343a40 !important;
}

/* Nav tabs  */
.nav-tabs {
    z-index: 0;
    border: 0;
    margin-bottom: -11px;
}

.card .card-header .nav-tabs {
    margin-bottom: -1px;
    text-align: center
}

.card-img:first-child {
    border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-link {
    padding: 15px 15px 25px 15px;
    border: 0;
    border-radius: 15px 15px 0 0;
}

.card .card-header .nav-tabs .nav-link {
    padding: 15px;
}

.nav-tabs .nav-link.active {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -ms-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.card .card-header .nav-tabs .nav-link.active {
    box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
    -ms-box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
}

.card .card-header {
    border: 0;
    border-radius: 14px;
}

.card .card-footer {
    border: 0;
    border-radius: 0 0 12px 12px;
}

.card .card-header .card-title {
    margin-bottom: 0;
}

.tab-content {
    position: relative;
    z-index: 1;
}

.tab-content .tab-pane {
    padding: 5px;
    background-color: #ffffff;
    box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    -ms-box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    border-radius: 15px;
}

.card .tab-content .tab-pane {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}

/* Notification */
.notification {
    padding: 15px;
    background-color: #ffffff;
    position: fixed;
    top: -80%;
    width: 84%;
    max-width: 400px;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-left-width: 3px;
    border-left-style: solid;
    z-index: 10;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    border-radius: 10px;
    overflow: hidden;
}

.notification.active {
    top: 80px;
    opacity: 1;
}

.notification.bottom {
    bottom: -80%;
    opacity: 0;
    top: auto;
}

.notification.bottom.active {
    bottom: 80px;
    opacity: 1;

}

/* header */

.header {
    width: 100%;
    height: auto;
    position: fixed;
    padding: env(safe-area-inset-top);
    top: 0;
    left: 0;
    z-index: 9;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
}

.header.active {
    /*box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);*/
}

.header-logo {
    height: auto;
    max-height: 48px;
    display: inline-block;
    vertical-align: middle;
    margin: 6px auto 0px auto;
}

.header .btn {
    height: 54px;
    width: 54px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
}

.header + div {
    padding-top: 54px;
}


/* footer */
.footer {
    width: 100%;
    height: auto;
    position: fixed;
    padding: env(safe-area-inset-bottom);
    bottom: 0;
    left: 0;
    z-index: 9;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: saturate(125%) blur(10px);
    -moz-backdrop-filter: saturate(125%) blur(10px);
    -ms-backdrop-filter: saturate(125%) blur(10px);
    backdrop-filter: saturate(125%) blur(10px);
}


.footer .btn {
    width: 60px;
    height: 60px;
    line-height: 54px;
    padding: 0;
    text-align: center;
    display: block;
    vertical-align: middle;
}

.footer .btn i {
    width: 22px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle
}

.footer .centerbutton {
    height: 60px;
    line-height: 54px;
    width: 60px;
    border-radius: 30px;
    margin: 0;
    margin-top: -20px;
}

/* page specific */
.subtitle {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.subtitle span {
    vertical-align: middle;
    display: inline-block;
    line-height: 26px;
    border-bottom: 2px solid #ffffff;
}

.logo-small {
    width: 122px;
}

.form-signin {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 20px;
    margin: 30px auto;
    max-width: 320px;
}

/* product */

.small-slide {
    height: 150px;
}

.small-slide .swiper-slide {
    width: 165px;
    padding-bottom: 10px;
    padding-right: 15px;
}

.small-slide .swiper-slide .card {
    border-radius: 15px;
    margin-left: 15px;
    height: 100%;
    width: 92%;
}

.small-slide .swiper-slide .card-body {
    position: relative
}

.small-slide .swiper-slide .small-slide-right {
    max-height: 100%;
    margin-right: -45px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.badge {
    border-radius: 30px;
    font-weight: 400;
    padding-left: 10px;
    padding-right: 10px
}

.product-image {
    border-radius:.25rem;
    width: 100%;
    display: block;
    text-align: center;
    margin: 10px auto;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
}

.news-slide {
    height: 180px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.news-slide .swiper-slide {
    padding: 0 15px 10px 15px;
}

.news-slide .swiper-slide .card {
    overflow: hidden;
    height: 100%;
    margin: 0;
}

.news-slide.swiper-container-horizontal > .swiper-pagination-bullets {
    margin-bottom: -10px;
}


/* card */
.card {
    border-radius: 15px;
}

.card .card-body {
    padding: 15px;
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

/*  filter */
.filter {
    height: 100%;
    /*width: 280px;*/
    position: fixed;
    right: -345px;
    top: 0;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    z-index: 11;
    padding-bottom: env(safe-area-inset-bottom);
}

.filtermenu-open .filter {
    right: 0;
    box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.25);
}

.filter > .filter-btn {
    border-radius: 30px 0 0 30px;
    width: 40px;
    text-align: left;
    position: absolute;
    left: -39px;
    top: 135px;
}

.text-normal {
    text-transform: none
}

@media screen and (max-width:610px) {
    .filter-group {
        margin-right: 50px;
    }

    .filter > .filter-btn {
        width: 50px;
        left: -49px;
    }
}

.filters-container {
    height: 100%;
    overflow-y: auto;
    width: 100%;
    display: block;
}

/* range slider */
.noUi-target {
    background: #ffffffa1;
    border-radius: 4px;
    border: none;
    box-shadow: none;
}

.noUi-horizontal {
    height: 10px;
}

.noUi-connect {
    background: #000000;
}

.noUi-horizontal .noUi-handle {
    width: 20px;
    height: 20px;
    border-radius: 60px;
}

.noUi-horizontal .noUi-handle:after,
.noUi-horizontal .noUi-handle:before {
    display: none
}

/* progress bar */
.progress-bar {
    border-radius: 10px;
}

.progress-sm {
    height: 8px;
    padding: 2px;
}

/* product details  */
.product-details {
    height: 300px;
}

.product-details {}

.product-details .swiper-slide {
    padding: 20px 15px 40px 15px;
    line-height: 200px;
    text-align: center
}

.product-details .swiper-slide > img {
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;

}


/* avatar */

.avatar {
    border-radius: 200px;
    display: inline-block;
    margin: 0px auto;
    background-color: #ffffff;
    overflow: hidden;
    border: 3px solid #ffffff;
    vertical-align: top;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.avatar img {
    width: 100%;
    vertical-align: top
}

.avatar-20 {
    height: 20px;
    width: 20px;
}

.avatar-40 {
    height: 40px;
    width: 40px;
}

.avatar-60 {
    height: 60px;
    width: 60px;
}

.avatar-80 {
    height: 80px;
    width: 80px;
}

.avatar-100 {
    height: 100px;
    width: 100px;
}

.avatar-120 {
    height: 120px;
    width: 120px;
}

.avatar-50 {
    height: 50px;
    width: 50px;
}

.avatar-70 {
    height: 70px;
    width: 70px;
}

.avatar-90 {
    height: 90px;
    width: 90px;
}

.figure-profile {
    height: 178px;
    width: 178px;
    border-radius: 90px;
    border: 10px solid ;
    margin: 0 auto;
    position: relative;
}

.figure-profile figure {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.figure-profile figure img {
    width: 100%;
    min-height: 100%;
}

.figure-profile > .floating-btn {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    line-height: 38px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 2;
    right: 0px;
    bottom: 0px;
}

.figure-profile .floating-btn i {
    font-size: 22px;
    margin: 0;
}

.float-file {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    opacity: 0
}

.cart_counter {
    height: 20px;
    line-height: 20px;
    width: 20px;
    border-radius: 10px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 13px;
}

pre {
    background: #e8f4ff;
    padding: 15px;
}

.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-dialog-end {
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flexbox;
    display: flex;
    -ms-flex-align: flex-end;
    -moz-flex-align: flex-end;
    -webkit-flex-align: flex-end;
    align-items: flex-end;
    min-height: calc(100% - 3.5rem);
}

/* theme color pink  */

.bg-background,
.list-group-item.active {
    background-color: #E3EAF1
}

.wrapper {
	background-color: #E3EAF1;
    background-image: -moz-radial-gradient(center, ellipse cover, rgba(250, 250, 250, 1) 0%, #E3EAF1 100%);
    background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(250, 250, 250, 1)), color-stop(100%, #E3EAF1));
    background-image: -webkit-radial-gradient(center, ellipse cover, rgba(250, 250, 250, 1) 0%, #E3EAF1 100%);
    background-image: -o-radial-gradient(center, ellipse cover, rgba(250, 250, 250, 1) 0%, #E3EAF1 100%);
    background-image: -ms-radial-gradient(center, ellipse cover, rgba(250, 250, 250, 1) 0%, #E3EAF1 100%);
    background-image: radial-gradient(ellipse at center, rgba(250, 250, 250, 1) 0%, #E3EAF1 100%);
    background-attachment: inherit;
    background-position: center top;
    background-size: 100% 100%;
}

body,
body.sidemenu-open,
.bg-template,
.btn-default,
.custom-control-input:checked ~ .custom-control-label::before,
.small-slide .swiper-slide
.small-slide .swiper-slide .card:focus,
.filter,
.chosen-container .chosen-results li.highlighted,
.page-item.active .page-link,
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.loader-screen {
    background-color: ;
}

.filter,
.filter .form-control,
.filter .form-group label,
.float-label .chosen-container-multi .chosen-choices,
.float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.filter .chosen-container-multi .chosen-choices li.search-choice,
.btn-default,
.sidebar,
.sidebar .main-menu .list-group-item,
.small-slide .swiper-slide .card:focus * {
    color: #ffff !important;
}

.filter .form-group label {
    opacity: 0.85;
}

.btn-default:hover,
.btn-default:focus {
    color: #ffffff;
    background-color:  !important;
}

.figure-profile,
.form-control:focus,
.custom-control-input:focus ~ .custom-control-label::before,
.custom-control-input:checked ~ .custom-control-label::before,
.float-label .form-control:focus,
.page-item.active .page-link,
.btn-outline-default {
    border-color: }

.filter .form-control:focus,
.filter .custom-control-input:focus ~ .custom-control-label::before,
.filter .custom-control-input:checked ~ .custom-control-label::before,
.filter .float-label .form-control:focus {
    border-color: #ffffff
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active,
.bg-template-light {
    background-color: #FFE5F0
}

.text-template,
.btn-link,
a,
.float-label .form-control:focus + .form-control-label,
.btn-light:hover,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active,
.btn.btn-link-default:hover,
.btn.btn-link-default:focus,
.btn.btn-link-default.active {
    color: ;
}

/* media query */



@media screen and (min-width:993px) {
    .sidebar {
        width: 280px;
        left: -290px;
    }
}

@media screen and (min-width:1180px) {
    .sidebar {
        width: 290px;
        left: -300px;
    }
}

@media screen and (max-width:374px) {
    .footer .btn:not(.centerbutton) {
        width: 50px;
    }
}

/* Chrome safari scrollbar */
::-webkit-scrollbar {
    width: 15px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: ;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #e7edf3;
}



/*  CUSTOM */
.offer-slide {
	height: auto;
	margin-bottom: -15px;
}

.offer-slide .swiper-slide {
	padding: 0 15px;
	width: 310px;
}

.offer-slide .swiper-slide > .card {
	margin-bottom: 15px;
}


/* RADIO BTN*/
.radio_nice {
  position: absolute !important;
  opacity: 0 !important;
}
.radio_label {
  position: relative !important;
  display: inline-block !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
  padding-left: 30px !important;
  padding-right: 10px !important;
  line-height: 36px !important;
  cursor: pointer !important;
}
.radio_label::before {
  content: " " !important;
  position: absolute !important;
  top: 6px !important;
  left: 0 !important;
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  border: 2px solid  !important;
  border-radius: 4px !important;
}
.radio_nice + .radio_label::before {
  border-radius: 18px !important;
}
.radio_nice:checked + .radio_label {
  padding-left: 10px !important;
  color: #000 !important;
}
.radio_nice:checked + .radio_label::before {
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 2px solid green !important;
}
/* Transition */
.radio_label,
.radio_label::before {
  -webkit-transition: .25s all ease !important;
  -o-transition: .25s all ease !important;
  transition: .25s all ease !important;
}
/* END RADIO BTN*/



/*---TABLE--*/

.table-card { 
	background:#fff;
	border-radius:.25rem;
	birder:1px solid #eee;
}
.table-card tr img{ 
	width: auto;
	max-height:70px;
	margin:0 auto;
	padding:5px;
	border-radius:10px;
}
/*--END TABLE--*/


/*--ПУЛЬСАЦИЯ--*/
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.pulse {
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
}
/*--END ПУЛЬСАЦИЯ--*/

/*--Подскакивание для категорий блюд на ПК версии--*/
@media (min-width: 1040px) and (min-width: 640px){
	.sizeup:hover {
		transform: scale(1.02);
		transition: transform .3s;
		-webkit-transition: all .3s;
	}
	
	.category:hover {
		transition: transform .2s;
		transform: translateY(-5px);
	}
	
	.card_product:hover {
		box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.10) !important;
	}
}
/*--END Подскакивание для категорий блюд--*/


/*--Модальное окно во весь экран--*/
@media (max-width: 767.98px) {
  .modal-fullscreen-sm {
    padding: 0 !important;
  }
  .modal-fullscreen-sm .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm .modal-content {
    height: 100%;
    border-radius: 0;
  }
  .modal-fullscreen-sm .modal-body {
    overflow-y: auto;
  }
  
  ::-webkit-scrollbar { /* chrome based */
		width: 0px;
		background: transparent;
  }
  
  .modal_product_image{
	  border-radius: 0 !important;
  }
}
/*--END Модальное окно во весь экран--*/


/*--для того чтобы убрать скролл описания в модульном окне на мобилке--*/
@media screen and (min-width: 767.98px){
	.modal-product-scroll-content{
	  overflow:auto;
	}
}


/*--Переделка Toogle bootsrap--*/
.btn-secondary {
    color: #fff;
    background-color: #99a2ab;
    border-color: #99a2ab;
	box-shadow:0 .225rem .125rem rgba(1,0,0,.175)!important
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle{
	color: #fff;
    background-color: ;
    border-color: ;
}

/*--END Переделка Toogle bootsrap--*/



/*--Анимация увеличения картинки товара--*/
.animated-increase {
    -webkit-animation-duration: 40s;
    -moz-animation-duration: 40s;
    -ms-animation-duration: 40s;
    -o-animation-duration: 40s;
    animation-duration: 40s;
	
	-webkit-animation-name: animated-increase;
    -moz-animation-name: animated-increase;
    -ms-animation-name: animated-increase;
    -o-animation-name: animated-increase;
    animation-name: animated-increase;
	
	-webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes animated-increase{
	0%, 100%{
		-webkit-transform:scale(1.01);-moz-transform:scale(1.01);-ms-transform:scale(1.01);-o-transform:scale(1.01);transform:scale(1.01);
	}
	20%{
		-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1);
	}
	40%{
		-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2);
	}
	60%{
		-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1);
	}
	80%{
		-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2);
	}
}
/*--END Анимация увеличения картинки товара--*/



.category_scroll.active {
	background: ;
	border-radius:10px;
}



/*--Для продуктов, отображение десктор и мобилка--*/
@media screen and (max-width:767px) {
	.desctop_productInfo {
		display: none;
	}
}

@media screen and (min-width:768px) {
	.mobile_productInfo {
		display: none;
	}
}
/*-- END Для продуктов, отображение десктор и мобилка--*/


/* 21. badge new */
.badge-new {
  padding: 7px 15px;
  line-height: 30px;
  font-size: 16px;
  display: inline-block;
  border-radius: 25px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.65);
  cursor:pointer;
}

.badge-new a {
	color: #000;
}

.badge-new:hover{
  color: #FFFFFF;
  background-color: ;
}

.badge-new a:hover {
  color: #FFFFFF;
}

.badge-new.active {
  color: #FFFFFF;
  background-color: ;
}

.badge-new.active a {
  color: #FFFFFF;
}


/*отключение копирования */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/*END отключение копирования*/
