.btn-3 {
    box-shadow: inset 0px 1px 0px 0px #3a91e8;
    background: linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
    background-color: #007dc1;
    border-radius: 3px;
    border: 1px solid #124d77;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    padding: 7px 16px;
    text-decoration: none;
    text-shadow: 0px 1px 50px #154682;
    width: 100%;
    line-height: normal;
}
.btn-3:hover {
    background: linear-gradient(to bottom, #1a88d8 5%, #1a6e9c 100%);
    background-color: #0061a7;
}
.btn-3:active {
    box-shadow: 0px 1px 7px #004469;
    position: relative;
    top: 1px;
}

.switch-btn {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch-btn input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sb-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sb-slider:before {
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .sb-slider {
    background-color: #2196f3;
}

input:focus + .sb-slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .sb-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.sb-slider.round {
    border-radius: 34px;
}

.sb-slider.round:before {
    border-radius: 50%;
}

.hfp-combo-image-shadow {
    background: -moz-linear-gradient(top, rgba(10, 10, 10, 0) 0, #161616 91%, #1e1e1e 100%);
    background: -webkit-linear-gradient(top, rgba(10, 10, 10, 0) 0, #161616 91%, #1e1e1e 100%);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0, #161616 91%, #1e1e1e 100%);
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
