/* iledysile-ajax-add-to-cart.css */

.iledysile-container-product-added {
    right: -100%;
    top: 0;
    position: fixed;
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1 !important;
    color: black !important;
    transition: right 0.5s ease-in-out;
}

.iledysile-container-product-added.show {
    right: 0;
    display: flex !important;
}

.iledysile-first-row,
.iledysile-second-row,
.iledysile-third-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.iledysile-first-row {
    display: flex;
    height: 20%;

}

.iledysile-second-row {
    height: 40%;
    display: flex;
    flex-direction: row;
}

.iledysile-third-row {
    height: 40%;
}

.iledysile-col-left {
    width: 19%;
    background-color: transparent;
    min-height: 100%;
    border-bottom: 2px solid black;
}

.iledysile-col-right {
    width: 67%;
    background-color: #e5e5e5;
    border-bottom: 2px solid black;
}

.iledysile-col-right.first {
    display: flex;
}

.iledysile-col-left.third {
    border-bottom: unset;
}

.iledysile-col-right.third {
    border-bottom: unset;
}

.iledysile-message {
    padding: 6%;
    font-size: clamp(14px, 1.1vw, 30px);
}

.iledysile-subrow-message {
    display: flex;
    align-items: center;
    justify-content: center;
}

.iledysile-tick {
    font-size: 18px;
    padding-left: 5%;
}

.iledysile-subrow-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(14px, 1.1vw, 30px);
    margin-bottom: 10%;
}

.iledysile-subcol-left {
    padding-left: 13%;
}

.iledysile-subcol-middle {
    padding-right: 10%;
}

.iledysile-col-middle.second {
    width: 60%;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.iledysile-col-right.second {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.iledysile-col-right.third {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.iledysile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #43454b;
    background-color: #e5e5e5;
    width: 52%;
    text-align: center;
    height: 60px;
    transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
}


.iledysile-link:hover {
    background-color: #F1DEFC;
    border: 2px solid #F1DEFC;
    color: #4f4f4f;
}

.iledysile-link.second {
    margin: 3%;
}

.iledysile-link.third {
    background-color: #43454b !important;
    border: 2px solid #43454b !important;
    color: #ffffff !important;
    transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease !important;
    text-decoration: none !important;
    height: 60px !important; 
}

.iledysile-link.third:hover {
    background-color: #8d8d8d !important;
    border: 2px solid #8d8d8d !important;
    color: #ffffff !important;
}

.iledysile-remove-product {
    color: black;
    background-color: transparent;
    transition: 0.5s ease;
}

.iledysile-remove-product:hover {
    background-color: transparent !important;
    color: #b9b9b9 !important;
}
.iledysile-product-thumbnail {
    width: clamp(6.25vw, 7vw, 140px);
    height: clamp(15vh, 17vh, 185px);
    object-fit: cover;
}

.iledysile-close-btn {
    color: black !important;
    font-size: 40px;
    font-weight: lighter;
    cursor: pointer;
    padding-left: 1em;
    transition: 0.5s ease;
    background-color: transparent;
}

.iledysile-close-btn:hover {
    background-color: transparent !important;
    color: #b9b9b9 !important;
}

.woocommerce-message {
    position: relative;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.woocommerce-message::before {
    display: none !important;
}

@media (max-width: 768px) {
	.iledysile-container-product-added {
		right: -150%;
		width: 150%;
        z-index: 10000 !important;
	}
    .iledysile-product-thumbnail {
        width: clamp(6.25vw, 34vw, 140px);
        height: clamp(15vh, 22vh, 165px);
    }
    .iledysile-remove-product {
        display: none;
    }
    .iledysile-tick {
        margin-right: 0;
    }
    .iledysile-subcol-middle {
        padding: 7%;
    }
    .iledysile-subrow-message {
        margin-bottom: 5%;
    }
}