* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}

body {
    background-color: #101010;
    font-family: "Rubik", sans-serif;
    color: white;
}

button {
    cursor: pointer;
    font-family: "Rubik", sans-serif;
}

input {
    font-family: "Rubik", sans-serif;
}

main {
    min-height: 80vh;
}

.header-main {
    height: 94px;
    background-color: black;
    border-radius: 0 0 60px 60px;
    width: 1200px;
    width: 100%;
}

.header-logo {
    height: 56px;
}

.h-navigation {
    width: 480px;
    background-color: black;
    height: 48px;
    border-radius: 0 0 80px 80px;
}

#menu-icon {
    color: white;
    height: 36px;
    width: 36px;
    transition: all 0.2s;
}

#menu-icon:hover {
    color: #97041D;
}

.menu-open {
    cursor: pointer;
}

.header-cart {
    height: 56px;
    width: 200px;
    background-color: #151515;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
}

#user-icon {
    color: white;
    height: 36px;
    width: 36px;
    transition: all 0.2s;
}

#user-icon:hover {
    color: #97041D;
}

#cart-icon {
    color: white;
    height: 32px;
    width: 32px;
    transition: all 0.2s;
}

.nav-link {
    font-size: 16px;
    transition: all 0.2s;
    font-weight: 500;
}

.nav-link:hover {
    color: #97041D;
}

.land-type-icon {
    height: 40px;
    width: 40px;
}

.land-type-select {
    background-color: black;
    border-radius: 25px;
    padding: 32px;
    height: fit-content;
}


.land-type-option {
    width: 360px;
    padding: 24px;
    background-color: #0C0C0C;
    border-radius: 12px;
    border: 2px solid #737373;
    cursor: pointer;
    transition: all 0.2s;
}

.land-type-option:hover {
    border: 2px solid #97041D;
    color: #97041D;
}

.land-option-heading {
    font-size: 24px;
}

.land-option-time {
    font-size: 16px;
    color: #AAAAAA;
}

