.btn {
    cursor: pointer;
}

.btn.main,
.btn.min {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    padding: 14px 36px 14px 52px;
    border-radius: 36px;
    background: #8675F0;
    position: relative;
    color: white;
}

.btn.main.grey {
    background: transparent;
    color: #756969;
}

.btn.min {
    padding: 14px 26px 14px 26px;
}

.btn.min.grey {
    background: #F5F5F5;
    color: #000000;
}

.btn.min:hover,
.btn.main:hover {
    background: #5B4BBC;
}

.btn.main.grey:hover {
    background: #F5F5F5;
}

.btn.min.grey:hover {
    background: #dddddd;
}

.btn.main:before {
    content: '';
    display: block;
    position: absolute;
    left: 8px;
    top: 8px;
    width: 36px;
    height: 36px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 50%;
}

.btn.main:after {
    content: '';
    display: block;
    position: absolute;
    right: 8px;
    top: 16px;
    width: 20px;
    height: 20px;
    background-image: url(/images/chevron-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.btn.thumbler {
    position: relative;
    padding-right: 36px;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
}

.btn.thumbler:before,
.btn.thumbler:after {
    content: '';
    display: block;
    border-radius: 17px;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    transition: .2s;
}

.btn.thumbler:before {
    height: 15px;
    width: 26px;
    background: #c4c4c4;
    border: 1px solid #c4c4c4;
}

.btn.thumbler:after {
    height: 12.5px;
    width: 12.5px;
    margin: auto 2px;
    background: white;
    right: 11.5px;
}

.btn.thumbler.active:before {
    border: 1px solid #8675F0;
    background: #8675F0;
}

.btn.thumbler.active:after {
    right: 0px;
}

.captcha {
    display: inline-block;
    vertical-align: top;
    width: 67px;
    height: 40px;
    border: 1px solid #747474;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}