﻿.blur-text {
    filter: blur(3px);
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #A8DAFF;
    outline: 0;
    box-shadow: 0 0 0 0.22rem rgba(0, 148, 255, 0.25);
}

.form-outline .form-control:focus ~ .form-notch .form-notch-leading {
    border-top: .125rem solid rgba(0, 148, 255, 0.4);
    border-bottom: .125rem solid rgba(0, 148, 255, 0.4);
    border-left: .125rem solid rgba(0, 148, 255, 0.4);
    box-shadow: -1px 0px 0px 0px rgba(0, 148, 255, 0.4), 0px 1px 0px 0px rgba(0, 148, 255, 0.4), 0px -1px 0px 0px rgba(0, 148, 255, 0.4);
}

.form-outline .form-control:focus ~ .form-notch .form-notch-middle {
    border-bottom: .125rem solid;
    border-color: rgba(0, 148, 255, 0.4);
    border-top: none;
    box-shadow: 0 1px 0 0 rgba(0, 148, 255, 0.4);
}

.form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
    border-color: currentcolor currentcolor currentcolor #E4A11B;
    border-bottom: .125rem solid rgba(0, 148, 255, 0.4);
    border-right: .125rem solid rgba(0, 148, 255, 0.4);
    border-top: .125rem solid rgba(0, 148, 255, 0.4);
    box-shadow: 1px 0 0 0 rgba(0, 148, 255, 0.4), 0 -1px 0 0 rgba(0, 148, 255, 0.4), 0 1px 0 0 rgba(0, 148, 255, 0.4);
}

.form-outline .form-control:focus ~ .form-label {
    color: #878787;
}

.form-outline .form-control.active ~ .form-notch .form-notch-middle, .form-outline .form-control:focus ~ .form-notch .form-notch-middle {
    border-top: 1px transparent;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    cursor: pointer;
}

    input[type='radio']:checked:after {
        width: 20px;
        height: 20px;
        border-radius: 20px;
        position: relative;
        background-color: #49B3FF;
        left: -1px;
        content: '';
        display: inline-block;
        cursor: pointer;
    }

.cross-close {
    position: absolute;
    top: -10px;
    right: 10px;
    color: #161616;
    font-size: 44px;
    font-weight: bold;
    transition: 0.3s;
}

    .cross-close:hover,
    .cross-close:focus {
        color: #565656;
        text-decoration: none;
        cursor: pointer;
    }


::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.label-link {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #2BA6FF;
    padding-top:1px;
    padding-bottom:1px;
}

    .label-link:hover {
        color: #6DC2FF;
    }

.page-title {
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    margin-left: 8px
}

.badge-support-line {
    padding-left: 4px;
    padding-right: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: default;
    background: #6CB5FF;
}

