.woocommerce-message, .woocommerce-error {
    position: fixed;
    z-index: 2;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px;
    border-radius: 8px;
    font-family: Raleway;
    font-weight: 600;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
    list-style: none;
}

.woocommerce {
    /*background: #F5F3F0;*/
    display: flex;
    padding: 180px 150px 150px;
} 
.account-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 8px 20px 8px 0;
    border-right: 1px solid #dcc6a1;
    margin-right: 50px;
    flex-shrink: 0;
}
.account-user {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    padding-bottom: 25px;
    padding-right: 25px;
    border-bottom: 1px solid #dcc6a1;
    margin-bottom: 20px;
}
.account-user.active .account-user-info strong, .account-user.active .account-user-info span, .account-user:hover .account-user-info strong, .account-user:hover .account-user-info span {
    color: #236E53;
}
.account-user:hover path, .account-user.active path {
    fill: #236E53;
}
.account-user-info {
    display: flex;
    flex-direction: column;
}
.account-user-info strong {
    font-family: Raleway;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #424242;
}
.account-user-info span {
    font-family: Raleway;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: #7f7f7f;
}
.account-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style-type: none;
}
.account-sidebar li a {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    font-family: Raleway;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #7f7f7f;
}
.account-sidebar li.active a, .account-sidebar li a:hover {
    color: #236E53;
}
.account-sidebar li.active a .account-sidebar-icon *, .account-sidebar li a:hover .account-sidebar-icon * {
    fill: #236E53;
}
.account-sidebar-icon {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-sidebar-logout {
    margin-top: 100px;
    font-family: Raleway;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #7f7f7f;
    text-decoration: none;
}
.account-sidebar-logout:hover {
    color: #a30000;
}

.edit-account {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: Raleway;
}
.edit-account input {
    width: 300px;
    height: 40px;
    background: white;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
    margin-bottom: 8px;
}
.edit-account .clear {
    display: none;
}
.edit-account .woocommerce-form-row {
    display: flex;
    flex-direction: column;
}
.edit-account .woocommerce-form-row .required {
    color: red;
    font-weight: 700;
    font-size: 20px;
}
.edit-account label {
    font-weight: 600;
}
#account_display_name_description {
    margin-top: 4px;
    font-size: 14px;
}
.edit-account fieldset {
    padding: 8px;
}
.edit-account .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #04133c;
    color: white;
    border-radius: 50px;
    border: none;
    width: 300px;
    height: 60px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
}
.edit-account .button:hover {
    background: white;
    color: #04133c;
}

