:root {
    --kBackgroundColor: #d4ffcc;
    --kPrimaryColor: #0e5c00;
    --kPrimaryLightColor: #93ff80;
    --kDarkColor: #0d0d0d;
    --kError: #ff0303;
    --kBlack: #262626;
    --kGrey: #666666;
    --kWhite: #FFFFFF;
    --kYellow: #F9E900;
    --kRed: red;
    --kLine: #CCCCCC;
    --kOutline: #d2d3d7;
    --kPopupBlack: #202124;
}

html,
body {
    margin: 0px;
    font-weight: 100;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--kBackgroundColor);
}

p, h1, h2, h3 {
    margin: 0px;
    font-weight: 100;
}

a {
    text-decoration: none;
}

h1, h2, h3, b {
    font-family: Alata;
    color: var(--kPrimaryColor);
}

p, span, small, td, i, li {
    font-family: DidactGothic;
    color: var(--kPrimaryColor);
}

ul {
    display: block;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: Alata;
    src: url(fonts/Alata-Regular.ttf);
    font-weight: bold;
}

@font-face {
    font-family: DidactGothic;
    src: url(fonts/DidactGothic-Regular.ttf);
    font-weight: 100;
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: none;
}

::-webkit-scrollbar-thumb {
    background: #7abf00;
    border-radius: 30px;
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb:horizontal {
  height: 3px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

header .logo {
    width: 150px;
    height: 70px;
    object-fit: contain;
    object-position: left;
}

.logo {
    font-family: Alata;
    font-size: 45px;
    color: var(--kPrimaryColor);
    font-weight: bold;
    letter-spacing: -3px;
}

.horizontal-list {
    list-style: none;
    padding: 0px;
    padding-top: 10px;
}

.horizontal-list li {
    padding: 0px 15px;
    display: inline-block;
}

.center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.space-aside {
    padding: 0px 10px;
}

.horizontal-list li span {
    font-size: 30px;
    color: var(--kPrimaryColor);
    font-weight: bold;
    cursor: pointer;
}

.leftright {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    min-height: calc(100vh - 100px);
    box-sizing: border-box;
}

.leftright .left {
    width: 50%;
    padding: 15px;
}

.leftright .left div {
    width: 100%;
    max-width: 600px;
}

.leftright .right {
    width: 50%;
    padding: 15px;
}

.leftright .right img {
    width: calc(100% - 100px);
}

.chip {
    background-color: var(--kPrimaryColor);
    padding: 8px 23px;
    border-radius: 30px;
    font-family: DidactGothic;
    color: var(--kWhite);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.sub-page-title {
    font-size: 50px;
    font-family: DidactGothic;
    color: var(--kBlack);
    margin-bottom: 15px;
}

.page-title {
    font-size: 70px;
    font-family: Alata;
    color: var(--kBlack);
    line-height: 75px;
}

.section-title {
    font-size: 50px;
    font-family: Alata;
    color: var(--kPrimaryColor);
    margin-bottom: 30px;
}

.category-card {
    width: 100%;
    max-width: 350px;
    display: inline-block;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--kWhite);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    box-sizing: border-box;
    cursor: pointer;
    vertical-align: top;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.category-card .card-title {
    font-size: 30px;
    font-family: Alata;
    color: var(--kPrimaryColor);
    padding: 10px;
}

.category-card .footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 10px;
}

.product-card {
    max-width: 310px;
}

.product-card .card-title {
    font-size: 20px;
}

.product-card .price {
    font-size: 16px;
    padding: 0px 30px;
    font-family: Alata;
    color: var(--kPrimaryColor);
}

.product-card .card-desc {
    font-size: 16px;
    font-family: DidactGothic;
    color: var(--kPrimaryColor);
    padding: 0px 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .footer {
    border-top: 1px solid var(--kPrimaryColor);
}

.product-card .icon-button {
    width: 220px;
    border-radius: 0px;
    padding: 10px;
}

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kPrimaryColor);
    padding: 0px 15px;
    border-radius: 30px;
    cursor: pointer;
}

.icon-button span {
    font-size: 17px;
    color: var(--kWhite);
    pointer-events: none;
}

.icon-button p {
    color: var(--kWhite);
    font-family: DidactGothic;
    padding: 10px;
    font-size: 15px;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
}

.drawer-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: none;
    align-items: stretch;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    box-sizing: border-box;
    justify-content: end;
    z-index: 1;
}

