/* =========================== 
    Texts 
=========================== */

.drawer__title-txt {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0px;
    opacity: 1;
}

.drawer__item_title-txt {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0px;
    opacity: 1;
}

.drawer__item_price-txt {
    font-size: 22px;
    line-height: 35px;
    letter-spacing: 0px;
    opacity: 1;
}

.drawer__item_btn-txt {
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0px;
    opacity: 1;
}

.drawer__empty-txt {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0px;
    opacity: 1;
}

.drawer__notice-txt {
    font-size: 15px;
    line-height: 35px;
    letter-spacing: -0.6px;
    opacity: 1;
    text-align: right;
}

.drawer__item_qty-txt {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0px;
    opacity: 1;
}

/* =========================== 
    Containers 
=========================== */

.drawer__container {
    position: fixed;
    top: 31px;
    right: 36px;
    width: 460px;
    height: 94vh;
    border-radius: 5px;
    background-color: #EAE6DF;
    padding: 30px 11px;
}

.drawer__container--basket {
    padding: 30px 11px 14px 11px;
}

.drawer__content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.drawer__head {
    width: 100%;
    height: 10%;
    border-bottom: 0.5px solid black;
}

.drawer__favimg {
    width: 26px;
    height: 26px;
}

.drawer__baskimg {
    width: 42px;
    height: 42px;
}

.drawer__title {
    margin-left: 10%;
}

.close__drawer {
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.drawer__item {
    width: 100%;
    height: 18%;
    border-bottom: 0.5px solid black;
    position: relative;
}

.item__remove {
    position: absolute;
    top: 10px;
    right: 10px;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.img_removeitem {
    width: 15px;
    height: 15px;
}

.item__inner {
    width: 95%;
    height: 85%;
    margin-left: 1%;
}

.drawer__item--left {
    width: 30%;
    /*height: 100%;*/
    background-color: white;
}

.drawer__prodimg {
    height: 80%;
    width: auto;
    max-height: 116px;
}

.drawer__item--right {
    width: 60%;
    height: 100%;
}

.item__carticon {
    height: 27px;
    width: 27px;
    margin-left: 1%;
    filter: invert(100%);
}

.item__button {
    background-color: black;
    border: none;
    outline: none;
    width: 100%;
    height: 39px;
    border-radius: 5px;
}

.item__buttontext {
    margin-left: 2%;
}

.drawer__item--empty {
    width: 100%;
    height: 18%;
}

.drawer__bottom {
    width: 100%;
    height: 17.5%;
    border-top: 0.5px solid black;
}

.bottom__inner {
    width: 100%;
    height: 93%;
}

.carttotal__container {
    width: 93%;
    height: calc(100% - 60px);
}

.carttotal__inner {
    width: 92%;
    height: 100%;
}

.cart__submit {
    width: 100%;
    height: 60px;
    /*background-color: #000;*/
    border: none;
    outline: none;
    border-radius: 5px;
    justify-content: space-evenly;
    text-align: center;
}

.drawer__item_row {
    width: 100%;
}

.item__qty {
    width: 30px;
    height: 30px;
    background-color: white;
}

.drawer__item--basket {
    height: 25%;
}

.drawer__overlay {
    opacity: 1;
    /*transition: opacity ease-out 0.3s;*/
    z-index: 10001;
    transform: translateX(100%);
    transition: all .25s ease-out;
}
.minicart-visible .drawer__overlay {
    transform: translateX(0);
}
.overlay__hidden {
    opacity: 0;
}

.drawer__item--hide {
    opacity: 0;
    transition: opacity ease-out 0.3s;
}
.trnsphdr.minicart-visible {
    overflow: hidden;
    height: 100vh;
}
.drawer__container .drawer__item--left {
    width: 30%;
    /*height: 100%;*/
    aspect-ratio: 1;
    background-color: white;
}
.drawer__container .drawer__item--left a {
    height: 100%;
    width: 100%;
}
.drawer__container .drawer__item--left img {
    object-fit: contain;
    height: 100%;
}

@media screen and (max-width: 640px) {
    .drawer__container--basket {
        width: 95vw;
        height: 100%;
        top: 0;
        right: 0;
        left: unset;
    }
}

.gift_part__icon {
    width: 24px;
    margin-left: 5px;
}