body {

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1301FE', endColorstr='#F4F60C', GradientType='1');
    background-repeat: no-repeat;
    color: #333;
    font-family: 'Josefin Sans', sans-serif;
    height: 100vh;
}

.head {
    display: block;
    text-align: center;
    padding: 30px;
}

.container {
    min-width: 260px;
    margin: 0 auto;
    padding: 25px;

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1301FE', endColorstr='#F4F60C', GradientType='1');

    -moz-box-shadow: 10px 10px 98px 12px rgba(66, 66, 66, 0.75);

}


/*Radio inputs*/

.radio-wrap {
    display: inline-block;
    width: 48%;
}

.radios label {
    display: inline-block;
    cursor: pointer;
    position: relative;
}


.radio-inline span {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-bottom: -3px;
    margin-right: 5px;
    border: 1px solid #333;
    border-radius: 50%;
    position: relative;
}

input[type="radio"]:checked ~ .radio-inline > span:before {
	content: " ";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #ff7b7b;
	border-radius: 50%;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
}

.form-control {
    border-radius: 2px;
    background-color: rgba(255, 255, 255, .15);
    color: #333;
    font-size: 25px;
}


input {
    display: block;
}

form {
    margin-top: 20px;
}

input[type=number]:focus {
    box-shadow: 0 1px 10px rgb(165, 134, 144);
    border: 2px solid rgb(248, 248, 248);
    
}
input[type=number]::-webkit-inner-spin-button {
  	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.btn {
    border: 2px solid #89253E;
    border-radius: 25px;
    background-color: transparent;
    color: #c9babd;
    transition: all 0.5s ease;
}

.btn:hover {
    background-color: #89253E;
    border: 2px solid #ad848e;
    color: #fff;
}
.btn:active:hover {
    background-color: #840223;
    border: 2px solid #650019;
    color: #fff;
}

.bf_container {
    text-align: center;
    font-size: 3em;
    white-space: nowrap;
}
.bf_desc {
    text-align: center;
    font-size: 2em;
}
/* --==MODAL==-- */

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(66, 66, 66, 0.75);
    margin: 0 auto;
}
.modal-content {
    background-color: #ffffff;
    color: #000;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 75%;
}
.close {
    color: #ff0000;
    float: right;
    font-size: 55px;
    opacity: 0.4;
    line-height: 0;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

