.Checkbox {
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 13px;
    white-space: nowrap;
}
.Checkbox__input {
    --display: none;
    width: 20px;
    height: 20px;
}
.Checkbox__custom {
    position: relative;
    margin-top: 2px;
    display: inline-block;
    width: 16px;
    height: 16px;
    font-size: 0;
    border-radius: 2px;
    border: 1px solid #4a4a4a;
    box-sizing: border-box;
    vertical-align: top;
    transition: border 0.3s, background-color 0.3s;
}
.Checkbox__customIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    stroke: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.Checkbox:hover .Checkbox__custom {
    border-color: #ff5722;
}
.Checkbox_checked .Checkbox__custom {
    border-color: #ff5722;
    background-color: #ff5722;
}
.Checkbox_checked .Checkbox__customIcon {
    opacity: 1;
}
.Checkbox_checked:hover .Checkbox__custom {
    border-color: #ee3900;
    background-color: #ee3900;
}
.Checkbox_disabled {
    cursor: default;
    pointer-events: none;
}
.Checkbox_disabled .Checkbox__custom {
    border-color: #e1e1e1;
    background-color: #e1e1e1;
}
.Checkbox__text {
    padding-left: 10px;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}
.SidebarUnavaliable {
    padding-top: 40px;
    text-align: center;
}
.SidebarUnavaliable__icon {
    margin-bottom: 20px;
}
.SidebarUnavaliable__title {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}
.SidebarUnavaliable__text {
    color: #9b9b9b;
    font-size: 14px;
}

.PageIntro {
    position: relative;
    height: 320px;
    font-size: 16px;
    padding: 80px 0 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