.woocommerce-MyAccount-content {
    width: 100%;
}
.my-orders-list {
	width: 100%;
	margin: 0 auto;
	font-family: Raleway;
	font-variant-numeric: lining-nums;
}
.order-box {
    width: 100%;
	border: 1px solid #C7C3BC;
	border-radius: 10px;
	background: white;
	margin-bottom: 10px;
	padding: 0;
	overflow: hidden;
	transition: box-shadow 0.2s;
}
.order-box-mobile {
    display: none;
}
.order-box__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 14px 20px;
	cursor: pointer;
}
.order-box__status-container {
    flex-shrink: 0;
}
.order-box--open .order-box__status-container {
    padding-right: 20px;
    border-right: 1px solid #DCC6A1;
}
.order-box__id {
    display: flex;
    gap: 15px;
}
.order-box__number {
	font-weight: 700;
	font-size: 20px;
	line-height: 1.3;
}
.order-box__date {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
}
.order-box__date2 {
    display: none;
}
.order-box--open .order-box__date2 {
    display: block;
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #7f7f7f;
    margin-bottom: 10px;
}
.order-box__status {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}
.order-box__status.completed, .order-box__status.success {
	color: #1fae62;
}
.order-box__status.failed, .order-box__status.cancelled {
	color: #a30000;
}
.order-box__thumbs {
    display: flex;
    gap: 16px;
}
.order-box--open .order-box__thumbs, 
.order-box__buttons, 
.order-box__delivery, 
.order-product,
.order-box__delivery,
.order-box__total,
.order-box__delivery-cost, 
.order-box__total {
    display: none;
}
.order-box--open .order-box__buttons, 
.order-box--open .order-box__delivery,
.order-box--open .order-product,
.order-box--open .order-box__total,
.order-box--open .order-box__delivery-cost, 
.order-box--open .order-box__total
{
    display: flex;
}
.order-box__thumbs .order-product__thumb {
    width: 52px;
    height: 52px;
    margin: 0;
}
.order-box__toggle svg {
    transition: all .5s;
}
.order-box--open .order-box__toggle svg {
    transform: rotate(180deg);
}
.order-box__main {
	display: none;
	justify-content: space-between;
	padding: 14px 20px 18px;
}
.order-box--open .order-box__main {
	display: flex;
}
.order-box__center {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}
.order-box__center > *:not(.order-box__thumbs) {
    width: 100%;
    padding-left: 110px;
}
.order-box__center .order-product:nth-of-type(2) {
    margin-top: 20px;
}
.order-box__left {
	width: 260px;
	padding-right: 28px;
	border-right: 1px solid #edece8;
}
.order-box__right {
	flex: 1;
	padding-left: 32px;
}
.order-product {
	align-items: flex-start;
	margin-bottom: 14px;
}
.order-product__thumb {
	width: 62px;
	height: 62px;
	background: #fff;
	border-radius: 7px;
	overflow: hidden;
	margin-right: 16px;
}
.order-product__thumb img {
    width: 100%;
    height: 100%;
}
.order-product__info {
	flex: 1;
}
.order-product__title {
	font-weight: 500;
}
.order-product__qty-price {
	color: #555;
	font-size: 14px;
	margin-top: 2px;
}
.order-product__sum {
	font-weight: 600;
	margin-left: 12px;
}
.order-box__delivery,
.order-box__total {
	margin-top: 14px;
	font-size: 15px;
}
.order-box__buttons {
    flex-direction: column;
    padding: 15px 0;
    border-top: 1px solid #DCC6A1; 
    border-bottom: 1px solid #DCC6A1; 
    width: 100%;
}
.order-box__action {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    border-radius: 50px;
    border: none;
    width: 100%;
    height: 50px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
}
.order-box__action--primary {
	background: #04133C;
	border: 1px solid #04133C;
}
.order-box__action--danger {
	background: #972321;
	border: 1px solid #972321;
	margin-top: 10px;
	margin-bottom: 20px;
}
.order-again a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    border-radius: 50px;
    width: 100%;
    height: 50px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    background: #04133C;
	border: 1px solid #04133C;
}
.order-box__action--primary:hover, .order-again a:hover {
    background: white;
    color: #04133C;
}
.order-box__action--danger:hover {
    background: white;
    color: #972321;
}
.failed .order-box__action--danger, .failed .order-box__note,
.refunded .order-box__action--danger, .refunded .order-box__note,
.cancelled .order-box__action--danger, .cancelled .order-box__note {
    display: none;
}
.order-box__note {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.3;
}
.order-box__label {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #424242;
    margin-bottom: 4px;
}
.order-box__delivery {
    flex-direction: column;
}
.order-box__delivery-text {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.3;
    color: #424242;
}
.order-box__delivery-text:nth-of-type(2) {
    margin-bottom: 14px;
}
.order-product__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #424242;
}
.order-product__volume {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    color: #7f7f7f;
}
.order-product__qty-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #424242;
    margin-right: 60px;
}
.order-product__sum {
    width: 130px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #424242;
    display: flex;
    justify-content: flex-end;
}
.order-box__delivery-cost {
    justify-content: space-between;
    align-items: baseline;
    margin-top: 10px;
    border-top: 1px solid #DCC6A1;
    padding-top: 25px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.order-box__delivery-cost div {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
}
.order-box__total {
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.order-box__total div {
    font-size: 20px;
}
.order-box__toggle {
    height: 52px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
    position: relative;
}

.cart-section {
    width: 100%;
}
.cart-section__title {
    font-family: Raleway;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    color: #04133C;
    margin-bottom: 40px;
}
.cart-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}
.woocommerce .cart-section__grid {
    gap: 25px;
}

.cart-product {
    position: relative;
}

.cart-product__icons {
    position: absolute;
    right: 0;
    bottom: 0;
}
.cart-product__icons .shop-product__icon {
    background: none;
    border: none;
    cursor: pointer;
}

.cart-total-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 45px;
}
.cart-total-price {
    font-family: Raleway;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #424242;
    font-variant-numeric: lining-nums;
}
.shop-cart__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    border-radius: 50px;
    width: 300px;
    height: 50px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    background: #04133C;
	border: 1px solid #04133C;
}
.shop-cart__submit:hover {
    background: #04133C;
    color: var(--sand);
}

