.minicart-container {
    transition: all 0.3s;
    right: 0;
    background-color: #fff;
}

@media (max-width: 500px) {
    .minicart-container {
        height: 100%;
    }
}

@media (min-width: 500px) {
    .minicart-container {
        width: 320px,
    }
}

.minicart-container::-webkit-scrollbar {
    width: 4px;
}

.minicart-container::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #fff;
}

.minicart-container::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #D9D9D9;
}

.minicart-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: calc(-90px + 100vh);
}

.minicart-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid rgb(221, 218, 216);
    font-size: 14px;
    border-radius: 4px 4px 0px 0px;
    background: #305988; 
}

.minicart-top button {
    background-color: transparent;
    background-image: none;
    padding: 0px;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    margin: 0px;
    color: inherit;
    border: none;
}

.minicart-top button::before, .minicart-top button::after {
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(226, 232, 240);
}

.minicart-top button svg {
    width: 12px;
    height: 12px;
}

.minicart-text {
    display: flex;
    align-items: flex-end;
    color: #F9F9F9;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

.minicart-item-name {
    color: #3C3C3B;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.917px;
    text-transform: uppercase;
}

.minicart-delete-button {
    background-color: transparent;
    background-image: none;
    padding: 0px;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    margin: 0px;
    color: inherit;
    border: none;
    align-self: flex-end;
    justify-self: center;
}

.minicart-delete-button svg {
    width: 12px;
    height: 14px;
}

.minicart-item-column {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    font-size: 10px;
    line-height: 16px;
    row-gap: 2px;
}

.minicart-item-price, .minicart-item-quantity {
    color: #6D6D6D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.25px;
    background: #FFF;
}

.minicart-item-quantity .checkout-quantity-selector {
    max-width: 83px;
    padding: 10px;
}

.minicart-bottom {
    padding: 0 8px;
    font-size: 12px;
    line-height: 20px;
}

.minicart-total-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}

.minicart-bottom .checkout-cart-total {
    margin: 0;
    padding: 0;
    border: none;
}

.minicart-bottom .checkout-cart-total-title {
    color: #305988;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
}

.minicart-bottom .checkout-cart-total-sum {
    color: #305988;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
}

.minicart-bottom .checkout-cart-total-sum .vat {
    color: #595959;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.4px;
}

.minicart-button {
    width: 100%;
}

.minicart-button a {
    padding-top: 14px;
    padding-bottom: 14px;
    color: #F9F9F9;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 1.5px;
    text-transform: uppercase; 
    margin: 15px 0;
    border-radius: 2px;
    background: #34AC67;
    color: #D9D9D9;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.shopping-cart-items {
    height: 100%;
    padding: 8px;
    overflow-y: auto;
}

.minicart-item {
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 16px;
    flex-direction: row;
    line-height: 15px;
    border-bottom: 1px solid rgb(221, 218, 216);
}

.minicart-item-row {
    display: flex;
}

.minicart-image-container {
    border-radius: 8px;
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    width: 56px;
    margin-right: 16px;
    overflow: hidden;
}

.minicart-content {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-top-color: transparent;
    color: #333;
    max-width: 425px;
    width: 100%;
    top: 90px;
    right: 140px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26) !important;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    opacity: 0;
    z-index: 10000;
    display: none;
    position: fixed;
}

@media (max-width: 1024px) {
    .minicart-content {
        right: 0;
        width: 100%;
    }
}

.minicart-content.show {
    display: block;
    opacity: 1;
}

.cart-prod-wrapper:before,
.cart-prod-wrapper:after {
    content: " ";
    display: table;
}

.cart-prod-wrapper:after {
    clear: both;
}