footer {
    margin-top: 120px;
    padding-top: 112px;
    background: linear-gradient(to bottom, #000000, #280000);
}

.footer-content {
    width: 1200px;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 80px;
    margin-bottom: 104px;
}

footer h4 {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-logo {
    width: 240px;
}

.wb-link {
    background-color: rgba(0, 0, 0, 0.55);
    width: 100%;
}

.footer-part {
    min-width: 25%;
}

.footer-part-longer {
    width: 35%;
}

.footer-part a {
    font-size: 16px;
    font-weight: 400;
}

.footer-part a:hover {
    color: #97041D;
}

.footer-link-icon {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.footer-news-info {
    font-size: 14px;
    color: #B0B0B0;
}

.close-aside:hover {
    background-color: #97041D;
}

.close-aside {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 40px;
    width: 40px;
    background-color: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.aside-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    height: 100%;
    background-color: black;
    z-index: 999;
    padding: 20px;
}

.aside-menu ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.aside-menu ul li {
    margin-bottom: 16px;
    border-bottom: 1px solid #373737;
    list-style: none;
    font-size: 16px;
    padding-bottom: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.aside-menu ul li:hover {
    color: #97041D;
}

.aside-menu ul li svg {
    margin-right: 8px;
}

.menu-subhead {
    border-bottom: 0 !important;
    margin-top: 16px;
    color: #737373;
    font-weight: 600;
    padding-bottom: 8px !important;
}

.menu-subhead:hover {
    color: #737373 !important;
}

.slide-enter-from,
.slide-leave-to {
  transform: translateX(-100%);
  opacity: 0;
}

.slide-enter-to,
.slide-leave-from {
  transform: translateX(0);
  opacity: 1;
}

.slide-enter-active,
.slide-leave-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.menu-overlay-enter-from,
.menu-overlay-leave-to {
    opacity: 0;
}

.menu-overlay-enter-to,
.menu-overlay-leave-from {
    opacity: 1;
}

.menu-overlay-enter-active, .menu-overlay-leave-active {
    transition: opacity 0.3s ease;
}





#news-email {
    outline: 0;
    height: 56px;
    border-radius: 14px 0 0 14px;
    background-color: #151515;
    border: 0;
    padding-left: 24px;
    width: 75%;
    color: white;
    font-size: 14px;
}

#news-submit {
    width: 25%;
    height: 56px;
    background-color: #97041D;
    border: 0;
    color: white;
    border-radius: 0 14px 14px 0;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

#news-submit:hover {
    background-color: #6e0012;
}

.footer-part-items {
    display: flex;
    flex-direction: column;
}

.footer-part-items span {
    font-weight: 400;
}

.foot-open-time-wrap {
    width: 240px;
    display: flex;
    justify-content: space-between;
}

.footer-map {
    border-radius: 20px;
    height: 224px;
    width: 100%;
}

.foot-news-group {
    width: 100%;
}

.footer-half:last-child {
    margin-top: 112px;
    margin-bottom: 112px;
}

.cart-not-empty {
    background-color: #97041D;
    cursor: pointer;
}

.header-cart-items {
    position: absolute;
    top: 104px;
    right: 32px;
    height: auto;
    width: 432px;
    border-radius: 12px;
    background-color: black;
    padding: 16px;
    z-index: 100;
}

.header-items-only-wrap {
    max-height: 600px;
    overflow-y: auto;
}

.header-items-only-wrap::-webkit-scrollbar {
    width: 5px;
}

.header-items-only-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.header-items-only-wrap::-webkit-scrollbar-thumb {
    background-color: #97041D;
    border-radius: 10px;
    border: none;
}

.header-items-only-wrap::-webkit-scrollbar-button {
    display: none;
}

.header-cart-item {
    margin-bottom: 12px;
    display: flex;
}

.header-cart-item:last-child {
    margin-bottom: 0;
}

.header-cart-item img {
    height: 80px;
    width: 116px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 8px;
}

.header-cart-item-content {
    height: 100%;
    width: 100%;
}

.header-item-name {
    font-size: 18px;
    font-weight: 600;
}

.header-cart-item .quantity-wrap {
    margin-top: 8px;
    width: 116px;
}

.header-cart-item .quantity-wrap .plus, .header-cart-item .quantity-wrap .minus {
    height: 32px;
    width: 32px;
}

.header-item-price {
    margin-top: 8px;
    color: #97041D;
    font-weight: 700;
    font-size: 20px;
}

.header-item-customs {
    margin-top: 8px;
    border-radius: 8px;
    padding: 8px;
    background-color: #151515;
}

.header-item-customs span {
    color: #B0B0B0;
    font-size: 14px;
}

.header-custom-item {
    color: white !important;
    margin-top: 8px;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.item-subgroup-head {
    font-weight: 600;
    margin-top: 8px;
}

.header-custom-item-price {
    color: #97041D !important;
    font-weight: 600;
}

.header-edit-item {
    border: 0;
    border-radius: 8px;
    color: white;
    background-color: #97041D;
    font-weight: 500;
    height: 40px;
    width: 120px;
    margin-top: 12px;
    font-size: 16px;
    transition: all 0.2s;
}

.header-edit-item svg {
    margin-right: 4px;
}

.header-edit-item:hover {
    background-color: #6e0012;
}

.total-cart-price {
    font-size: 20px;
    font-weight: 600;
}

.cart-continue {
    height: 56px;
    width: 180px;
    background-color: #97041D;
    color: white;
    border-radius: 8px;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.cart-continue:hover {
    background-color: #6e0012;
}

#cart-drop-head {
    font-weight: 600;
    margin-bottom: 16px;
}

@media only screen and (max-width: 1240px) {
    .footer-content {
        width: 94%;
    }

    .footer-part-longer {
        width: 38%;
    }

    #news-email {
        width: 68%;
        font-size: 14px;
    }

    #news-submit {
        width: 32%;
    }

    .foot-open-time-wrap {
        width: 200px;
    }
}  

@media only screen and (max-width: 860px) {
    .footer-part, .footer-part-longer {
        width: 47%;
    }

    .footer-part:first-child {
        text-align: center;
        order: 1;
    }

    .footer-part:nth-child(2) {
        order: 3;
    }

    .footer-part:nth-child(3) {
        order: 2;
    }

    .footer-part:nth-child(4) {
        order: 5;
    }

    .footer-part:nth-child(5) {
        order: 4;
    }

    .footer-part:nth-child(6) {
        order: 6;
    }

    .foot-open-time-wrap {
        width: 100%;
    }

    .header-cart {
        margin-right: 12px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-main {
        border-radius: 0 0 48px 48px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .h-navigation {
        border-radius: 0 0 64px 64px;
    }
}


@media only screen and (max-width: 800px) {
    .user-link {
        display: none;
    }

    .header-cart {
        margin-right: 0;
    }
}


@media only screen and (max-width: 700px) {
    .footer-part, .footer-part-longer {
        width: 50%;
    }

    .footer-logo {
        width: 224px;
    }

    .footer-part:first-child {
        text-align: left;
    }

    #news-email {
        width: 68%;
    }

    #news-submit {
        width: 32%;
        padding: 0;
    }

    #cart-icon {
        height: 24px;
        width: 24px;
    }

    .header-main {
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 0 0 32px 32px;
    }

    .h-third {
        width: 33%;
    }

    .h-third:nth-child(2) {
        width: auto;
    }

    .header-logo {
        height: 48px;
    }
    
}

@media only screen and (max-width: 700px) {
    .footer-content {
        width: 88%;
    }

    .footer-part, .footer-part-longer {
        width: 100%;
    }

    .footer-part:first-child {
        text-align: center;
    }

    .foot-news-group {
        max-width: 400px;
    }

    .foot-open-time-wrap {
        max-width: 360px;
    }

    .footer-map {
        height: 52vw;
    }
}

@media only screen and (max-width: 600px) {
    .header-main {
        border-radius: 0;
    }
}

@media only screen and (max-width: 540px) {
    .header-logo {
        height: 40px;
    }
    
    .header-cart {
        margin-left: 8px;
    }
    
    .header-cart span {
        font-size: 14px;
        text-align: center;
    }
    
    .h-navigation {
        width: 94%;
        border-radius: 0 0 48px 48px;
    }
    
    .header-cart-items {
        position: fixed;
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
    }
    
    .header-items-only-wrap {
        min-height: 500px;
    }
}

@media only screen and (max-width: 540px) {
    #cart-span-mobile-hide {
        display: none;
    }
}