.qv-mask {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
}

.qv-wrapper {
    display: table-cell;
    max-height: 100%;
    vertical-align: middle;
}

.qv-container {
    width: 62%;
    margin: 0 auto;
    padding: 0 30px; /*20px 30px*/
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
    position: relative;
}

.qv-row {
    height: 100%;
    display: flex;
}

.qv-col {
    flex: 1 1;
}
.qv-col:nth-child(2) {
    flex: 0.84 1;
}

.qv-img {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qv-img img {
    max-height: 100%;
}

.qv-img.qv-img-shadow img {

}
.qv-img.qv-img-shadow img {

}

.qv-close {
    background-image: url(/front/icons/close-popup-bold.png);
    width: 16px;
    height: 16px;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 1;
}

.qv-content-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    position: relative;
}

.qv-title {
    font-family: BebasNeueBold,sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    text-align: left;
    padding-top: 45px; /*17px*/
}
.qv-title span {
    font-family: BebasNeueBook,sans-serif;
    font-weight: 400;
    text-align: left;
    text-transform: lowercase;
    display: block;
}

.qv-results {
    list-style-type: disc;
    flex-grow: 1;
}

.qv-results li {
    font-family: BebasNeueBook,sans-serif;
    font-size: 24px;
    text-align: left;
    position: relative;
    margin: 10px 0;
}

.qv-content-bottom {
    margin-top: auto;
    padding-bottom: 45px;
}
.qv-price {
    line-height: 34px;
    font-family: BebasNeueBold,sans-serif;
    font-size: 20px;
}

.qv-buttons-group {
    display: flex;
    flex-grow: 1;
}

.qv-dropdown .qv-dropdown-label {
    border: 1px solid #000;
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 25px 12px 15px;
}

.qv-button {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    line-height: 36px;
    border: 1px solid #000;
    text-transform: uppercase;
    padding: 0 15px;
    text-align: center;
}

.qv-cart-add {
    margin-left: 15px;
    transition: .2s linear;
}
.qv-cart-add:hover {
    background-color: #bee1ed;
}

.qv-show-detail {
    background-color: #bee1ed;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.qv-transition-enter {
    opacity: 0;
}

.qv-transition-leave-active {
    opacity: 0;
}

.qv-transition-enter .qv-container,
.qv-transition-leave-active .qv-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media (max-width: 1440px) {
    .qv-container {
        width: 70%;
    }
}

@media (max-width: 1376px) {
    .qv-container {
        width: 74%;
    }
}

@media (max-width: 1280px) {
    .qv-container {
        width: 78%;
    }
}

@media (max-width: 1200px) {
    .qv-container {
        width: 80%;
    }
    .qv-col:nth-child(2) {
        flex: 0.9 1;
    }
}
@media (min-width: 1025px) {
    .qv-container {
        min-height: 570px;
        display: flex;
        flex-direction: column;
    }
    .qv-row {
        flex-grow: 1;
    }
}
@media (max-width: 1024px) {
    .qv-container {
        width: 95%;
        height: 100%;
    }
    .qv-wrapper {
        padding: 10px 0;
    }
}

@media (max-width: 920px) {
    .qv-wrapper {
        padding: 10px 0;
    }
    .qv-row {
        flex-direction: column;
    }
    .qv-col {
        flex: unset;
    }
    .qv-img {
        height: 100%;
    }
    .qv-img img {
        max-height: 36vh;
    }
    .fg-768 {
        -webkit-flex-grow: 1;
        flex-grow: 1;
        display: flex;
        justify-content: center;
        position: relative;
    }
    .qv-buttons-group > * {
        flex-grow: 1;
    }
    .qv-dropdown .js-dropdown {
        width: 100%;
    }
    .qv-dropdown .c-dropdown_list {
        top: unset;
        bottom: 100%;
        border: 1px solid #000;
        border-bottom: 0;
    }
    .qv-results {
        padding-left: 20px;
    }
}

@media (max-width: 640px) {
    .qv-container {
        padding: 30px;
    }
    .qv-title {
        font-size: 20px;
        padding-top: 0;
    }
    .qv-results {
        padding-left: 22px;
    }
    .qv-results li {
        margin: 5px 0;
        font-size: 12px;
    }
    .qv-content-bottom {
        padding-bottom: 0;
    }
    .qv-button {
        font-size: 13px;
        line-height: 25px;
        padding: 0 5px;
    }
    .qv-show-detail {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .qv-img {
        width: 100%;
    }
    .qv-img img {
        /*height: 100%;*/
        width: auto;
        max-height: 100%;
        position: absolute;
    }
}

@media (max-width: 420px) {
    /*.qv-title {*/
    /*    font-size: 24px;*/
    /*}*/

}