@import "normalize.css";
@import "fonts.css";

a {
    color: var(--theme-color);
}
h1 {
    font-size: 20px;
}  
h2 {
    font-size: 16px;
}  
h3 {
    font-size: 15px;
}  
h4 {
    font-size: 14px;
}  
h5 {
    font-size: 13px;
}  
h6 {
    font-size: 12px;
}
button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-family: var(--base-font);
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--theme-color);
}
::-webkit-input-placeholder {
    font-family: sans-serif;
    font-family: var(--base-font);
    color: var(--alter-color);
}
:-ms-input-placeholder { 
    font-family: sans-serif;
    font-family: var(--base-font);
    color: var(--alter-color);
} 
::placeholder {
    font-family: sans-serif;
    font-family: var(--base-font);
    color: var(--alter-color);
}
.content ul > li,
.content ol > li {
    position: relative;
    padding-left: 15px;
}
.content ul > li:not(:last-child),
.content ol > li:not(:last-child) {
    margin-bottom: 4px;
}
.content ul > li:before,
.content ol > li:before {
    content: '\2022';
    position: absolute;
    left: 4px;    
    color: var(--text-color);
}
#jGrowl .ms2-message-success,
#jGrowl  .ms2-message-info {
    background-color: var(--theme-color) !important;
    opacity: 1 !important;
}
#jGrowl .ms2-message-error {
    background-color: #e94a44 !important;
    opacity: 1 !important;
}
body {
    position: relative;
    background: var(--bg-color);
    font-family: sans-serif;
    font-family: var(--base-font);
    font-size: 14px;
    color: var(--text-color);
    min-height: 100vh;
}
body.locked,
body.loading {
    overflow-y: hidden;
}
body.inner-body {
    padding-bottom: 50px;
}
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: 0.45s ease;
}
.loader img {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.loader.shown {
    opacity: 1;
    visibility: visible;
}
.container {
    width: 100%;
    max-width: 870px;    
    margin: 0 auto;
    padding: 0 15px;
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 42px;
    min-width: 240px;
    width: 100%;
    background: var(--btn-color);
    color: var(--btn-text-color);    
    border: none;
    border-radius: 10px;
    font-size: inherit;
    text-align: center;
    text-decoration: none;
}
.btn-second {
    background: var(--bg-color);
    color: var(--theme-color);
}
.color-theme {
    color: var(--theme-color);
}
.color-second {
    color: var(--alter-color);
}
.bg-theme {
    background-color: var(--theme-color);
}
.bg-second {
    background-color: #f3f3f3;
}
.section {
    padding: 25px 0;
}
.section-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}
.section-title {
    font-size: 1.2rem;
}
.section-header-link {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
}
.fav-btn {
    width: 20px;
    height: 20px;
    background-color: #fff;
    background-image: url(../images/icons/heart.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}
.fav-btn.fav-active {
    background-image: url(../images/icons/heart-bold.svg) !important;
}
.field-label {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--alter-color);
    margin-bottom: 5px;
}
.field-item {
    display: block;
    width: 100%;
    background: #f3f3f3;
    border: 1px solid #f3f3f3;
    height: 48px;
    padding: 5px 10px;
    border-radius: 10px;
    transition: 0.35s ease;
}
.field-item:focus {
    border-color: var(--theme-color);
}
.field-block-with-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    gap: 5px;
}
.field-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--alter-color);
}
.form-agreement {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 10px;
    text-align: center;
}
.form-agreement > span {
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--alter-color);
}
.form-agreement > span a {
    color: var(--theme-color);
}
.form-footer {
    font-size: 0.85rem;
    margin-top: 10px;
}
.form-footer-item:not(:last-child) {
    margin-bottom: 5px;
}
.fields-row {
    gap: 10px;
}
.fixed-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    z-index: 999;
}
.fixed-nav-list {
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
    background: #fff;
}
.fixed-nav-list li {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
}
.fixed-nav-link {
    position: relative;
    height: 100%;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.fixed-nav-link svg path {
    fill: var(--alter-color);
    transition: 0.3s ease;
}
.fixed-nav-list li.active .fixed-nav-link svg path,
.fixed-nav-link:hover svg path {
    fill: var(--theme-color);
}
.fixed-nav-list li.active .fixed-nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 2px;
    background: var(--theme-color);
    border-radius: 5px;
    transform: translateX(-50%);
}
header {
    padding: 15px 0;
}
.header-row {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.burger-toggler {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--alter-color);
    border-radius: 50%;
}
.burger-toggler svg {
    display: block;
    fill: var(--text-color);
}
.header-hello {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    color: var(--alter-color);
}
.header-hello b {
    font-size: 1.25rem;
    color: var(--text-color);
}
header .gtsnotify-channel {
    position: relative;
}
.gtsnotify-channel-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--bg-color);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.12);
    padding: 15px 10px;
    list-style: none;
    margin: 0;
    min-width: 260px;
    max-height: 260px;
    border-radius: 10px;
    overflow-y: auto;
}
.gtsnotify-channel-notify {
    font-size: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.gtsnotify-channel-notify:not(:last-child) {
    margin-bottom: 10px;
}
.gtsnotify-channel-notify-remove {
    display: block;
    padding: 0;
    line-height: 1;
    font-size: 0;
    width: 18px;
    height: 18px;
    float: none;
    flex-shrink: 0;
}
.gtsnotify-channel-notify-content {
    flex-grow: 1;
}
.notify-message {
    text-decoration: none;
}
.notify-message-text {
    text-decoration: underline;
}
.notify-message-time {
    font-size: 10px;
    color: var(--alter-color);
    text-decoration: none;
    line-height: 1;
}

.header-notify-toggler {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--alter-color);
    border-radius: 50%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
}
.notify-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    color: #fff;
    font-size: 8px;
    line-height: 1;
}
.header-inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;    
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.back-btn {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/arrow-left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.inner-title {
    font-size: 18px;
}
.add-btn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 0;
}
.add-btn svg path {
    fill: var(--btn-color);
}
.view-more {
    color: #fff;
    text-decoration: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.view-more:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icons/arrow-right.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.canvas {
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    width: 280px;
    min-height: 100vh;
    height: 100vh;
    background: #fff;
    border-radius: 0;    
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 9999;
}
.canvas.canvas-wide {
    width: 100%;
}
.canvas.canvas-bottom {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: translateX(0) translateY(100%);
}
.canvas:before {
    content: '';
    display: block;
    width: 0;
    opacity: 0;
    position: fixed;
    background: rgba(0,0,0,0.3);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: width 0.1s linear, opacity 0.3s ease 0.3s;
    z-index: -1;
}
.canvas.shown {
    transform: none;
}
.canvas.shown:before {
    width: 100vw;
    opacity: 1;
}
.canvas-header {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 10px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 2;
}
.canvas-title {
    font-size: 20px;
}
.canvas-body {
    position: relative;
    background: #fff;
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    z-index: 2;
}
.canvas-body.wide {
    padding: 0;
}
.menu-wrap-top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 10px;
}
.menu-logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.menu-logo > img {
    width: 30px;
}
.canvas-close {
    padding: 0;
    background: transparent;
    border: none;
    line-height: 0;
    outline: none;
}
.main-menu-body {
    padding: 15px 10px;
}
.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu > li {
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #f3f3f3;
}
.main-menu > li > a,
.main-menu > li > .main-menu-parent-item > a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-color);
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
}
.main-menu li a:hover,
.main-menu li a.active {
    color: var(--theme-color);
}
.main-menu-inner {
    display: none;
    padding-left: 10px;
    padding-top: 10px;
    margin: 0;
    list-style: none;
}
.main-menu-inner > li {
    display: block;
}
.main-menu-inner > li:not(:last-child) {
    margin-bottom: 10px;
}
.main-menu-inner > li > a {
    color: var(--alter-color);
    text-decoration: none;
}
.main-menu-inner > li > a.active {
    color: var(--theme-color);
}
.main-menu-parent-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.main-menu-parent-btn {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/icons/caret-right.svg) no-repeat;
    background-size: 18px;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    transform: none;
    transition: 0.4s ease;
}
.main-menu-parent-item.opened .main-menu-parent-btn {
    transform: rotate(90deg);
}
.stars-rating {
    position: relative;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-box-direction: reverse;
    -moz-box-orient: horizontal;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;  
    width: fit-content;
}
.star-rating-item svg {
    display: block;
}
.star-rating-bg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    background: url(../images/icons/star-bold.svg) left center repeat-x;
}
.more {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    color: var(--theme-color);
}
.more:after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;    
    background-image: url(../images/icons/arrow-up.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: rotate(180deg);
    transition: 0.35s ease;
}
.more.active:after {
    transform: rotate(0);
}
.qty-wrap {
    gap: 5px;
}
.qty-btn {
    width: 20px;
    height: 20px;
    background-color: var(--theme-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    border-radius: 50%;
}
.qty-btn.btn-minus {
    background-image: url(../images/icons/minus.svg);
}
.qty-btn.btn-plus {
    background-image: url(../images/icons/plus.svg);
}
.qty-field {
    width: 60px;
    text-align: center;
    border: none;
    padding: 0;
}
.swal2-popup {
    background: var(--theme-color) !important;
    color: #fff !important; 
}
.swal2-close {
    border: none;
    outline: none;
    color: #fff !important;
}
.swal2-close:focus {
    box-shadow: none !important;
}
.grecaptcha-badge {
    display: none !important;
}
.install-app-body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 10px 0;
}
.install-app-body img {
    width: 45px;
    filter: brightness(0);
}
.ios-help {
    display: none;
    background: #dbdbdb;
    padding: 10px;
    font-size: 13px;
}
.ios-help > span {
    font-weight: 600;
}
.ios-help ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.ios-help ul li:not(:last-child) {
    margin-bottom: 12px;
}
.install-modal-hide {
    display: block;
    text-align: center;
    margin: 10px auto;
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: underline;
    color: var(--alter-color);
}
.incart-container {
    line-height: 1;
}
.incart-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.incart-btn {
    width: 20px;
    height: 20px;
    background-color: var(--theme-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    border-radius: 50%;
    border: none;
    padding: 0;
}
.incart-btn.btn-minus {
    background-image: url(../images/icons/minus.svg);
}
.incart-btn.btn-plus {
    background-image: url(../images/icons/plus.svg);
}
.incart-count {
    width: 30px;
    text-align: center;
    border: none;
    padding: 0;
}
.product-default-img {
    height: calc(100% - 20px);
    width: auto !important;
    object-fit: contain;
    margin: 10px auto 0 auto;
}