.button-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    align-items: center;
}
.one-center {
    justify-content: center;
}
.one-strech {}
.one-right{
    justify-content: flex-end;
    margin: auto;
}
.few-center {
    justify-content: space-evenly;
}
.few-strech {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* color */
.button-light,
.button-dark{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    color: #ffffff;
    padding: 0 30px;
    border: 2px solid #45a7ef !important;
    background: #131213;
    transition:0.5s;
    min-height: 50px;
    text-transform: uppercase;
}

.button-light {
    background: #45a7ef;
}

.button-dark:hover {
    background: #45a7ef;
    transition:0.5s;
}

.button-light:hover {
    background: #131213;
    transition:0.5s;
}

.button-min {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 16px;
}

.button-light::after,
.button-dark::after {
    content: "";
    display: block;
    width: 69px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    right: -48px;
    z-index: 1;
    transition: 0.5s;
}

.button-light:hover::after,
.button-dark:hover::after {
    right: -80px;
    opacity: 0;
    transition: 0.5s;
}

.button-dark input,
.button-light input{
    background-color: transparent;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
}












