body{
    font-family: 'Lato', sans-serif;
    background: #ffffff;
    min-width:920px;
}

.qblock{
    margin: 0 10% 50px 10%;
    border: 2px solid #585858 !important;
    padding: 5px 10px 20px 10px;
}

.buttons{
    display:flex;
    justify-content:space-between;
    padding:0 4%;
}

.question{
    //padding-left:20%;
    text-align:left;
}

label {
    position: relative;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    cursor: pointer !important;
}

.btn:active {
    box-shadow: 0 1px #666 !important;
    transform: translateY(2px) !important;
}
.btn {
    
    font-size: 18px;
    color:#434345;
    font-weight: bold;
    height: 50px;
    width: 100px;
    box-shadow: 0 3px #999;
    text-align: center;
    text-decoration: none;
}
.btn a{
    
    font-size: 18px;
    color:#434345;
    font-weight: bold;
    margin-top:100px;
    text-align: center;
    text-decoration: none;
    position: relative;
    top: 25%;
}
.btn-sik {
    transition: all 0.2s ease;
    background-color: white ;
    border: 2px solid #ff5e00 !important;
    box-shadow: 0 3px #682600 !important;
    min-width: 150px;
    border-radius: 20px;
}


    btn-sik::selection{
        background: green;
    }

input[type="radio"] {
     position: absolute;
  visibility: hidden;
}
input[type="radio"] + div {
    position: relative;
}
input[type="radio"]:checked + div {
  background-color: #ff5e00;
}
input[type="radio"]:checked + div>span {
  color: white;
}
input[type="radio"] + div>span {
position: relative;
top: 25%;}

/*input[type="radio"]:checked + div::before {
    font-family: FontAwesome;
    content: "\f08d";
    position: absolute;
    bottom: 31px;
    font-size: 21px;
    color: white;
    right: -5px;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    animation: fall 0.5s forwards;
}*/

@keyframes fall {
    100% {
        -webkit-transform: translate(-5px,5px) rotate(30deg);
        -moz-transform: translate(-5px,5px) rotate(30deg);
        -o-transform: translate(-5px,5px) rotate(30deg);
        -ms-transform: translate(-5px,5px) rotate(30deg);
        transform: translate(-5px,5px) rotate(30deg);
    }
}

@-moz-keyframes fall {
    100% {
        -webkit-transform: translate(-5px,5px) rotate(30deg);
        -moz-transform: translate(-5px,5px) rotate(30deg);
        -o-transform: translate(-5px,5px) rotate(30deg);
        -ms-transform: translate(-5px,5px) rotate(30deg);
        transform: translate(-5px,5px) rotate(30deg);
    }
}

@-webkit-keyframes fall {
     100% {
        -webkit-transform: translate(-5px,5px) rotate(30deg);
        -moz-transform: translate(-5px,5px) rotate(30deg);
        -o-transform: translate(-5px,5px) rotate(30deg);
        -ms-transform: translate(-5px,5px) rotate(30deg);
        transform: translate(-5px,5px) rotate(30deg);
    }
}