.drawer {
    width: 100%;
    max-width: 50%;
    box-sizing: border-box;
    background-color: var(--kWhite);
    position: relative;
}

.drawer-overlay .drawer .emptybag {
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    display: none;
}

.drawer-overlay .drawer .emptybag span {
    font-size: 100px;
    color: var(--kPrimaryColor);
    margin-bottom: 30px;
}

.drawer-overlay .drawer .emptybag p {
    font-size: 20px;
    color: var(--kPrimaryColor);
    font-family: DidactGothic;
}

.drawer-overlay .drawer .filledbag {
    text-align: center;
}

.drawer-overlay .drawer .filledbag h2 {
    font-family: Alata;
    font-size: 20px;
    padding: 15px;
    color: var(--kPrimaryColor);
    box-sizing: border-box;
}

.drawer-overlay .drawer .filledbag .bag {
    width: 100%;
    table-layout: fixed;
    text-align: left;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.drawer-overlay .drawer .scroll-table {
    height: calc(100vh - 200px);
    overflow: scroll;
}

.drawer-overlay .drawer .filledbag .bag thead td {
    border-bottom: 1px solid #e5e5e5;
    text-transform: uppercase;
    font-size: 13px;
    color: #3e3e3e;
    position: sticky;
    top: 0;
    background: var(--kWhite);
}

.drawer-overlay .drawer .filledbag .bag td {
    padding: 10px;
    vertical-align: top;
}

.drawer-overlay .drawer .filledbag .bag td small {
    display: block;
    padding-top: 5px;
    color: var(--kGrey);
}

.drawer-overlay .drawer .filledbag .bag .wider-td {
    width: 20%;
    text-align: center;
}

.drawer-overlay .drawer .filledbag .bag .wide-td {
    width: 15%;
    text-align: right;
}

.drawer-overlay .drawer .filledbag .right {
    text-align: right;
}

.drawer-overlay .drawer .footer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
}

.drawer-overlay footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: var(--kWhite);
    border-top: 1px solid #e5e5e5;
    padding: 0px;
    margin: 0px;
}

.drawer-overlay footer .icon-button {
    padding: 5px;
    color: var(--kWhite);
    border-radius: 0px;
    cursor: pointer;
}

.drawer-overlay footer .icon-button span {
    font-size: 25px;
}

.drawer-overlay footer .icon-button p {
    font-size: 25px;
    text-transform: uppercase;
    color: var(--kWhite);
    font-family: Alata;
}

.drawer-overlay .drawer .bag .quantity-table {
    width: 100%;
    table-layout: fixed;
    max-width: 85px;
    margin: auto;
}

.drawer-overlay .drawer .bag .quantity-table td {
    padding: 0px;
    vertical-align: middle;
}

.drawer-overlay .drawer .bag .quantity-table td span {
    cursor: pointer;
    font-size: 15px;
    vertical-align: middle;
}

.drawer-overlay .drawer .bag .quantity-table td p {
    vertical-align: middle;
}

.drawer-overlay .drawer .bag .quantity-table td:first-child span {
    color: var(--kRed);
    font-weight: bold;
}

.drawer-overlay .drawer .bag .quantity-table td:last-child span {
    color: var(--kPrimaryColor);
    font-weight: bold;
}

.drawer-overlay .drawer .bag .remove-icon-button {
    display: flex;
    width: 100%;
    max-width: 60px;
    align-items: center;
    justify-content: space-around;
    color: var(--kGrey);
    margin: auto;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
}

.drawer-overlay .drawer .bag .remove-icon-button span {
    font-size: 10px;
    pointer-events: none;
}

