.btn {
    display: inline-block;
    background: #424242;
    background: -webkit-linear-gradient(to bottom right, #424242, #191919);
    background: linear-gradient(to bottom right, #424242, #191919);
    border-radius: 3px;
    padding: 8px 20px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.17);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    float: left;
    max-height: 65px;
    border: none;
    font-family: "Open Sans";
    margin-right: 15px;
    font-size: 12px;
    background-repeat: no-repeat;
    outline: none;
}

.btn:hover {
    opacity: 0.6;
}

.btn.green {
    background: #ebba16;
    background-repeat: no-repeat;
    color: #1b1b1b;
    font-weight: 700;
    text-shadow: none;
    font-size: 14px;
}

.btn.dark {
    background-repeat: no-repeat;
    color: #ffc10a;
    font-weight: 700;
    text-shadow: none;
    font-size: 14px;
    background: -webkit-gradient(linear, left top, right top, from(#172130), to(#252e3c));
    background: -webkit-linear-gradient(left, #172130 0%, #252e3c 100%);
    background: -moz-linear-gradient(left, #172130 0%, #252e3c 100%);
    background: -o-linear-gradient(left, #172130 0%, #252e3c 100%);
    background: linear-gradient(90deg, #172130 0%, #252e3c 100%);
    border: 0;
}

.btn.orange {
    background-repeat: no-repeat;
    color: #172130;
    font-weight: 700;
    text-shadow: none;
    font-size: 14px;
    background: -webkit-gradient(linear, left top, right top, from(#f0b90b), to(#fbda3c));
    background: -webkit-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: -moz-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: -o-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: linear-gradient(90deg, #f0b90b 0%, #fbda3c 100%);
    border: 0;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    border: 0;
}

.btn.blue {
    background: #2196F3;
    background: -webkit-linear-gradient(to bottom right, #2196F3, #1c296f);
    background: linear-gradient(to bottom right, #2196F3, #1c296f);
    background-repeat: no-repeat;
}

.btn.red {
    background: #ff1100;
    background: -webkit-linear-gradient(to bottom right, #ff1100, #770800);
    background: linear-gradient(to bottom right, #ff1100, #770800);
    background-repeat: no-repeat;
}

.btn.green-login {
    color: #212833;
    background: -webkit-gradient(linear, left top, right top, from(#f0b90b), to(#fbda3c));
    background: -webkit-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: -moz-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: -o-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: linear-gradient(90deg, #f0b90b 0%, #fbda3c 100%);
    border: 0;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    width: 100%;
    font-weight: 800;
    text-shadow: none;
    font-size: 19px;
}

.btn.modal-cancel {
    background: rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.29);
    text-shadow: none;
}

.radio-buttons {
}

.radio-buttons span {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.49);
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-box-shadow: 0px 10px 20px 0px rgb(12, 17, 25);
    -moz-box-shadow: 0px 10px 20px 0px rgb(12, 17, 25);
    box-shadow: 0px 10px 20px 0px rgb(12, 17, 25);
    margin-bottom: 15px;
}

.radio-buttons span b {
    display: inline-block;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff75;
}

.radio-buttons span.active {
    background: -webkit-gradient(linear, left top, right top, from(#f0b90b), to(#fbda3c));
    background: -webkit-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: -moz-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: -o-linear-gradient(left, #f0b90b 0%, #fbda3c 100%);
    background: linear-gradient(90deg, #f0b90b 0%, #fbda3c 100%);
    border: 0;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(240, 185, 10, 0.3);
    color: #000;
}

.radio-buttons span.active b {
    color: #000;
}

.radio-buttons span:hover {
    opacity: 0.8;
}