.shopping-cart-itens {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.minicart-content ul, .cart-content ul {
    list-style: none;
}

.cart-content ul {
    padding-left: 0;
}

.total-sum {
    font-weight: 600;
    font-size: 14px;
    margin-right: 5px;
}

.total-sum-amount {
    font-weight: 400;
}

.minicart-content ul li, .cart-content ul li {
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

/* Cart Dropdown Image */
.cart-image-wrapper {
    display: table;
    float: left;
    margin-right: 20px;
}

.cart-image {
    display: table-cell;
    height: 56px;
    vertical-align: middle;
}

.cart-image img {
    width: 56px;
}


/* Cart Dropdown Name and Price */
.cart-details {
    float: left;
    margin-right: 10px;
    width: 146px;
}

.cart-name {
    margin-bottom: 10px;
}

.cart-price {
    font-weight: 600;
}


/* Cart Dropdown Quantity */
.cart-qty {
    float: left;
    text-align: center;
    width: 30px;
}

.cart-delete {
    text-align: center;
    width: auto;
}

.cart-qty-name {
    font-size: 10px;
}

.cart-qty-value {
    font-weight: 600;
}


/* Cart Checkout Buttons */
.cart-btn {
    display: block;
    float: left;
    font-weight: 600;
    padding: 5px 0;
    text-align: center;
    transition: 0.3s;
    width: 122px;
}

.view-cart {
    border: 1px solid #bbb;
    color: #444;
    margin-right: 12px;
}

    .view-cart:hover {
        background: #ddd;
        color: #444;
    }

.checkout {
    max-width: 1084px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 33px;
}

.checkout-header .overline {
    margin: 0;
}

.checkout-container {
    width: 100%;
    border-top: 1px solid #EAEAEA;
}

.checkout-item {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    border-bottom: 1px solid #EAEAEA;
}

.checkout-item-row {
    display: flex;
}

.checkout-image {
    object-fit: contain;
    height: 104px;
    width: 104px;
}

.checkout-item-content {
    display: flex;
    gap: 4px;
    margin-left: 32px;
    font-size: 12px;
    width: 100%;
    justify-content: space-between;
}

.checkout-item-description {
    gap: 4px;
    margin-left: 32px;
    font-size: 12px;
    font-size: 10px;
    margin-bottom: 24px;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    min-width: 130px;
    max-width: 130px;
}

.checkout-custom-sku {
    height: 60px;
    border: 1px solid #EAEAEA;
    border-radius: 2px;
    padding: 0 11px;
}

.checkout-product-name {
    color: #305988;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
}

.checkout-product-price {
    color: #2B2B2A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
    padding-top: 12px;
}

.checkout-product-sku {
    color: #595959;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.4px;
}

.checkout-quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 8px;
    border: 1px solid rgb(221, 218, 216);
    max-height: 32px;
    max-width: 116px;
    border-radius: 4px;
    width: 100%;
}

.checkout-quantity-selector button {
    background-color: transparent;
    background-image: none;
    padding: 0px;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    margin: 0px;
    color: inherit;
    border: none;
    align-self: center;
}

.checkout-quantity-selector button svg {
    margin-left: 0px;
    margin-right: 0px;
    width: 9px;
    height: 9px;
}

.checkout-product-row-sum {
    color: #305988;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
    padding-top: 12px;
}

.checkout-product-remove {
    background-color: transparent;
    background-image: none;
    padding: 0px;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    margin: 0px;
    color: inherit;
    border: none;
    align-self: flex-start;
    margin-top: 22px;
}

.checkout-product-remove svg {
    width: 12px;
    height: 14px;
}

.checkout-cart-total {
    display: flex;
    justify-content: flex-end;
}

.checkout-cart-total-container {
    display: flex;
    gap: 48px;
}

.checkout-cart-total-title {
    color: #2B2B2A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
}

.checkout-cart-total-sum {
    color: #305988;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
}

.checkout-cart-total-sum .vat {
    color: #595959;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.4px;
}

.chackout {
    max-width: 1084px;
    margin: 0 auto;
}

.checkout-form {
    margin-top: 59px;
    margin-left: auto;
    margin-right: auto;
    max-width: 528px;
    width: 100%;
}

.delivery {
    border-top: 1px solid #EAEAEA;
    margin-top: 59px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 59px 0;
}

.checkout-button {
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    color: #F9F9F9;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    background: #34AC67!important;
    cursor: pointer;
    border: none;
}

.checkout-cart-summary {
    width: 100%;
    margin-top: 65px;
    margin-bottom: 60px;
}

.checkout-cart-summary-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 18px;
}

