/******************************************************************************
* ldsesPopupOptionsStockToCart.css
*******************************************************************************

*******************************************************************************
*                                                                             *
* Copyright 2025									                          *
*                                                                             *
******************************************************************************/


.ldsesContainerOptionsStock * {
    font-family: 'Poppins', serif;
}

.ldsesContainerOptionsStock {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000075;
    z-index: 999;
    align-content: center;
}

.ldsesContainerOptionsStock .ldsesContainerOptionsStk {
    background: white;
    width: 70%;
    margin: auto;
    height: 300px;
    border-radius: 7px;
    padding: 20px 25px;
}

.ldsesContainerOptionsStock .ldsesContainerHeaderStk {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
}

.ldsesContainerOptionsStock .ldsesContainerHeaderStk .ldsesContainerLogo,
.ldsesContainerOptionsStock .ldsesContainerHeaderStk .ldsesContainerHeaderInfo {
    align-content: center;
}

.ldsesContainerOptionsStock .ldsesContainerHeaderStk .ldsesContainerHeaderInfo span {
    font-size: 16px;
    font-weight: bold;
}

.ldsesContainerOptionsStock .ldsesContainerModalStk {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ldsesContainerOptionsStock .ldsesContainerHeaderStk,
.ldsesContainerOptionsStock .ldsesContainerFooterStk {
    height: 20%;
}

.ldsesContainerOptionsStock .ldsesContainerBodyStk {
    height: 60%;
    align-content: center;
    padding: 0 20px;
    margin: 0 auto;
}

.ldsesContainerListOptions {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.ldsesContainerListOptions .ldsesStyledInputs {
    position: absolute;
    opacity: 0;
}

.ldsesContainerListOptions .ldsesStyledInputs + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.ldsesContainerListOptions label {
    font-size: 13px;
}

.ldsesContainerListOptions .ldsesStyledInputs + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #d5d5d5;
    border-radius: 6px;
}

.ldsesContainerListOptions .ldsesStyledInputs:hover + label:before {
    background: #73b50e;
}

.ldsesContainerListOptions .ldsesStyledInputs:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.ldsesContainerListOptions .ldsesStyledInputs:checked + label:before {
    background: #73b50e;
}

.ldsesContainerListOptions .ldsesStyledInputs:checked + label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}


.ldsesContainerOptionsStock .ldsesContainerFooterStk {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.ldsesContainerOptionsStock .ldsesContainerStkCancel,
.ldsesContainerOptionsStock .ldsesContainerStkConfirm {
    border-radius: 7px;
    padding: 10px 15px;
    background: #a7a6a6;
    height: fit-content;
    width: fit-content;
    cursor: pointer;
}

.ldsesContainerOptionsStock .ldsesContainerStkConfirm {
    background: #14a713;
}

.ldsesContainerOptionsStock .ldsesContainerStkCancel span,
.ldsesContainerOptionsStock .ldsesContainerStkConfirm span {
    color: #ffffff;
    font-size: 14px;
}

