#modal-qv {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 4;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 80px rgba(47, 54, 56, 0.09);
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.close-btn {
    background-color: white;
    position: absolute;
    top: 32px;
    right: 32px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
    padding: 2px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.close-btn > img{
    width: 16px;
}
#modal-qv.active {
    display: flex;
    overflow-y: auto;
    animation: modal-appear 0.5s ease;
}

@keyframes modal-appear {
    0%{ opacity: 0;}
    100%{ opacity: 1;}
}

#modal-qv > .container {
    border-radius: 10px;
    padding: 48px;
    background-color: #fff;
    margin-top: -100px;
    transition: 0.5s all ease;
    max-width: 800px;
    box-sizing: border-box;
}
#modal-qv.active > .container {
    margin-top: 0px;
    transition: 0.5s all ease;
}

.modal-qv-head {
    gap: 48px;
    align-items: flex-start;
}

.modal-qv-images {
    width: 532px;
}

.modal-qv-image-wrapper {
    text-align: center;
    border-bottom: 6px solid var(--secondary-theme-color);
}

.modal-qv-image-wrapper img {
    /*justify-self: center;*/
    width: auto !important;
    height: 125px;
    margin: 0 auto;
}

.modal-qv-selected-image img{
    height: 425px;
}

.modal-qv-info {
    flex-grow: 1;
}

.modal-qv-code {
    color: #A1A7AA;
    margin-left: 4px;
}

.modal-qv-parceled {
    display: block;
    color: #7C878E;
}

.modal-qv-reviews {
    margin-top: 16px;
    align-items: center;
    gap: 8px;
}

.modal-qv-reviews-qtd {
    color: #7C878E;
}

.modal-qv-stars svg.active path{
    fill: #EFD26B;
}

.modal-qv-wishlist {
    margin-top: 16px;
    background-color: transparent;
}

.modal-qv-wishlist > a.flex-container {
    align-items: center;
    color: #7C878E;
}

.modal-qv-wishlist svg {
    margin-right: 8px;
}

.modal-qv-wishlist.active path {
    stroke: #ff0000;
    fill: #ff0000;
}

.modal-qv-color-selected {
    display: block;
    margin-top: 16px;
}

.modal-qv-color-options {
    gap: 8px;
    margin-top: 13px;
}

#modal-qv .product-color-ball:hover {
    cursor: pointer;
}

#modal-qv .product-color-ball.active {
    border: 1px solid var(--secondary-theme-color);
}

.modal-qv-sizes {
    margin-top: 16px;
    color: #7C878E;
}

.modal-qv-sizes-list {
    gap: 8px;
    margin-top: 13px;
}

.modal-qv-size-item {
    width: 34px;
    height: 34px;
    background: #F6F6F6;
    border-radius: 50%;
    color: #7C878E;
    align-items: center;
    justify-content: center;

    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

.modal-qv-size-item:hover {
    background: #e9e9e9;
    cursor: pointer;
}

.modal-qv-size-item.active {
    background-color: #7C878E;
    color: #fff;
}

.modal-qv-actions {
    margin-top: 16px;
    align-items: center;
    gap: 16px;
}

.modal-qv-actions-item {
    align-items: center;
    gap: 8px;
}

.modal-qv-actions-icon {
    padding: 4px;
    border: 0.2px solid #C6CDD1;
    border-radius: 1px;
}

.modal-qv-stock-warn {
    margin-top: 16px;
    padding: 11px 24px;
    border: 1px solid #7C878E;
    color: #7C878E;
    width: max-content;
}

.modal-qv-stock-qtd {
    color: var(--secondary-theme-color);
}

.modal-qv-buttons {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #CED7DC;
}

.modal-qv-input-qtd {
    border: 1px solid #7C878E;
    border-radius: 5px;
    width: max-content;
    margin-top: 8px;
}

.modal-qv-input-qtd input::-webkit-inner-spin-button {
    -webkit-appearance: none; 
    margin: 0;
    -moz-appearance: textfield;
}

.modal-qv-input-qtd button, .modal-qv-input-qtd input{
    height: 40px;
    box-sizing: border-box;
}

.modal-qv-input-qtd button {
    width: 45px;
    background-color: transparent;
    align-items: center;
    justify-content: center;

    background-color: transparent;

    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

.modal-qv-input-qtd button:hover{
    background-color: #eed3d7;
}

.modal-qv-input-qtd button:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.modal-qv-input-qtd button:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.modal-qv-input-qtd input {
    color: var(--secondary-theme-color);
    width: 53px;
    text-align: center;
    border: 0;
    border-left: 1px solid #7C878E;
    border-right: 1px solid #7C878E;
}

.modal-qv-btn-buy, .modal-qv-btn-add {
    display: inline;
}

.modal-qv-btn-buy.disabled, .modal-qv-btn-add.disabled {
    opacity: 0.5;
}

.modal-qv-btn-buy.disabled:hover, .modal-qv-btn-add.disabled:hover {
    cursor: not-allowed;
}

.modal-qv-btn-buy {
    width: 146px;
    margin-top: 16px;
}

.modal-qv-btn-add {
    width: 216px;
    margin-left: 11px;
}

.modal-qv-description-link {
    display: block;
    margin-top: 16px;
}

.modal-qv-foot {
    margin-top: 60px;
}

.modal-qv-list {
    margin-top: 32px;
    justify-content: space-between;
}

#modal-qv .card-produto .product-parceled {
    margin-top: 4px;
}

#modal-qv .product-options-select {
    gap: 8px;
}

#modal-qv .product-options-select select.input-default {
    border: 1px solid #7C878E;
    flex-grow: 1;
}

#modal-qv .product-options-select select[name='cor'] {
    width: 100px;
}

#modal-qv .product-info-foot {
    margin-top: 16px;
}

#modal-qv .product-add-btn {
    width: 100%;
}

.sold-off-text {
    display: block;
    margin-top: 24px;
}

#modal-qv .product-info-content {
    height: auto;
}

#modal-qv .card-produto:hover .product-quick-view {
    max-height: 3px;
}

#modal-qv .spp-single-item-description {
    display: none;
}

@media screen and (max-width: 750px) 
{
    #modal-qv {
        align-items: flex-start;
    }
    #modal-qv.active > .container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