.cart-empty {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Raleway;
}

.woocommerce-form-coupon-toggle {
    display: none;
}
.checkout-page {
    font-family: Raleway;
    color: #424242;
    width: 100%;
}
.checkout-content {
    display: flex;
    gap: 20px;
}
.checkout-main {
    width: 80%;
}
.checkout-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #04133C;
    margin-bottom: 20px;
}
.checkout-block {
    background: white;
    border-radius: 10px;
    border: 1px solid #C7C3BC;
    padding: 16px 10px 10px;
    margin-bottom: 10px;
}
.checkout-block h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.checkout-contact__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #C7C3BC;
    padding: 50px;
}
.checkout-form-row {
    display: flex;
    align-items: center;
    gap: 30px;
}
.checkout-form-row label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    width: 110px;
}
.checkout-form-row input {
    width: 500px;
    height: 40px;
    background: none;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
}
.checkout-block__header {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.checkout-block__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 16px 13px;
}
.checkout-block__content span {
    display: flex;
    gap: 24px;
}
.checkout-block__content-container {
    display: flex;
    justify-content: space-between;
}
.checkout-city .checkout-block__content span {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.checkout-address .checkout-block__content span {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
}
.checkout-block__content button {
    background: none;
    border: none;
    font-family: Raleway;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
    cursor: pointer;
}
.checkout-block__content button:hover {
    color: #00247D;
}
.checkout-block__content-inputs {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.checkout-block__content-inputs.visible {
    display: flex;
}
.checkout-block__content-input {
    display: flex;
    align-items: center;
    gap: 20px;
}
.recipient_icon {
    width: 16px;
}
.recipient_text {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.checkout-block__content-inputs label {
    display: flex;
    font-weight: 500;
    font-size: 16px;
    width: 155px;
}
.checkout-block__content-inputs input {
    width: 500px;
    height: 40px;
    background: none;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
}
.checkout-block__content-inputs textarea {
    width: 500px;
    height: 120px;
    background: none;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
    resize: none;
}

.checkout-order__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding-right: 20px;
}
.checkout-order__item-mobile {
    display: none;
}
.checkout-order__thumb {
    width: 70px;
    height: 70px;
    border-radius: 7px;
    overflow: hidden;
}
.checkout-order__thumb img {
    width: 100%;
    height: 100%;
}
.checkout-order__info {
    margin-right: auto;
}
.checkout-order__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
}
.checkout-order__meta {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    color: #7f7f7f;
}
.checkout-order__qty {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    margin-right: 60px;
}
.checkout-order__qty-text {
    margin-right: 16px;
}
.checkout-order__qty .quantity-selector {
    gap: 0;
}
.checkout-order__sum {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    margin-right: 60px;
}
.checkout-order__remove button {
    background: none;
    border: none;
    cursor: pointer;
}
.checkout-recipient__info {
    display: flex;
    gap: 24px;
}
.checkout-comments .checkout-block__content {
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 14px 12px;
}
.checkout-comments .checkout-block__content span {
    display: flex; 
    gap: 22px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.checkout-sidebar {
    width: 30%;
}
.checkout-promo .checkout-block__content {
    padding: 0;
    border: none;
}
.checkout-promo span {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.checkout-total {
    display: flex;
    flex-direction: column;
}
.checkout-total h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 32px;
}
.checkout-total__list {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.checkout-total__list div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 12px;
}
.checkout-total__list div:last-of-type {
    margin-bottom: 28px;
    padding: 15px 0;
    border-top: 1px solid #DCC6A1;
    border-bottom: 1px solid #DCC6A1;
}
.checkout-confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    border-radius: 50px;
    width: 100%;
    height: 50px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    background: #04133C;
	border: 1px solid #04133C;
	margin-bottom: 15px;
}
.checkout-confirm-btn:hover {
    background: #04133C;
    color: var(--sand);
}
.checkout-note {
    font-weight: 500;
    font-size: 9px;
    line-height: 1.3;
}
.checkout-note a {
    text-decoration: none;
    color: #7f7f7f;
}

.woocommerce-billing-fields, .woocommerce-shipping-fields, .woocommerce-additional-fields, .woocommerce-checkout-payment, .checkout-page.hidden {
    display: none;
}

#customer_login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-family: Raleway;
    width: 100%;
}
.col-1, .col-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#customer_login .woocommerce-form-row {
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

