body{
       /*background: #000073;*/
}
#ug_banner{
    height: 50px;
}
.start-container{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.center {
    width: 435px;
    margin-top: 5%;
    z-index: 1000;
/*    position:absolute;
    top: 25%;
    left: 50%;
    width:30em;*/
    /*height:7em;*/
/*    margin-top: -9em; set to a negative number 1/2 of your height
    margin-left: -15em; set to a negative number 1/2 of your width*/
    /*border: 1px solid #ccc;*/
    /*background-color: #f3f3f3;*/
}
#old-res,#new-res{
    color: #333;
}
#old-res:focus{
    border:1px solid lightgray;
}
a{
    color: #212529;
}
a:hover{
    text-decoration: none;
    color: #212529;
}
.hidden{
    display: none;
}
.w-60{
    width: 50%;
}

.text-blue{
    color:#dc3545;
}


.footer{
    bottom: 0;
    width: 100%;
    
}
.footer a{
    color: #abb0b7;
}
.glo-soft{
    background-color: #f2f8fd;
    color: #667;
}

@media(max-width: 560px){
    .center{
        margin-top:2%;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.8em;
    }
    #ug_banner{
        height: 40px;
    }
}
@media(max-width: 400px){
    .center{
         margin-top:2%;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.6em;
    }
      #ug_banner{
        height: 35px;
    }
    
}

/*custom radio button*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
/*    background: #F87DA9;*/
    background: #17a2b8;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}