/* BUTTONS */

.btn-uc {
    color: #f47929;
    padding: 10px 40px 10px 25px;
    border: 1px solid #f47929;
    border-radius: 23px;
    height: 46px;
    font-family: "Font1Bold", Verdana, Arial;
    font-size: 16px;
    text-decoration: none !important;
    line-height: 24px;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

    .btn-app,
    .btn-uc:hover,
    .btn-uc:focus {
        background: #f47929;
        color: #ffffff;
    }

    .btn-uc:after {
        content: "\e907";
        font-family: icomoon;
        position: absolute;
        font-size: 30px;
        font-weight: bold;
    }

.btn-xs {
    border-radius: 14px;
    height: 28px;
    line-height: 6px;
    font-size: 14px;
}

.btn-sm {
    border-radius: 18px;
    height: 37px;
    line-height: 16px;
}

.btn-md {
}

.btn-lg {
    border-radius: 27px;
    height: 55px;
    line-height: 30px;
}

.btn-app:hover,
.btn-app:focus {
    background: #ffffff;
    color: #f47929;
}

.btn-back {
    background: #ffffff;
    color: #f47929;
    padding-left: 50px;
    padding-right: 30px;
}

    .btn-back:before {
        content: "\e906";
        font-family: icomoon;
        position: absolute;
        font-size: 30px;
        font-weight: bold;
        left: 15px;
    }

    .btn-back:after {
        content: "";
    }

    .btn-back:hover,
    .btn-back:focus {
        background: #f47929;
        color: #ffffff;
    }

.btn-next:after, .btn-down:after {
    content: "\e904";
}

.btn-up:after {
    content: "\e905";
}

@media (max-width: 767px) {
    .btn-uc {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.btn-noarrow {
    padding-left: 30px;
}
    
.btn-noarrow:after {
    content: "";
}

.btn-uc-loading:after {
    position: absolute;
    width: 1em;
    height: 1em;
    margin-top: 4px;
    margin-left: 10px;
    box-sizing: border-box;
    transform-origin: 50% 50%;
    transform: translateZ(0) scale(0.5);
    backface-visibility: hidden;
    border-radius: 50%;
    border: .2em solid currentColor;
    border-left-color: transparent;
    animation: btn-uc-loading 1s infinite linear;
    font-family: initial;
    font-size: initial;
    font-weight: initial;
    content: "";
}

@keyframes btn-uc-loading {
    0% {
        animation-timing-function: cubic-bezier(0.5856,0.0703,0.4143,0.9297);
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0)
    }
}