.open-preezie-popup {
    position: fixed;
    top: 50%;
    right: -55px;
    z-index: 99;
    transform: rotate(-90deg);
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
    text-decoration: none;
}
.open-preezie-popup:hover {
    color: #fff;
}

.preezie-widget-div {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 219, 196, 0.92);
    border-radius: 0px;
    background-color: rgb(249, 231, 219);
    padding: 10px 20px;
}
.preezie-widget-app {
    display: flex;
    align-items: center;
    flex-direction: row;
    overflow: visible !important;
}
.preezie-answers {
    flex: 1 0 70%;
    background-color: white;
    border-radius: 15px;
    box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
    padding-top: 5px;
}
.preezie-question {
    text-align: center;
    margin-bottom: 20px;
    padding-right: 35px;
    padding-bottom: 0px;
}
.question-title {
    color: rgb(74, 74, 74);
    font-weight: normal;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
}
.preezie-items-answers {
    width: 100%;
    margin: 0px auto 20px auto;
    padding: 0px 20px;
    flex-flow: row wrap;
    text-align: center;
    justify-content: center;
    list-style-type: none;
    display: flex;
    gap: 30px;
}
.preezie-answer {
    flex: 0 1 0%;
    cursor: pointer;
    display: flex;
    flex-flow: column nowrap;
    min-width: 120px;
    width: 120px;
    height: auto;
    box-sizing: content-box !important;
    position: relative;
}
.preezie-answer > label {
    text-align: center;
    position: absolute;
}
.preezie-product_question {
    flex-direction: column;
    display: flex;
    margin-bottom: 10px;
    margin-top: auto;
    width: 100%;
}
.preezie-product_question p {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    margin: 5px;
}

@media screen and (min-width: 768px) {
    .preezie-answer > label:hover {
        background-color: rgb(22, 22, 22);
        opacity: 0.3;
        width: 120px;
        border-radius: 50%;
        height: 120px;
    }
    .preezie-product_question {
        width: 50%;
    }
}
.preezie-answer > label > input {
    /*width: 30px;*/
    /*height: 30px;*/
    /*border: 1px solid rgb(221, 212, 219);*/
    /*border-radius: 50%;*/
    /*background-color: transparent;*/
    /*cursor: pointer;*/
    width: 120px;
    height: 120px;
    visibility: hidden;
    margin: 0;
}
.preezie-answer > label > input:checked::before {
    background-color: rgb(22, 22, 22);
    opacity: 0.3;
    width: 120px;
    border-radius: 50%;
    height: 120px;
    content: "";
    display: block;
    visibility: visible;
}
.preezie-button {
    width: 100%;
    display: flex;
    position: relative;
    margin-bottom: 10px;
    justify-content: space-evenly;
}

#next-preezie {
    font-size: 14px;
    cursor: pointer;
    visibility: visible;
    font-weight: bolder;
    width: 140px;
    min-width: 140px;
    height: 44px;
    min-height: 44px;
    border-radius: 0px;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 22, 22);
    opacity: 0.5;
    border: 1px solid rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#prev-preezie {
    font-size: 14px;
    cursor: pointer;
    visibility: visible;
    font-weight: bolder;
    width: 140px;
    min-width: 140px;
    height: 44px;
    min-height: 44px;
    border-radius: 0px;
    color: rgb(255, 255, 255);
    background-color: rgb(241, 95, 56);
    opacity: 1;
    border: 1px solid rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.preezie-button .visible {
    opacity: 0 !important;
}

.result-title {
    color: rgb(0, 0, 0);
    font-size: 25px;
    margin: 0px;
    padding: 0px 10px;
    text-align: center;
    font-weight: 400;
    line-height: 1.4em;
    text-transform: none;
    max-width: 100% !important;
}

.reset-block {
    width: 100%;
    margin: 20px auto;
    position: relative;
    text-align: center;
}

#preez-restart-button {
    font-size: 14px;
    cursor: pointer;
    visibility: visible;
    font-weight: bolder;
    width: 110px;
    min-width: 110px;
    height: 30px;
    min-height: 30px;
    border-radius: 0px;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 22, 22);
    opacity: 1;
    border: 1px solid rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category-free-product{
    border: 12px solid #ffc3a6;
    background: transparent;
    background: linear-gradient(10deg,rgba(255, 195, 166, 1) 10%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0) 20%);
}

@media screen and (max-width: 767px) {
    .preezie-widget-app {
        flex-direction: column;
    }
    .preezie-items-answers {
        gap: 15px;
    }
    .preezie-answer > label > input {
        width: 80px;
        height: 80px;
    }
    .preezie-answer {
        min-width: 80px;
        width: 80px;
    }

    .preezie-answer > label > input:checked::before {
        width: 80px;
        height: 80px;
    }
}