﻿/*Форма подачи - выбор типа пользователя*/
.user-type-select {
    color: #000;
    font-size: 12px;
    margin-bottom: 10px;
    position: relative;
    height: 32px;
}

    .user-type-select input {
        position: absolute;
        opacity: 0;
    }

    .user-type-select label {
        background-color: #fff;
        border-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
        border-style: solid;
        border-width: 1px;
        padding: 5px;
        cursor: pointer;
        float: left;
        display: block;
    }

        .user-type-select label:first-child {
            border-radius: 3px 0 0 3px;
        }

        .user-type-select label:last-child {
            border-radius: 0 3px 3px 0;
            border-left: none;
        }

    .user-type-select span {
        text-align: center;
        padding: 0 11px;
        pointer-events: none;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

label.user-type-select__active {
    background-color: #ffeca6;
}
/*---Форма подачи - выбор типа пользователя*/
