*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: #4c5b68;
    font-weight: bold;
}
body{
    background-color: #ecf6fa;
}
hr{
    border-top:#f6f9f9;
}
.red{
    color: red;
}
.content{
    background-color: #fff;
    position: absolute;
    width: 70%;
    left: 10%;
    height: 700px;
    top: 10%;
    padding-left: 5%;
    padding-right: 5%;
}
.header{
    height: 10%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 250%;
}

/*radio*/

.radio_container{
    display: grid;
    width: 100%;
    grid-template-columns: 18% 18% 18% 18% 18%;
    align-items: start;
    justify-content: space-between;
    font-weight: 100;
}
.radio_buttons{
    text-align: center;
    border: solid 1px #eeeeee;
    height: 100px;
    margin-bottom: 25px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 10px;
}
.radio_buttons input{
    width: 100%;
    height: 100px;
    opacity: 0;
}
#radio_text{
    top: -80px;
    position: relative;
    font-size: 16px;
    pointer-events: none;
    font-weight: 500;
}
.checkmark {
    display: inline-block;
    position: relative;
    top: -90px;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 4px;
    pointer-events: none;
    color: #fff;
}
.radio_buttons:hover input ~ .checkmark {
  background-color: #ccc;
}
.radio_buttons input:checked ~ .checkmark {
    background-color: #34b233;
}
.radio_buttons input:checked ~ .checkmark:after {
  content: "✓";
}

/*sum_box*/

.Select_sum{
    width: 50%;
    position: relative;
    bottom: 0px;
    height: 300px;
    margin: 0;
}
#sum_title{
    position: relative;
    top: 20px;
}
#right_column{
    position: relative;
    top: 100px;
    width: 50%;
    float: right;
}
#left_column{
    position: relative;
    top: 161px;
    width: 50%;
}
#start_sum{
    position: relative;
    top: 95px;
    width: 40px;
    font-weight: 200;
}
#end_sum{
    position: relative;
    top: 78px;
    float: right;
    font-weight: 200;
}
#line1{
    position: relative;
    top: 100px;
    width: 100%;
    background-color: #f6f9f9;
}

/*Slider*/

.main{
    width: 100%;
    position: relative;
    top: 80px;
}
#Slider{
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 10px;
    outline: none;
    border-radius: 15px;
    background-color: #ade0ad;
}
#Slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 3;
    position: relative;
}
#Selector{
    height: 70px;
    width: 30px;
    position: absolute;
    bottom: -5px;
    left: 20%;
    transform: translate(-50%);
    z-index: 2;
}
.SelectBtn{
    height: 25px;
    width: 25px;
    background-color: #34b233;
    border-radius:50% ;
    position: absolute;
    bottom: 0;
    
}
#Selectvalue{
    width: 80px;
    height: 30px;
    position: absolute;
    top: 0;
    left: -25px;
    background-color: #34b233;
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    
}
#Selectvalue::after{
    content: '';
    border-top: 10px solid #34b233;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    position: absolute;
    bottom: -10px;
    left: 32.5px;
}
#ProgressBar{
    border-radius: 15px;
    width: 19%;
    height: 10px;
    background: #34b233;
    border-radius: 3px;
    position: absolute;
    top: 4px;
    left: 0;
}

/*results*/

.results{
    position: relative;
    float: right;
    width: 45%;
    height: 300px;
    top: -300px;
}
ul.List_container {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
li{
    height: 67px;
    line-height: 67px;
    font-weight: 300;
    padding-left: 3%;
    padding-right: 3%;
}
li.gray{
    background-color: #f7fafa;
}
li.blue{
background-color: #ecf6fa;
}
.Right_Text{
    float: right;
}
.Montly_Payment{
    float: right;
    color: #34b233;
}

/*dropdown*/

#Select_Box{
    position: relative;
    display: inline-block;
    top: 20px;
    width: 95%;
    padding-left: 2%;
    height: 43px;
    box-shadow: 0 3px 2px -2px #858d94;
    border: 1px solid #cdd1d4;
}
#deposit{
    position: relative;
    width: 95%;
    height: 40px;
    top: 20px;
    padding: 0;
    float: right;
    padding-left: 2%;
    box-shadow: 0 3px 2px -2px #858d94;
    border: 1px solid #cdd1d4;
}

/*submit*/

#submit_button{
    position: relative;
    top: 120px;
    width: 20%;
    height: 40px;
    border-radius: 20px;
    background-color: #34b233;
    color: #fff;
    border: none;
    text-align: center;
    left: 40%;
    cursor: pointer;
}
#submit_button:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}
/*mobile*/

@media only screen and (max-width: 1300px) {

    #radio_text{
        font-size: 13px;
    }
  }
@media only screen and (max-width: 1000px) {
    .content{
        width: 90%;
        left: 0%;
        top: 0%;
        padding: 5%;
        height: 1150px;
    }
    .Select_sum{
        width: 100%;
    }
    #right_column{
        position: relative;
        top: 40px;
        width: 50%;
        float: right;
    }
    #left_column{
        position: relative;
        top: 101px;
        width: 50%;
    }
    #line1{
        top: 200px;
    }
    .results{
        width: 100%;
        top: -50px;
    }
    #submit_button{
        width: 50%;
        left: 25%;
        top: 100px;
    }
    .radio_container{
        display: block;
        width: 100%;
        align-items: start; 
    }
    .radio_buttons{
        height: 40px;
        margin-bottom: 10px;
    }
    .checkmark {
        top: -95px;
        left: 40%;
    }
    #radio_text{
        top: -119px;
        left: 2%;
        position: relative;
        font-size: 14px;
        pointer-events: none;
        text-align: start;
    }
  }
  