.checkout-cart-total-title {
    color: #3C3C3B;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

.checkout-cart-total-sum {
    color: #305988;
    text-align: right;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.15px;
}

.checkout-cart-total-sum .vat {
    color: #595959;
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.4px;
}

.checkout-cart-container {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.checkout-cart-item-contaier {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.checkout-title, .checkout-sum {
    color: #575757;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.444px;
}

.checkout-cart-grandtotal-container {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #EAEAEA;
    padding-top: 23px;
    margin-top: 18px;
}

.checkout-cart-grandtotal-title {
    color: #282828;
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: 37px;
    letter-spacing: 0.206px;
}

.checkout-cart-grandtotal-sum {
    color: #282828;
    text-align: right;
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: 37px;
    letter-spacing: 0.206px;
}

.checkout-cart-grandtotal-sum .vat {
    color: #595959;
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.4px;
}

.checkout-items-mobile {
    display: none;
}

.checkout-items-desktop {
    display: block;
}

@media (max-width: 1024px) {
    .checkout-items-mobile {
        display: block;
    }

    .checkout-items-desktop {
        display: none;
    }

    .shopping-cart-items {
        height: auto;
    }
}

.minicart-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.delivery-methods-container {
    display: flex;
    gap: 49px;
    padding-top: 20px;
    max-width: 628px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .delivery-methods-container {
        gap: 20px;
        flex-wrap: wrap;
    }
}

.delivery-method-content {
    flex: 0 1 50%;
    color: #6D6D6D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.25px;
    text-align: left;
}

@media (max-width: 1024px) {
    .delivery-method-content {
        flex-basis: 100%;
    }
}

.delivery-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 1 50%;
}

@media (max-width: 1024px) {
    .delivery-method-content, .delivery-methods {
        flex-basis: 100%;
    }
}

.delivery-method {
    border-radius: 2px;
    border: 1px solid #EAEAEA;
    padding: 28px 30px;
}

.delivery-container {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.delivery-container .delivery-label {
    text-align: left;
    color: #575757;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.444px; 
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.delivery-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.delivery-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    height: 24px;
    width: 24px;
    outline: 1px solid #3C3C3B;
    border-radius: 100%;
}

.delivery-container input:checked ~ .delivery-checkmark {
    background-color: #fff;
    color: #34AC67;
    outline-color: #34AC67;
}

.delivery-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.delivery-container input:checked ~ .delivery-checkmark:after {
    display: block;
}

.delivery-container .delivery-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid green;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.payment-methods-container {
    display: flex;
    gap: 49px;
    padding-top: 20px;
    max-width: 866px;
    width: 100%;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 1 100%;
}

.payment-method {
    border-radius: 2px;
    border: 1px solid #EAEAEA;
    padding: 28px 30px;
}

.payment-container {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.payment-container .payment-label {
    text-align: left;
    color: #575757;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.444px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.payment-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.payment-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    height: 24px;
    width: 24px;
    outline: 1px solid #3C3C3B;
    border-radius: 100%;
}

.payment-container input:checked ~ .payment-checkmark {
    background-color: #fff;
    color: #34AC67;
    outline-color: #34AC67;
}

.payment-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.payment-container input:checked ~ .payment-checkmark:after {
    display: block;
}

.payment-container .payment-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid green;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkout-comments textarea {
    border-radius: 2px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    width: 100%;
    height: 110px;
    padding: 29px 25px;
    margin-bottom: 16px;
}

.checkout-comments textarea::-ms-input-placeholder {
    color: #575757;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.444px;
}

.checkout-comments textarea::placeholder {
    color: #575757;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.444px;
}

.checkout-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 55px;
    border-bottom: 1px solid #EAEAEA;
}

.action-buttons {
    display: flex;
    gap: 31px;
}

.discount-submit {
    top: 17px;
    right: 17px;
    cursor: pointer;
    border: none;
    background: transparent;
}

.checkout-file {
    border-radius: 2px;
    border: 1px solid #EAEAEA;
    min-width: 249px;
    padding: 15px 24px;
    background: #fff;
}

.checkout-file label {
    display: flex;
    justify-content: space-between;
    align-content: center;
    color: #595959;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.467px;
}

.checkout-file label svg {
    position: relative;
    top: 2px;
}

.checkout-discount input {
    border-radius: 2px;
    border: 1px solid #EAEAEA;
    min-width: 249px;
    padding: 15px 24px;
    color: #595959;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.467px;
}

.checkout-discount input::placeholder {
    color: #595959;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.467px;
    opacity: 1;
}

.checkout-custom-sku::placeholder {
    color: #595959;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.467px;
    opacity: 1;
}