.woosw-list {
    width: 100%; 
}
.woosw-list .woosw-popup-content-mid-message {
    font-family: Raleway;
}
.woosw-items {
    width: 100%;
}
.woosw-items tbody {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}
.woosw-items tbody tr {
    width: 100%;
}
.woosw-items tbody tr > * {
    width: 100%;
    display: flex;
}
.woosw-items tbody tr .woosw-item--image {
    width: 100%;
    aspect-ratio: 37 / 44;
    border: 1px solid #C7C3BC;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    height: auto;
    background: white;
    position: relative;
}
.woosw-item--image .shop-product__advantage {
    /*position: absolute;*/
}
.woosw-item--image a {
    width: 100%;
    height: 100%;
}
.woosw-item--image img {
    width: 100% !important;
    height: auto !important;
    /*max-height: 200px !important;*/
    object-fit: cover !important;
}
.woosw-item--image .shop-product__advantage img {
    width: 15px !important;
    object-fit: contain !important;
}
.woosw-item--info {
    flex-direction: column;
}
.woosw-item--name {
    height: 78px;
    font-family: Raleway;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 13px;
}
.woosw-item--name a {
    text-decoration: none;
    color: #424242;
}
.woosw-item--price {
    font-family: Raleway;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #7f7f7f;
    font-variant-numeric: lining-nums;
    margin-bottom: 14px;
}
.woosw-item--time {
    /*font-family: Raleway;*/
    /*font-weight: 400;*/
    /*font-size: 16px;*/
    /*line-height: 1.3;*/
    /*margin-bottom: 13px;*/
    /*color: #7F7F7F;*/
    display: none;
}
.woosw-item--atc {
    width: 100%;
}
.product.woocommerce.add_to_cart_inline {
    padding: 0;
    width: 100%;
    flex-direction: row;
    gap: 8px;
}
.product.woocommerce.add_to_cart_inline a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    border-radius: 50px;
    width: 100%;
    height: 50px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    background: #04133C;
    border: 1px solid #04133C;
    text-align: center;
}
.product.woocommerce.add_to_cart_inline a:hover {
    background: #04133C;
    color: var(--sand);
}
.woosw-item--delete {
    background: none;
    border: none;
    cursor: pointer;
}
.woosw-item--delete:hover {
    opacity: 0.7;
}

.woocommerce-order {
    display: flex;
    flex-direction: column;
    font-family: Raleway;
    gap: 20px;
}
.woocommerce-order .order-again a {
    margin-top: 20px;
}
.woocommerce-order-details th {
    text-align: left;
    width: fit-content;
}
.woocommerce-order-details td {
    padding: 0 35px 0 0;
    text-align: left;
    width: fit-content;
}
.woocommerce-customer-details h2, .woocommerce-customer-details address {
    width: 100%;
}

.woocommerce-form-login .woocommerce-Input, .woocommerce-form-register .woocommerce-Input {
    width: 300px;
    height: 40px;
    background: white;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
    margin-bottom: 8px;
}
.woocommerce-form-register .screen-reader-text, .woocommerce-form-login .screen-reader-text {
    display: none;
}
.woocommerce-form-login .form-row:nth-of-type(3) {
    display: flex;
    flex-direction: column;
}
.woocommerce-form-login__submit, .woocommerce-form-register__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    border-radius: 50px;
    width: 300px;
    height: 50px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    background: #04133C;
    border: 1px solid #04133C;
}
.woocommerce-form-login__submit:hover, .woocommerce-form-register__submit:hover {
    background: #04133C;
    color: var(--sand);
}
#customer_login h2 {
    color: #04133C;
    margin-bottom: 10px;
}
.woocommerce-form-login__rememberme {
    margin-bottom: 12px;
}
.woocommerce-privacy-policy-text p {
    max-width: 300px;
    font-size: 12px;
    margin-bottom: 12px;
}
.woocommerce-privacy-policy-text a {
    color: black;
}
.woocommerce-LostPassword {
    margin-top: 10px;
}
.woocommerce-LostPassword a {
    text-decoration: none;
    color: black;
}
.woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

