.test{
    color: red;
    font-size: 30px;
}
#calc-galaxy{
    font-family: var( --e-global-typography-d81b67e-font-family ), Sans-serif;
    font-size: 15px;
    font-weight: var( --e-global-typography-d81b67e-font-weight );
}

@media (max-width: 768px){

    .calc-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: row;
        gap: 15px;
        margin: 0 15px;
    }

    .calc-wrapper .calc-param
    {
        display: flex;
        gap: 15px;
        flex-direction: column;
    }
    .calc-wrapper .facture, .calc-wrapper .manufacturer, .calc-wrapper .room, .calc-wrapper .light{
        width: 100%;
    }
    .calc-wrapper .manufacturer-item{
        flex-basis: calc((100% - 15px)/ 2);
    }
    .calc-result .bottom{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact-data{
        flex-direction: column;
    }
    .button-wrapper, .button-wrapper button{
        width: 100%;
    }
}

@media (min-width: 769px){
    .calc-wrapper .facture{
        width: calc((100% - 20px)/ 3 * 1);
        margin: 0 0 40px 0;
    }
    .calc-wrapper .manufacturer{
        width: calc((100% + 183px)/ 2 * 1)
    }
    .calc-wrapper .manufacturer-item{
        flex-basis: calc((100% - 30px)/ 3);
    }
    .calc-wrapper .room, .calc-wrapper .light{
        width: calc((100% + 1px)/ 4 * .7);
    }
    .calc-result .bottom{
        flex-direction: row;
        justify-content: space-between;
    }
    .bottom .final-price {
        display: flex;
        align-items: center;
    }
    .bottom .final-price p{
        margin-bottom: 0;
        font-size: 20px;
    }
}

.calc-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-wrapper .room, .calc-wrapper .light{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.calc-wrapper *>p.title{
    width: 100%;
    padding: 15px 10px;
    font-weight: 700;
    text-align: center;
    background-color: #f6f6f6;
    border-radius: 5px;
}
.calc-wrapper .facture .body, .calc-wrapper .manufacturer .body{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.calc-wrapper .facture .body div{
    width: calc((100% - 15px)/ 2);
    -ms-flex-preferred-size: calc((100% - 15px)/ 2);
    flex-basis: calc((100% - 15px)/ 2);
    padding: 11px 0;
    border-radius: 5px;
    border: 1px solid #f6f6f6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.calc-wrapper .manufacturer-item{
    padding: 11px 5px;
    border-radius: 5px;
    border: 1px solid #f6f6f6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.calc-wrapper .calc-param{
    display: flex;
    gap: 15px;
}
.calc-wrapper .facture .body div.cheked, .calc-wrapper .manufacturer-item.cheked{
    background:  #643E8E;
    color: white;
}
.room .square .value, .room .angles .value, .light .calc_fixtures .value, .light .chandeliers .value{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.value .calc-button{
    background: #643E8E !important;
    color: white !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.value .calc-button, .value input{
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}
.value input{
    width: 70px;
    border:0
}
.calc-result .disclaimer p{
    text-align: center;
    margin: 0 auto 50px auto;
    max-width: 750px;
    font-weight: 400;
    font-size: 15px;
}
.calc-result .bottom {
    display: flex;
}
.calc-result .contact-data{
    display: flex;
    gap: 20px;
    align-items: center;
}
.calc-result .button-wrapper button{
    padding: 11px 20px;
    border-radius: 5px;
    border: 1px solid #f6f6f6;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.calc-result .button-wrapper button:disabled{
    opacity: 0.6;
}
.calc-result .button-wrapper button:hover{
    transform: scale(1.1);
}
.manufacturer-empty{
    min-width: 100%;
    text-align: center;
}
.cheked .cold-feature {
    background: url('../images/cold-white.svg');
}
.cheked .fire-feature {
    background: url('../images/fire-white.svg');
}
.cold-feature {
    margin: 5px;
    min-width: 24px;
    height: 24px;
    background: url('../images/cold-dark.svg');
    color: #643E8E;
}

.fire-feature {
    margin: 5px;
    min-width: 24px;
    height: 24px;
    background: url('../images/fire-dark.svg');
    color: #643E8E;
}

.tooltip {
    position: relative;
    display: inline-block;
}

/* Текст подсказки */
.tooltip .tooltiptext {
    visibility: hidden;
    max-width: 220px;
    background-color: #f2f3f8;
    text-align: center;
    padding: 5px;
    border-radius: 6px;

    position: absolute;
    z-index: 1;
    left: 35px;
    top: 0;
    font-size: 15px;
    color: rgb(31, 31, 31);
    box-shadow: 1px 0 50px 0 rgba(34, 60, 80, 0.3);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}