.drawer-overlay .drawer .bag .remove-icon-button p {
    pointer-events: none;
    font-size: 9px;
    text-transform: uppercase;
}

.badge-holder {
    position: relative;
}

.badge {
    display: none;
    background-color: var(--kRed);
    color: var(--kWhite);
    font-family: Alata;
    font-size: 10px;
    position: absolute;
    top: -10px;
    right: 5px;
    border-radius: 50px;
    padding: 2px 6px;
    box-sizing: border-box;
    text-align: center;
    border: 2px solid #FFFFFF;
}

.account-module {
    width: 100%;
    max-width: 650px;
    border: 3px solid var(--kPrimaryLightColor);
    border-radius: 5px;
    padding: 20px;
    margin: 30px auto;
    text-align: left;
    box-sizing: border-box;
    position: relative;
}

.account-module .sno-heading {
    font-size: 15px;
    text-transform: uppercase;
    font-family: Alata;
    color: var(--kPrimaryColor);
    margin-bottom: 15px;
}

.account-module .heading {
    color: var(--kPrimaryColor);
    font-size: 20px;
    margin-bottom: 5px;
}

.account-module .description {
    color: var(--kPrimaryColor);
    font-size: 13px;
    margin-bottom: 15px;
}

.account-module table {
    width: 100%;
    table-layout: fixed;
}

.account-module table td {
    vertical-align: top;
}

.account-module .mobilenumber-table td:first-child {
    width: 100px;
    position: relative;
}

.account-module .mobilenumber-table td:first-child input {
    padding-left: 35px;
}

.account-module .mobilenumber-table .countrycode-plus {
    position: absolute;
    top: 43px;
    left: 10px;
    font-size: 20px;
    color: var(--kBlack);
}

.input {
    text-align: left;
}

.input small {
    font-family: DidactGothic;
    font-size: 15px;
    color: var(--kPrimaryColor);
    display: block;
    margin-bottom: 10px;
}