.woocommerce-ResetPassword {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Raleway;
}
.woocommerce-ResetPassword p:first-child {
    color: #04133C;
    margin-bottom: 10px;
}
.woocommerce-ResetPassword .woocommerce-form-row--first {
    display: flex;
    flex-direction: column;
}
.woocommerce-ResetPassword .screen-reader-text {
    display: none;
}
.woocommerce-ResetPassword .woocommerce-Input {
    width: 300px;
    height: 40px;
    background: white;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
    margin-bottom: 8px;
}
.woocommerce-ResetPassword .woocommerce-Button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    border-radius: 50px;
    width: 300px;
    height: 50px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    background: #04133C;
    border: 1px solid #04133C;
}
.woocommerce-ResetPassword .woocommerce-Button:hover {
    background: white;
    color: #04133C;
}

.policy {
    font-family: Raleway;
    font-variant-numeric: lining-nums;
}
.policy > * {
    margin-bottom: 4px;
}
.policy h4 {
    margin-top: 20px;
}
.policy img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
}
.policy a {
    color: black;
}
.policy ol {
    margin-top: 15px;
}

@media screen and (max-width: 1537px) {
    .woocommerce {
        padding: 120px 100px;
    }
    .order-box__center > *:not(.order-box__thumbs) {
        padding-left: 0;
    }
}
    
