/*!
Theme Name: mv-theme
Theme URI: http://underscores.me/
Author: Tespir
Author URI: https://tespir.com/
Description: Description
Version: 1.0.0
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mv-theme
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, woocommerce

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

mv-theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/






/* Registration */









/* cart area */
/* .cart {
    position: relative;
    z-index: 999;
}
.cart__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000070;
}
.cart__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 640px;
    width: 100%;
    max-height: 100vh;
    height: 100%;
    padding: 80px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.cart__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.cart__close svg {
    width: 100%;
    height: 100%;
}
.cart__close:hover path {
    fill: var(--blue-color);
}
.cart__title {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
}
.cart-product-list__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 135%;
    margin-bottom: 12px;
}
.cart-item__subtotal {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}
.cart-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
    margin-top: auto;
}
.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
}
.cart-total * {
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
}
.cart-area {
    max-height: calc(100vh - 160px - 40px - 29px - 28px - 39px - 16px);
    overflow-y: auto;
    height: fit-content;
}





/* cart items */
/* .cart-item {
    display: grid;
    grid-template-areas:
        "img top"
        "img bottom";
    grid-template-columns: 60px 1fr;
    grid-gap: 12px;
    padding: 24px;
    box-shadow: 0px 0px 30px -5px rgba(57, 71, 80, 0.1);
    border-radius: 12px;
}
.cart-item__image {
    grid-area: img;
}
.cart-item__image img {
    max-width: 100%;
    height: auto;
}
.cart-item__name {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--tutor-body-color);
}
.cart-item__name:hover {
    color: var(--blue-color);
}
.cart-item__info {
    font-weight: 400;
    font-size: 12px;
    line-height: 135%;
    opacity: .7;
}
.cart-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-area: top;
}
.cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-area: bottom;
}
.cart-item__remove {
    cursor: pointer;
}
.cart-item__remove:hover path {
    fill: var(--blue-color);
}  */


