.sCalc .btn-primary-custom-icons.active .btn-info .fa-minus,
.sCalc .btn-primary-custom-icons.active .btn-info .fa-check {
    color: white;
}

.sCalc .btn-primary-custom-icons.active {
    background-color: #208cd6;
}

.sCalc .form-group input[type="checkbox"] {
    display: none;
}

.sCalc .form-group input[type="checkbox"] + .btn-group > label span {
    width: 20px;
}

.sCalc .form-group input[type="checkbox"] + .btn-group > label span:first-child {
    display: none;
}

.sCalc .form-group input[type="checkbox"] + .btn-group > label span:last-child {
    display: inline-block;
}

.sCalc .form-group input[type="checkbox"]:checked + .btn-group > label span:first-child {
    display: inline-block;
}

.sCalc .form-group input[type="checkbox"]:checked + .btn-group > label span:last-child {
    display: none;
}

.sCalc .btn-group label.btn-default.active {

}

.sCalc .form-group {
    margin-bottom: 15px;
}

.sCalc .col-md-4 {
    margin-left: 3em;
}

.sCalc .btn-group {
    display: flex;
    align-items: center;
}

.sCalc .btn-group label {
    margin-bottom: 0;
}

.sCalc .btn-group label span {
    margin-right: 3px;
}

.sCalc .btn-group label:last-child {
    margin-left: 3px;
}

.sCalc .total-amount {
    text-align: right;
    font-size: 30px;
    font-weight: bold;
    color: #157fda;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.selected-services {
    margin-top: 10px;
    font-size: 16px;
    color: black;
}

#development:checked + .btn-group > label.btn-default.active {
    background-color: #208cd6;
    color: white;
}

#docsform:checked + .btn-group > label.btn-default.active {
    background-color: #2b9ebb;
    color: white;
}

#procedure:checked + .btn-group > label.btn-default.active {
    background-color: #37b09e;
    color: white;
}

.old-price {
text-decoration: line-through;
color: red;
font-size: 30px;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
float: right;
}

.interactive_price {
    padding: 25px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}
.interactive_price:last-child {
    box-shadow: none;
    border-left: none;
    height: 100%;
    flex: 1;
}

@media (max-width: 767px) {
    .container.sCalc {
        margin-left: 0;
    }
    }
.sBtns {
    display: flex;
    align-items: center;
}
.btn-group label:first-child {
    flex: 1;
}
.sTitle h1 {
    font-weight: bold;
    margin: 0;
}
.sTitle h3, h3.sTitle {
    font-size: 18px;
    margin: 0 0 30px 0;
}
h3.sTitle {
    font-weight: bolder;
    margin-bottom: 15px;
}
#sTextResult {
    font-size: 14px;
    line-height: 21.5px;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 15px;
}
#sTextResult::-webkit-scrollbar {
    width: 5px;
}
#sTextResult::-webkit-scrollbar-track {
    background: #e7e7e7;
}
#sTextResult::-webkit-scrollbar-thumb {
    background: #888;
}
#sTextResult::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.interactive_price {
    height: 540px;
}

@media (max-width: 600px) {
    
    .form-group button {
        margin-top: 0;
    }
    .interactive_price {
        padding: 15px;
    }
    .form-group {
        margin-bottom: 10px;
    }
    .btn-group label.btn-default {
        font-size: 12px;
    }
    .sBtns {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .sBtns button {
        margin-top: 10px;
    }
    .sBtns + .form-group {
        margin: 0;
    }
    .btn-group label {
        width: calc(100% - 25px);
        height: 32px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn-group label i {
        font-size: 12px;
    }
    .btn-group label:last-child {
        width: 25px;
    }
    .form-group input[type="checkbox"] + .btn-group > label span {
        width: auto;
    }
    .form-group input, .form-group select {
        text-align: center;
    }

}
.sClose {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


.sPopup {
	width: 100%;
	height: 100%;
	background: rgba(55, 176, 158, .15);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 98;
	top: 0;
	left: 0;
	display: none;
}
.sPopupWindow {
	width: 350px;
	top: 120px;
	left: 50%;
	margin-left: -170px;
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .15);
	position: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sPopupWindow h1 {
	text-align: center;
	font-size: 22px;
}
.sAlert {
	width: 100%;
	text-align: center;
	background: #f3f3f3;
	border: 1px solid #e1e1e1;
	padding: 10px 15px;
	margin: 10px 0;
	border-radius: 8px;
	color: #ff0000;
	font-weight: 600;
}
.form_input {
	width: 100%;
	border-radius: 8px;
	border: 1px dashed #ccc;
	padding: 15px;
	text-align: center;
}
.form_group {
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px 0 0 0;
}
.sPopupWindow form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sBtn {
	background: #333;
	color: white;
	border-radius: 8px;
	padding: 15px 35px;
	border: none;
	margin: 15px auto 0 auto;
}









.sPopup {
	width: 100%;
	height: 100%;
	background: rgba(55, 176, 158, .15);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 98;
	top: 0;
	left: 0;
	display: none;
}
.sPopupWindow {
	width: 350px;
	top: 120px;
	left: 50%;
	margin-left: -170px;
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .15);
	position: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sPopupWindow h1 {
	text-align: center;
	font-size: 22px;
}
.sAlert {
	width: 100%;
	text-align: center;
	background: #f3f3f3;
	border: 1px solid #e1e1e1;
	padding: 10px 15px;
	margin: 10px 0;
	border-radius: 8px;
}
.sRules {
	color: #454545;
	font-size: 14px;

}
.form_input {
	width: 100%;
	border-radius: 8px;
	border: 1px dashed #ccc;
	padding: 15px;
	text-align: center;
}
.form_group {
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px 0 0 0;
}
.sPopupWindow form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sBtn {
	background: #333;
	color: white;
	border-radius: 8px;
	padding: 15px 35px;
	border: none;
	margin: 15px auto 0 auto;
}


.gray-placeholder::placeholder {
	color: #999;
	}

.calc_header {
    margin: 20px auto;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}