@media screen and (max-width: 769px) {
    .woocommerce {
        padding: 65px 20px;
    }
    .account-sidebar {
        padding: 8px 8px 8px 0;
        margin-right: 11px;
    }
    .account-user {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding-right: 0;
        padding-bottom: 10px;
    }
    .account-user svg {
        width: 16px;
        height: 20px;
    }
    .account-user-info strong {
        font-size: 10px;
    }
    .account-user-info span {
        font-size: 8px;
    }
    .account-sidebar-icon {
        width: 20px;
    }
    .account-sidebar-icon svg {
        width: 18px;
    }
    .account-sidebar li a {
        gap: 12px;
        font-size: 10px;
    }
    .account-sidebar-logout {
        font-size: 10px;
    }
    .edit-account {
        gap: 5px;
    }
    .edit-account label {
        font-size: 12px;
    }
    .edit-account input {
        width: 100%;
    }
    .edit-account .button {
        width: 100%;
    }
    
    .order-box-desktop {
        display: none;
    }
    .order-box-mobile {
        display: flex;
    }
    .order-box__top {
        flex-direction: column;
        padding: 10px 11px;
        width: 100%;
    }
    .order-box__status-container {
        width: 100%;
    }
    .order-box--open .order-box__status-container {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid #DCC6A1;
        margin-bottom: 7px;
    }
    .order-box__number {
        font-size: 12px;
    }
    .order-box__date {
        font-size: 10px;
    }
    .order-box__status {
        font-size: 12px;
    }
    .order-box--open .order-box__date2 {
        font-size: 10px;
    }
    .order-box__center {
        align-items: flex-start;
        padding: 0;
    }
    .order-box--open .order-box__center {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #DCC6A1;
    }
    .order-box__id {
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }
    .order-box__id > div {
        display: flex;
        gap: 15px;
    }
    .order-box__toggle {
        margin: 5px 0;
        width: 13px;
        height: auto;
        display: flex;
        justify-content: flex-end;
    }
    .order-box__center > *:not(.order-box__thumbs) {
        padding: 0;
    }
    .order-product {
        display: flex;
        flex-direction: column;
        margin: 0;
    }
    .order-product:nth-of-type(1) {
        display: flex;
        flex-direction: column;
    }
    .order-product:nth-of-type(n + 2) {
        display: none;
    }
    .order-box--open .order-product {
        margin-top: 0 !important;
        margin-bottom: 10px;
    }
    .order-box--open .order-product:nth-of-type(n + 2) {
        display: flex;
    }
    .order-box--open .order-product:last-of-type {
        margin-bottom: 0;
    }
    .order-product-top {
        display: flex;
        align-items: center;
        margin-bottom: 6px;
    }
    .order-product__thumb {
        width: 55px;
        height: 55px;
    }
    .order-product__info {
        height: fit-content;
    }
    .order-product__title {
        font-size: 12px;
    }
    .order-product__volume {
        font-size: 10px;
    }
    .order-product-bottom {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 20px
    }
    .order-product__qty-price {
        font-size: 14px;
        margin: 0;
    }
    .order-product__sum {
        display: none;
    }
    .order-box--open .order-product__sum {
        display: flex;
        font-size: 14px;
        width: fit-content;
        margin: 0;
    }
    .order-box__delivery-costs {
        margin-top: 0;
        width: 100%;
    }
    .order-box__delivery-cost {
        margin-top: 0;
        padding: 0;
        border: none;
        font-size: 12px;
    }
    .order-box__delivery-cost div {
        font-size: 10px;
    }
    .order-box__total {
        font-size: 12px;
    }
    .order-box__total div {
        font-size: 14px;
    }
    .order-box__buttons {
        border-top: none;
    }
    .order-box--open .order-box__note {
        margin-top: 19px;
        display: flex;
    }
    
    .cart-section__title {
        margin-bottom: 15px;
    }
    .cart-section__grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 3px;
        row-gap: 20px;
        margin-bottom: 30px;
    }
    .quantity-selector {
        align-items: center;
    }
    .qty-btn {
        width: 15px;
        height: 15px;
        padding: 0;
    }
    .qty-value {
        font-size: 14px;
        width: 20px;
    }
    .cart-product__icons {
        display: flex;
    }
    .cart-product__icons .shop-product__icon {
        margin-right: 8px;
        display: flex;
    }
    .cart-product__icons .shop-product__icon svg {
        width: 16px;
        height: 16px;
    }
    .cart-section .shop-product__name {
        font-size: 10px;
    }
    .cart-section .shop-product__volume {
        font-size: 8px;
    }
    .cart-section .shop-product__price {
        font-size: 10px;
    }
    .cart-total-block {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    .cart-total-price {
        font-size: 14px;
    }
    .shop-cart__submit {
        width: 100%;
    }
    
    .woosw-items tbody {
        grid-template-columns: 1fr 1fr;
        column-gap: 3px;
        row-gap: 20px;
    }
    .woosw-items tbody tr .woosw-item--image {
        margin-bottom: 5px;
    }
    .woosw-item--name {
        height: 39px;
        font-size: 10px;
        margin-bottom: 3px;
    }
    .woosw-item--price {
        font-size: 10px;
        margin-bottom: 10px;
    }
    .product.woocommerce.add_to_cart_inline {
        align-items: center;
    }
    .product.woocommerce.add_to_cart_inline a {
        height: auto;
        font-size: 12px;
        padding: 4px;
    }
    .woosw-item--delete {
        display: flex;
        margin-right: 8px;
    }
    .woosw-item--delete svg {
        width: 16px;
        height: 16px;
    }
    
    .checkout-content {
        flex-direction: column;
    }
    .checkout-main {
        width: 100%;
    }
    .checkout-block h3 {
        font-size: 12px;
    }
    .checkout-contact__form {
        padding: 10px;
    }
    .checkout-form-row label, .checkout-block__content-inputs label {
        width: 60px;
        flex-shrink: 0;
        font-size: 10px;
    }
    .checkout-form-row input, .checkout-block__content-inputs input {
        width: 100%;
    }
    .checkout-block__content span {
        font-size: 12px;
        align-items: center;
    }
    .checkout-block__content img {
        width: 15px;
    }
    .checkout-order__item-desktop {
        display: none;
    }
    .checkout-order__item-mobile {
        display: flex;
        flex-direction: column;
        padding: 5px 0;
        margin-bottom: 10px;
    }
    .checkout-order__item-mobile:last-of-type {
        margin: 0;
    }
    .checkout-order__item-top {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 14px;
    }
    .checkout-order__item-bottom {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 10px;
    }
    .checkout-order__qty {
        margin: 0;
    }
    .checkout-order__qty .quantity-selector {
        margin: 0;
    }
    .checkout-order__sum {
        margin-right: 0;
        margin-left: auto;
    }
    .checkout-order__remove {
        margin-right: 8px;
    }
    .checkout-block__header {
        font-size: 12px;
    }
    .checkout-sidebar {
        width: 100%;
    }
    
    #customer_login {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .policy ol, .policy ul {
        padding-left: 20px;
    }
}