.input input {
    font-family: Alata;
    font-size: 15px;
    color: var(--kBlack);
    padding: 10px;
    background-color: var(--kWhite);
    border-radius: 3px;
    margin-bottom: 5px;
    display: block;
    border: 0px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.input .error {
    font-family: Alata;
    font-size: 12px;
    color: var(--kRed);
    margin-bottom: 15px;
}

.input .input-error {
    border-bottom: 2px solid var(--kRed);
}

.circle-button {
    padding: 10px 15px;
    background-color: var(--kPrimaryColor);
    color: var(--kWhite);
    border-radius: 30px;
    width: 100%;
    max-width: 200px;
    border: 0px;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    font-family: Alata;
    margin-bottom: 30px;
}

.or-divider {
    width: 100%;
    box-sizing: border-box;
    margin: 15px 0px 20px;
    position: relative;
    text-align: center;
}

.or-divider hr {
    border: 0px;
    border-bottom: 1px solid var(--kPrimaryColor);
    margin-bottom: -11px;
}

.or-divider p {
    font-size: 15px;
    color: var(--kPrimaryColor);
    background-color: var(--kBackgroundColor);
    padding: 0px 25px;
    display: inline-block;
    font-family: DidactGothic;
}

.checkbox-text {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.checkbox-text p {
    font-size: 15px;
    color: var(--kPrimaryColor);
    padding-left: 10px;
}

.dual-button {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.text-button {
    font-size: 15px;
    font-family: DidactGothic;
    border: 0px;
    background-color: transparent;
    display: inline-block;
    color: var(--kPrimaryColor);
    margin-right: 20px;
    cursor: pointer;
}

.viewonly input {
    pointer-events: none;
    background: transparent;
    cursor: none;
    padding: 0px;
}

.address-card {
    width: 100%;
    max-width: 200px;
    background-color: var(--kWhite);
    border-radius: 10px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    padding: 15px;
    position: relative;
    margin: 10px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.address-card small {
    font-size: 13px;
    margin-bottom: 5px;
}

.address-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.address-card span {
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
}

.account-module .viewonly .mobilenumber-table .countrycode-plus {
    top: 33px;
}

.viewonly .heading, .viewonly .description, .viewonly .circle-button, .viewonly .password-form {
    display: none;
}

.orders-card {
    width: 100%;
    max-width: 200px;
    background-color: var(--kWhite);
    border-radius: 5px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    padding: 15px;
    position: relative;
    margin: 10px;
    display: inline-block;
    text-align: left;
    cursor: pointer;
    vertical-align: top;
}

.orders-card small {
    font-size: 13px;
    margin-bottom: 5px;
}

.orders-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    font-family: Alata;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 3px;
    background: var(--kPopupBlack);
    outline: 1px solid var(--kOutline);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    color: var(--kWhite);
    display: none;
    box-sizing: border-box;
    z-index: 2;
}

.icon-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--kPrimaryColor);
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.icon-outline-button span {
    font-size: 20px;
    font-weight: bold;
}

.icon-outline-button h3 {
    padding-left: 10px;
    font-size: 13px;
    text-transform: uppercase;
}

.icon-toggle-button {
    display: inline-flex;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    background: var(--kWhite);
    border-radius: 30px;
    margin: 5px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    cursor: pointer;
}

.icon-toggle-button span {
    font-weight: bold;
    padding-right: 10px;
    color: var(--kPrimaryColor);
    vertical-align: middle;
    font-size: 20px;
    padding-top: 5px;
}

.icon-toggle-button h3 {
    color: var(--kPrimaryColor);
}

.icon-toggle-button-container .active {
    background-color: var(--kPrimaryColor);
}

.icon-toggle-button-container .active h3, .icon-toggle-button-container .active span {
    color: var(--kWhite);
}

.checkout-view {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
}

.checkout-view .left {
    padding: 30px;
}

.checkout-view .left .title {
    font-size: 35px;
}

.checkout-view .right {
    padding: 30px;
}

.checkout-view .right h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.checkout-view .right p {
    margin-bottom: 15px;
}

.checkout-view .right .circle-button {
    text-transform: uppercase;
    letter-spacing: 8px;
    width: 100%;
    max-width: none;
    padding: 20px 0px;
    border-radius: 10px;
    outline: 1px solid var(--kOutline);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
}

.circle-button:hover {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .2), 0 1px 18px 0 rgba(0, 0, 0, .2);
}

.no-product {
    width: 100%;
    height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.no-product span {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 15px;
}

.no-product h1 {
    margin-bottom: 50px;
    font-size: 30px;
}

.no-product .circle-button {
    text-transform: uppercase;
    letter-spacing: 5px;
}

.order-processing {
    width: 100%;
    height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.order-processing img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
    box-sizing: border-box;
    padding: 5px;
    border-radius: 50%;
    background: var(--kWhite);
}

.order-processing i {
    font-size: 20px;
    display: block;
    font-weight: bold;
}

.order-placed {
    width: 100%;
    height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.order-placed span {
    font-size: 100px;
    font-weight: bold;
    margin-bottom: 15px;
}

.order-placed h1 {
    margin-bottom: 50px;
    font-size: 40px;
}

.order-placed .circle-button {
    border: 2px solid var(--kPrimaryColor);
    color: var(--kPrimaryColor);
    background: transparent;
    font-size: 16px;
    text-transform: uppercase;
}

.address-list-container .active {
    border: 2px solid var(--kPrimaryColor);
}

.address-list-container .active span {
    display: block;
}

.receipt {
    width: 100%;
    max-width: 600px;
    background: var(--kWhite);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    margin: 50px auto;
    border: 5px dashed var(--kBackgroundColor);
}

.receipt .place-icon {
    font-size: 100px;
    font-weight: bold;
}

.receipt .title {
    font-size: 30px;
    font-weight: bold;
}

.receipt .title-price {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
}

.receipt .leftrighttext {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 10px;
}

.receipt .leftrighttext p, .receipt .leftrighttext h3 {
    font-size: 16px;
}

.receipt .leftrighttext p {
    text-align: left;
}

.receipt .leftrighttext h3 {
    text-align: right;
}

.receipt hr {
    border: 0px;
    border-bottom: 1px solid var(--kLine);
    margin: 0px;
}

.receipt table {
    width: 100%;
    box-sizing: border-box;
    table-layout: fixed;
}

.receipt table thead td {
    color: var(--kBlack);
    text-transform: uppercase;
    font-size: 15px;
}

.receipt table td {
    padding: 10px 0px;
    width: 30%;
}

.receipt table td small {
    color: var(--kGrey);
    font-size: 15px;
    display: block;
}

.receipt table td:first-child {
    text-align: left;
    width: 70%;
}

.receipt table td:last-child {
    text-align: right;
}

.no-orderreceipt {
    width: 100%;
    height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.no-orderreceipt span {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 15px;
}

.no-orderreceipt h1 {
    margin-bottom: 50px;
    font-size: 30px;
}

.no-orderreceipt .circle-button {
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 0px;
}

.weight-list-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.weight-list-container span {
    font-size: 20px;
    color: var(--kBlack);
}

.weight-list-container div:first-child {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
}

.weight-list-container div:first-child p {
    font-size: 16px;
    pointer-events: none;
}

.weight-list-container div:first-child h3 {
    pointer-events: none;
    font-size: 16px;
}

.weight-list {
    width: 100%;
    left: 0px;
    bottom: 40px;
    box-sizing: border-box;
    position: absolute;
    background-color: var(--kWhite);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    overflow: hidden;
    background: var(--kPrimaryLightColor);
    border-top-right-radius: 10px;
}

.weight-list li {
    padding: 10px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.weight-list li:hover {
    background-color: var(--kPrimaryLightColor);
}

.search-bar {
    width: 100%;
    max-width: 600px;
    border-radius: 60px;
    background: var(--kWhite);
    display: flex;
    align-items: center;
    justify-content: start;
    margin: auto;
    box-sizing: border-box;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    overflow: hidden;
    margin-bottom: 50px;
}

.search-bar span {
    font-size: 25px;
    color: var(--kPrimaryColor);
    font-weight: bold;
    padding: 20px 15px 15px 25px;
}

.search-bar input {
    border: 0px;
    padding: 5px 20px;
    border-left: 1px solid var(--kLine);
    font-size: 20px;
    color: var(--kPopupBlack);
    font-weight: bold;
    font-family: Alata;
    outline: none;
    width: 100%;
}

.splash {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: var(--kBackgroundColor);
    z-index: 2;
}

.splash img {
    width: 150px;
}

.product-view {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-evenly;
}

.product-view .big-picture {
    width: 100%;
    height: calc(100vh - 200px);
    object-fit: contain;
    object-position: center;
    background: var(--kWhite);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    border-radius: 10px;
}

.product-view .pictures-list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: scroll;
}

.product-view .pictures-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    margin: 10px;
    border-radius: 10px;
    background: var(--kWhite);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
}

.product-view .pictures-list .active {
    border: 1px solid var(--kPrimaryColor);
}

.product-view .left {
    width: 60%;
    box-sizing: border-box;
    padding: 0px 15px;
}

.product-view .right {
    text-align: left;
    width: 40%;
    padding: 15px;
    box-sizing: border-box;
}

.product-view .right .producttitle {
    font-size: 35px;
    margin-bottom: 15px;
}

.product-view .right .description {
    font-size: 16px;
    margin-bottom: 15px;
}

.product-view .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-view .footer h3 {
    font-size: 30px;
    font-family: Alata;
    margin-right: 35px;
}

.product-view .icon-button {
    text-transform: uppercase;
    letter-spacing: 8px;
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 10px;
    outline: 1px solid var(--kOutline);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
}

.product-view .icon-button span {
    font-size: 25px;
}

.product-view .icon-button p {
    font-size: 20px;
}

.weights {
    margin-bottom: 15px;
}

.weights li {
    display: inline-block;
    margin: 10px;
    border-radius: 5px;
    padding: 10px 15px;
    box-sizing: border-box;
    background: var(--kWhite);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
}

.weights li p, .weights li h3 {
    pointer-events: none;
}

.weights li p {
    font-size: 13px;
}

.weights .active {
    border: 1px solid var(--kPrimaryColor);
}

.screen-loader {
    display: flex;
    width: 100%;
    height: calc(100vh - 100px);
    align-items: center;
    justify-content: center;
}

.screen-loader .loader {
    background-color: var(--kWhite);
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    border-radius: 100px;
}

.long-content {
    padding: 0px 10px;
}

.long-content div {
    width: 100%;
    max-width: 1000px;
    padding: 15px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    margin: 30px auto;
    border-radius: 10px;
    background-color: var(--kWhite);
    box-sizing: border-box;
}

.long-content h1, .long-content p, .long-content ul, .long-content h2 {
    margin-bottom: 15px;
}

.long-content a {
    font-family: Alata;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    background-color: var(--kPrimaryColor);
    color: var(--kWhite);
    padding: 5px 10px 7px;
    border-radius: 30px;
}

.long-content ul {
    list-style: circle;
    padding-left: 15px;
}

footer {
    background: var(--kPopupBlack);
    padding: 30px 10px;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

footer p, footer span {
    color: var(--kWhite);
}

.demo-stripe {
    background-color: var(--kRed);
    color: var(--kWhite);
    position: fixed;
    bottom: 30px;
    left: 0px;
    z-index: 999;
    text-align: center;
    font-size: 20px;
    font-family: 'Alata';
    padding: 10px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    display: block;
}

.demo-stripe b {
    color: var(--kWhite);
    white-space: nowrap;
}

.categories-container {
    margin: 50px 0px;
}

.asap-drawer {
    position: fixed;
    right: -500px;
    top: 0px;
    bottom: 0px;
    background-color: var(--kWhite);
    width: 100%;
    max-width: 400px;
    z-index: 1;
    background: var(--kWhite);
    transition: right 1.5s ease;
}

.asap-drawer-closed {
    right: -400px;
}

.asap-drawer-closed:hover {
    right: 0px;
}

.asap-drawer .content {
    position: relative;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.asap-drawer .content .logo {
    width: 60px;
    position: absolute;
    left: -50px;
    top: 70px;
    border-radius: 100px;
    filter: drop-shadow(-15px 0px 18px var(--kPrimaryColor));
    cursor: pointer;
}

.asap-drawer .content div {
    padding: 15px;
    border: 1px solid var(--kLine);
    border-radius: 5px;
    margin-bottom: 16px;
}

.asap-drawer .content button {
    background-color: var(--kDarkColor);
    color: var(--kWhite);
    padding: 13px 0px;
    border-radius: 32px;
    border: 0px;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}

.asap-drawer .content * {
    margin-bottom: 16px;
}

.asap-drawer .content button:last-child, .asap-drawer .content p:last-child, .asap-drawer .content a:last-child, .asap-drawer .content ul:last-child, .asap-drawer .content li:last-child {
    margin-bottom: 0px;
}

.asap-drawer .content .rating {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: 0px;
    padding: 0px;
}

.asap-drawer .content .rating img {
    margin-bottom: 0px;
    cursor: pointer;
    filter: grayscale(1);
}

.asap-drawer .content .rating img:hover {
    filter: none;
}

.asap-drawer a {
    text-decoration: none;
    color: var(--kDarkColor);
    font-weight: bold;
}

.asap-drawer .content .thanks {
    width: 100%;
    max-width: 195px;
    margin: 0px auto 20px;
    font-size: 14px;
}

.asap-drawer .content .scroll {
    height: 100vh;
    overflow: scroll;
    padding: 0px;
    margin: 0px;
    border: 0px;
    padding: 15px;
}

.asap-drawer .content .contact {
    text-align: left;
}

.asap-drawer .content .contact small {
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--kGrey);
}

.asap-drawer .content .contact p:first-child {
    margin-bottom: 16px;
}

.asap-drawer .content .faq div, .asap-drawer .steps div {
    border: 0px;
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.asap-drawer .rating-container section {
    margin: 0px;
}

.asap-drawer .content .scroll .poweredby {
    margin-bottom: 100px;
}

.asap-drawer hr {
    border: 0px;
    border-bottom: 1px solid var(--kLine);
}

.asap-drawer input {
    width: 100%;
    border: 1px solid var(--kLine);
    padding: 10px;
    border-radius: 3px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.asap-drawer small {
    display: block;
}

.availablesizes {
  margin: 15px 0px;
}

.availablesizes p {
  background: var(--kWhite);
  padding: 4px 10px;
  color: var(--kDarkColor);
  display: inline-block;
  margin: 5px;
  width: 25px;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--kLine);
  border-radius: 2px;
}

.availablesizes .active {
  background-color: var(--kPrimaryColor);
  border: 2px solid var(--kPrimaryColor);
  color: var(--kWhite);
}

@media only screen and (max-width: 1200px) {
    .product-view .right .producttitle {
        font-size: 30px;
    }

    .product-view .right .icon-button p {
        font-size: 15px;
    }

    .product-view .footer h3 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 992px) {
    .leftright {
        display: block;
        width: 100%;
        min-height: auto;
        margin-bottom: 50px;
    }

    .leftright .right {
        display: none;
    }

    .leftright .left {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .leftright .left div {
        max-width: none;
    }

    .chip {
        font-size: 13px;
    }

    .page-title {
        font-size: 50px;
        line-height: 55px;
    }

    .sub-page-title {
        font-size: 30px;
    }

    .product-view .right .producttitle {
        font-size: 25px;
    }

    .product-view .right .icon-button p {
        font-size: 14px;
    }

    .product-view .right .icon-button span {
        font-size: 20px;
    }

    .product-view .footer h3 {
        font-size: 20px;
    }

}

@media only screen and (max-width: 768px) {
    header {
        padding-bottom: 0px;
    }

    .drawer {
        max-width: 80%;
    }

    .checkout-view {
        display: block;
    }

    .checkout-view .left, .checkout-view .right {
        display: block;
    }

    .section-title {
        font-size: 40px;
        margin-top: 15px;
    }

    .search-bar {
        margin: 30px 0px;
    }

    .product-view {
        display: block;
    }

    .product-view .left, .product-view .right {
        display: block;
        width: 100%;
        text-align: center;
    }

    .product-view .big-picture {
        height: 50vh;
        margin-top: 20px;
    }

    .product-view .right .producttitle {
        font-size: 20px;
    }

    .product-view .right .icon-button p {
        font-size: 10px;
        font-weight: bold;
    }

    .product-view .right .icon-button span {
        font-size: 15px;
    }

    .product-view .footer h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 600px) {
    .categories-container {
        padding: 0px 10px;
    }

    .category-card {
        margin: 10px 0px;
    }

    .drawer-overlay .drawer .filledbag .bag td:first-child p {
        font-size: 13px;
    }

    .section-title {
        font-size: 35px;
    }

    .asap-drawer-closed {
        max-width: 300px;
        right: -300px;
    }
}

@media only screen and (max-width: 425px) {
    .horizontal-list li span {
        font-size: 25px;
    }

    .logo {
        font-size: 35px;
    }

    .drawer {
        max-width: 90%;
    }

    .section-title {
        font-size: 30px;
    }

    .horizontal-list li {
        padding: 0px 10px;
    }

    .weights li {
        padding: 5px 10px;
        margin: 5px;
    }

    .weights li p {
        font-size: 11px;
    }

    .weights li h3 {
        font-size: 15px;
    }

    .product-view .right .icon-button p {
        letter-spacing: 5px;
    }

    header .logo {
        width: 120px;
        height: 50px;
    }
}

@media only screen and (max-width: 320px) {
    .asap-drawer-closed {
        max-width: 275px;
        right: -275px;
    }
}

/* Last CSS */

.nomargin-bottom {
    margin-bottom: 0px;
}

.hide {
    display: none;
}

.sure-hide {
    display: none !important;
}
