/* Buttons *************************************/

.btn-reco {
    display: block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 30px;
    background: #5aaefc;
    border-radius: 5px;
    color: #FFFFFF;
}

.btn-reco-s {
    display: block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 22px;
    background: #5aaefc;
    border-radius: 3px;
    color: #FFFFFF;
}

.btn-plus {
    display: block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 30px;
    background: #78ca32;
    border-radius: 50%;
    color: #FFFFFF;
}



.btn-manage {
    display: block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 30px;
    background: #FA6900;
    border-radius: 50%;
    color: #FFFFFF;
}

.btn-login {
    display: block;
    border: 1px solid #606060;
    text-decoration: none;
    padding: 10px;
    line-height: 30px;
    min-width: 30px;
    min-height: 30px;
    text-align: center;
    width: 70%;
    margin: auto;
}

.btn {
    display: block;
    text-decoration: none;
    background: #5aaefc;
    line-height: 30px;
    padding: 10px;
    min-width: 30px;
    min-height: 30px;
    text-align: center;
    color: #FFFFFF;
    margin: auto;
    border-radius: 25px;
}

.btn i {
    font-size: 28px;
}

.btn-outlined {
    background: transparent;
    border: 1px solid #5aaefc;
    color: #5aaefc;
}

.btn-s {
    line-height: 15px;
    padding: 5px 8px;
    min-width: 30px;
    min-height: 10px;
    border-radius: 10px;
    font-size: 12px;
}

.btn-s i {
    font-size: 13px;
}

.btn-inline {
    display: inline-block;
}

.btn-inline i {
    margin-right: 8px;
}

.clickable {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.clickable:hover,
.clickable:active {
    opacity: 0.3;
    transform: scale(0.95);
}

.btn-loading {
    color: transparent;
    background-repeat: no-repeat;
    background-image: url(../images/three-dots.svg);
    background-position: center center;
    background-size: auto 20%;
}

.btn-loading-dark {
    color: transparent;
    background-repeat: no-repeat;
    background-image: url(../images/three-dots-dark.svg);
    background-position: center center;
    background-size: auto 20%;
}
