.content__form_ajax{
    position: relative;
}
.loading {
    position: absolute;
    left: 0;
    top: 35%;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 8000;
}
.loading .load {
    display: block;
    margin: 0 auto;
    z-index: 2;
    width: 70px;
    height: 70px;
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}
.loading .load .path {
    stroke-dasharray: 1,150;
    stroke-dashoffset: 0;
    stroke: rgba(255, 200, 87, .75);
    stroke-linecap: round;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
}
.request-fssp{
    margin-right: -20px;
    font-size: 13px;
}
.request-fssp h5{
    font-size: 20px;
}
.request-fssp__iterator{
    display: inline-block;
    background: #fbc543;
    color: black;
    padding: 4px 8px;
    font-weight: 600;
}
.request-fssp__item{
    margin: 12px 0;
}
.request-fssp__item .row{
    margin-top: 10px;
    margin-bottom: 10px;
}
.request-fssp__item .row div:first-child{
    font-weight: 600;
}

.content__form .inp-group select{
    display: block;
    padding: 0px 10px;
    width: 100%;
    height: 46px;
    border: 2px solid;
    border-color: #949494;
    border-radius: 4px;
    line-height: 42px;
}
.content__form .inp-group .error{
    color: #c40000;
}
@keyframes rotate {
    100%
    {
        transform:rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    100%
    {
        -webkit-transform:rotate(360deg)
    }
}

@keyframes dash {
    0%
    {
        stroke-dasharray:1,150;
        stroke-dashoffset:0
    }

    50%
    {
        stroke-dasharray:90,150;
        stroke-dashoffset:-35
    }

    100%
    {
        stroke-dasharray:90,150;
        stroke-dashoffset:-124
    }
}

@-webkit-keyframes dash {
    0%
    {
        stroke-dasharray:1,150;
        stroke-dashoffset:0
    }

    50%
    {
        stroke-dasharray:90,150;
        stroke-dashoffset:-35
    }

    100%
    {
        stroke-dasharray:90,150;
        stroke-dashoffset:-124
    }
}
