/* common */
.btn {
    --bg-color: transparent;
    --border-color: white;
    --text-color: white;
    border-color: var(--border-color);
    color: var(--text-color);
    background: var(--bg-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    --height: 45px;
    height: var(--height);
    font-size: 14px;
    padding-left: 4em;
    padding-right: 4em;
    border: 1px Solid var(--border-color);
    transition: all 0.1s linear 0s;

    /*height: 34px; /* Путь к бизнесу и Личный кабинет fs 12 */
    /*height: 60px; /* Красная Предварительная регистрация fs 16 */
    /*height: 45px; /* Подробнее fs 14 */
    /*height: 41px; /* кнопка связаться fs 16 */
    /*height: 50px; /* Узнать больше fs15 lh21 */
    /*height: 45px; /* Загрузить ещё fs14 */
    /*height: 45px; /* Перейти к покупкам fs 14 */
}

.btn:hover {
    cursor: pointer;
    transition: all 0.1s linear 0s;

}

/* fs - font-size */
.btn.fs12 {
    font-size: 12px;
}

/* sz - sizes */
.btn.szTiny {
    --height: 34px;
    font-size: 12px;
}

.btn.szLess {
    --height: 41px;
    font-size: 16px;
}

.btn.szStd {
    --height: 45px;
    font-size: 14px;
}

.btn.szMore {
    --height: 50px;
    font-size: 15px;
    line-height: 21px;
}

.btn.szBig {
    --height: 60px;
    font-size: 16px;
    font-family: var(--fntUnb);
    font-weight: 600;
}

/* st - Styles */
.btn.stSqrRnd {
    border-radius: 10px;
}

.btn.stSqrRndBR5 {
    border-radius: 5px;
}

.btn.stRnd {
    border-radius: calc(var(--height) / 2);
}

.btn.noBorder {
    border-width: 0 !important;
}

/* cl - Colors */
.btn.clTranspWhite {
    --bg-color: transparent;
    --border-color: white;
    --text-color: white;

}

.btn.clTranspBlack {
    --bg-color: transparent;
    --border-color: black;
    --text-color: black;
    --inv-text-color: white;
}

.btn.clRed {
    --bg-color: #b71313;
    --border-color: #b71313;
    --text-color: white;
}

.btn.clBlack {
    --bg-color: black;
    --border-color: black;
    --text-color: white;
}

/* fx - hover effects */
.btn.fxInvert {

}

.btn.fxInvert:hover {
    border-color: var(--inv-border-color, var(--text-color));
    background: var(--text-color);
    color: var(--inv-text-color, var(--bg-color));
}

.btn.fxRightMove {
    transform: translateX(0px);
}

.btn.fxRightMove:hover {
    transform: translateX(20px);
}