.calc-main {
    display: flex;
    height: auto;
    padding: 8vh;
    background-color:#f7dc47;
    flex-direction: column;
}

.calc-element {
    /* margin: 1vh 8vh; */
    display: flex;
    flex-direction: column;
}

.calc-element-checkbox {
    margin-top: 1vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
select.calc-select_input
{
    padding-left: 1.5vh;
}

.calc-select_input {
    width: 100%;
    background-color: #fff;
    border: solid 3px #d51544;
    color: #000;
    font-weight: bold;
    margin-top: 1vh;
}


.calc-control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}
    .calc-control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }
.calc-control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border: 1px solid #000000;
    border-radius: 0px;
}
.calc-control:hover input ~ .calc-control_indicator,
.calc-control input:focus ~ .calc-control_indicator {
    background: #cccccc;
}
.calc-control input:checked ~ .calc-control_indicator, .calc-control:hover input:not([disabled]):checked ~ .calc-control_indicator,
.calc-control input:checked:focus ~ .calc-control_indicator {
    background: #d51544;
}
.calc-element-title h3:after{
    background-color: #d51544 !important;
}
.calc-control input:disabled ~ .calc-control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.calc-control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.calc-control input:checked ~ .calc-control_indicator:after {
    display: block;
}
.calc-control-checkbox .calc-control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: flex;
    flex-direction: row;
}
/* .calc-control-checkbox input:disabled ~ .calc-control_indicator:after {
    border-color: #7b7b7b;
} */
.calc-total_price_cost, .calc-element_price {
    color:#fff;
}
.calc-checkbox-label {
    margin-right: 2vh;
}
.calc-total_price_header, .calc-checkbox-label, .calc-total_price_info, .calc-element_title, .calc-slider-option {
    color:#000;
} 

.calc-control-checkbox {
    min-width: 25%;
}

.calc-element_title {
    font-weight: 600;
    font-size: 22px;
}


.calc-element_info {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-items: left;
    margin-top: 1.3vh;
}

.calc-element_price {
    width: 7vh;
    height: 5vh;
    background-color: #d51544;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    border-radius: 25px;
    font-weight: bold;
}

.calc-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2.5vh;
}

.calc-slider-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5vh;
    margin-bottom: 1.5vh;
}
.calc-category-name{
    font-size: 30px;
    margin-top: 45px;
}
.calc-element-title{
    margin-top: 45px;
}
@media (max-width: 480px){
    .calc-category-name{
        font-size: 24px;
        }
    .calc-element_title{
        font-size: 18px;
        width: 6vh;
        height: 4vh;
    }
    .calc-element-checkbox {
        flex-direction: column;
    }
}
.calc-category-name::first-letter {
    text-transform: uppercase;
}

.calc-total_price {
    display: flex;

    align-items: center;
    flex-direction: column;
    margin: 3vh;
}

.calc-total_price_header {
    font-weight: 900;
    font-size: 3vh;
}

.calc-total_price_area {
    width: 20vh;
    height: 8vh;
    background-color: #d51544;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    margin: 3vh;
}

.calc-total_price_cost {
    font-weight: bold;
    font-size: 3vh;
}

.calc-total_price_info {
    display: flex;
    font-weight: bold;
    animation: pulse 1s alternate infinite ease-in;
}


@keyframes pulse {
    0%   {transform: scale(1);}
    100% {transform: scale(1.02);}
}

@keyframes fadein {
    from { opacity: 0; height: 0vh; }
    to   { opacity: 1; height: 6vh; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; height: 0vh; }
    to   { opacity: 1; height: 6vh; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; height: 0vh; }
    to   { opacity: 1; height: 6vh; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; height: 0vh; }
    to   { opacity: 1; height: 6vh; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; height: 0vh; }
    to   { opacity: 1; height: 6vh; }
}