.fence-calc {
    position: relative;
}

.fence-calc__title {
    margin: 0;
    
    font-size: 14px;
    font-weight: 500;
}

.fence-calc__radio-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fence-calc__radio-group {
    display: block;
    
    cursor: pointer;
}

.fence-calc__radio {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.fence-calc__radio:checked + .fence-calc__custom-radio::before {
    background-color: #FF7000;
    border-color: #FF7000;
}

.fence-calc__custom-radio {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    color: #727376;
}

.fence-calc__custom-radio::before {
    content: "";
    
    width: 10px;
    height: 10px;
    
    border: 1px solid #cccccc;
    border-radius: 50%;
}

.fence-calc__input-group {
    display: block;
}

.fence-calc__input-group--position-bottom {
    margin-left: 5px;
    margin-top: 10px;
}

.fence-calc__input-group--position-right {
    position: absolute;
    left: 180px;
    top: 80px;
}

.fence-calc__input {
    display: block;
    width: 150px;
    box-shadow: none;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff !important;
    color: #727376;
    text-shadow: none;
    font-size: 16px;
    font-weight: normal;
    display: flex;
    align-items: center;
}


.fence-calc__scheme {
    display: block;
    max-width: 160px;
    width: 100%;
    height: auto;
}

.fence-calc__scheme--mirrored {
    transform: scale(-1, 1);
}

.fence-calc-total-price {
    display: inline-block;
    margin-left: 15px;
    
    font-size: 20px;
    font-weight: 700;
}

.fence-calc-small-price {
    font-size: 14px;
}

@media (max-width: 768px) {
    .fence-calc-total-price {
        margin-left: 10px;
    }
    
    .fence-calc-small-price {
        font-size: 13px;
    }
}



.cart-total-price-small {
    font-size: 14px;
}

.cart-total-price {
    display: inline-block;
    margin-left: 15px;
}