.check_status_block label {
    width: 100%;
    font-size: 16px;
}

.sky-form {
    outline: none;
    font: 14px/1.55 Helvetica, 'Open Sans', Arial, sans-serif;
    color: #666;
}

.is_focused .codephone {
    display: block;
}

.phone-input.is_focused input {
    padding-left: 60px !important;
}

.check_status_block {
    display: flex;
    align-items: center;
}

.sky-form fieldset {
    float: none;
    display: block;
    padding: 0 10px 5px;
    border: none;
    background: rgba(255, 255, 255, .9);

}

.sky-form fieldset + fieldset {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.sky-form section {
    margin-bottom: 10px;
}

.sky-form #captcha {
    padding-left: 8px;
}

.sky-form .captcha-input-2 {
    width: 25%;
    margin-right: 10px;
}

.sky-form footer {
    display: block;
}

.sky-form footer:after {
    content: '';
    display: table;
    clear: both;
    display: none;
}

.sky-form a {
    color: #2da5da;
}

.agree {
    margin-top: 25px;
}

.form-upload {
    padding: 0 10px 0 0;
    width: 23%;
    float: left;
}

.sky-form .label {
    display: block;
    line-height: 19px;
    color: #000;
    text-align: left;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.sky-form .label.col {
    margin: 0;
    padding-top: 10px;
}

.sky-form .note {
    margin-top: 6px;
    padding: 0 1px;
    font-size: 12px;
    line-height: 15px;
    color: #999;
}

.sky-form .input,
.sky-form .select,
.sky-form .textarea,
.sky-form .radio,
.sky-form .checkbox,
.sky-form .toggle,
.sky-form .button {
    position: relative;
    display: block;
    margin-bottom: 0;
}

.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 36px;
    padding: 6px 12px 8px 20px;
    outline: none;
    border-width: 1px;
    border-style: solid;
    font: 15px/19px 'Open Sans', Helvetica, Arial, sans-serif;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgb(242, 242, 242);
    border-radius: 23px;
    text-align: left;
    color: #000;
    font-weight: 400;
    box-shadow: inset 0 3px 6px 0 rgba(50, 50, 50, 0.1);
}

.sky-form .textarea textarea {
    border-radius: 15px;
}

.sky-form .radio-style:not(checked) + label {
    padding: 0 0 0 23px;
    margin-bottom: 10px;
}

/**/
/* file inputs */
/**/
.sky-form .input-file .button {
    position: absolute;
    top: 4px;
    right: 4px;
    float: none;
    height: 31px;
    margin: 0;
    padding: 0 20px;
    font-size: 13px;
    line-height: 31px;
}

.sky-form .input-file .button:hover {
    box-shadow: none;
}

.sky-form .input-file .button input {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 30px;
    cursor: pointer;
    opacity: 0;
}


/**/
/* selects */
/**/
.sky-form .select i {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 5px;
    height: 11px;
    background: #fff;
    box-shadow: 0 0 0 12px #fff;
}

.sky-form .select i:after,
.sky-form .select i:before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.sky-form .select i:after {
    bottom: 0;
    border-top: 4px solid #404040;
}

.sky-form .select i:before {
    top: 0;
    border-bottom: 4px solid #404040;
}

.sky-form .select-multiple select {
    height: auto;
}


/**/
/* textareas */
/**/
.sky-form .textarea textarea {
    height: auto;
    resize: none;
}

.sky-form .textarea-resizable textarea {
    resize: vertical;
}

.sky-form .textarea-expandable textarea {
    height: 39px;
}

.sky-form .textarea-expandable textarea:focus {
    height: auto;
}


/**/
/* radios and checkboxes */
/**/
.sky-form .radio,
.sky-form .checkbox {
    margin-bottom: 4px;
    padding-left: 27px;
    font-size: 12px;
    line-height: 20px;
    color: #404040;
    cursor: pointer;
}

.sky-form .radio:last-child,
.sky-form .checkbox:last-child {
    margin-bottom: 0;
}

.sky-form .radio input,
.sky-form .checkbox input {
    position: absolute;
    left: -9999px;
}

.sky-form .radio i,
.sky-form .checkbox i {
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    outline: none;
    border-width: 2px;
    border-style: solid;
    background: #fff;
}

.sky-form .radio i {
    border-radius: 50%;
}

.sky-form .radio input + i:after,
.sky-form .checkbox input + i:after {
    position: absolute;
    opacity: 0;
    transition: opacity 0.1s;
    -o-transition: opacity 0.1s;
    -ms-transition: opacity 0.1s;
    -moz-transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
}

.sky-form .radio input + i:after {
    content: '';
    top: 3px;
    left: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.sky-form .checkbox input + i:after {
    content: '\f00c';
    top: -2px;
    left: -0.5px;
    width: 12px;
    height: 12px;
    font: normal 12px/14px FontAwesome;
    text-align: center;
}

.sky-form .radio input:checked + i:after,
.sky-form .checkbox input:checked + i:after {
    opacity: 1;
}

.sky-form .inline-group {
    margin: 0 -30px -4px 0;
}

.sky-form .inline-group:after {
    content: '';
    display: table;
    clear: both;
}

.sky-form .inline-group .radio,
.sky-form .inline-group .checkbox {
    float: left;
    margin-right: 30px;
}

.sky-form .inline-group .radio:last-child,
.sky-form .inline-group .checkbox:last-child {
    margin-bottom: 4px;
}


/**/
/* toggles */
/**/
.sky-form .toggle {
    margin-bottom: 4px;
    padding-right: 61px;
    font-size: 15px;
    line-height: 27px;
    color: #404040;
    cursor: pointer;
}

.sky-form .toggle:last-child {
    margin-bottom: 0;
}

.sky-form .toggle input {
    position: absolute;
    left: -9999px;
}

.sky-form .toggle i {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    display: block;
    width: 49px;
    height: 17px;
    border-width: 2px;
    border-style: solid;
    border-radius: 12px;
    background: #fff;
}

.sky-form .toggle i:after {
    content: 'OFF';
    position: absolute;
    top: 2px;
    right: 8px;
    left: 8px;
    font-style: normal;
    font-size: 11px;
    line-height: 13px;
    font-weight: 700;
    text-align: left;
    color: #5f5f5f;
}

.sky-form .toggle i:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 4px;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 1;
    transition: right 0.2s;
    -o-transition: right 0.2s;
    -ms-transition: right 0.2s;
    -moz-transition: right 0.2s;
    -webkit-transition: right 0.2s;
}

.sky-form .toggle input:checked + i:after {
    content: 'ON';
    text-align: right;
}

.sky-form .toggle input:checked + i:before {
    right: 36px;
}


/**/
/* ratings */
/**/
.sky-form .rating {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 27px;
    color: #404040;
}

.sky-form .rating:last-child {
    margin-bottom: 0;
}

.sky-form .rating input {
    position: absolute;
    left: -9999px;
}

.sky-form .rating label {
    display: block;
    float: right;
    height: 17px;
    margin-top: 5px;
    padding: 0 2px;
    font-size: 17px;
    line-height: 17px;
    cursor: pointer;
}


/**/
/* buttons */
/**/
.sky-form .button {
    float: right;
    padding: 0 17px;
    outline: none;
    border: 0;
    font: 300 15px/33px 'Open Sans', Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    height: auto;
    text-transform: inherit;
}

.sky-form [class^="icon-"] {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

.sky-form .icon-append,
.sky-form .icon-prepend {
    position: absolute;
    top: 5px;
    width: 29px;
    height: 29px;
    font-size: 15px;
    line-height: 29px;
    text-align: center;
}

.sky-form .icon-append {
    right: 5px;
    padding-left: 3px;
    border-left-width: 1px;
    border-left-style: solid;
}

.sky-form .icon-prepend {
    left: 5px;
    padding-right: 3px;
    border-right-width: 1px;
    border-right-style: solid;
}

.sky-form .input .icon-prepend + input,
.sky-form .textarea .icon-prepend + textarea {
    padding-left: 46px;
}

.sky-form .input .icon-append + input,
.sky-form .textarea .icon-append + textarea {
    padding-right: 46px;
}

.sky-form .input .icon-prepend + .icon-append + input,
.sky-form .textarea .icon-prepend + .icon-append + textarea {
    padding-left: 46px;
}


/**/
/* grid */
/**/
.sky-form .row {
    margin: -10px -15px;
}

.sky-form .row:after {
    content: '';
    display: table;
    clear: both;
}

.sky-form .col {
    float: left;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.sky-form .col-1 {
    width: 8.33%;
}

.sky-form .col-2 {
    width: 16.66%;
}

.sky-form .col-3 {
    width: 25%;
}

.sky-form .col-4 {
    width: 33.33%;
}

.sky-form .col-5 {
    width: 41.66%;
}

.sky-form .col-6 {
    /*width: 50%;*/
}

.sky-form .col-8 {
    width: 66.67%;
}

.sky-form .col-9 {
    width: 75%;
}

.sky-form .col-10 {
    width: 83.33%;
}

@media screen and (max-width: 600px) {
    .sky-form .col {
        float: none;
        width: 100%;
    }
}


/**/
/* tooltips */
/**/
.sky-form .tooltip {
    position: absolute;
    z-index: 1;
    left: -9999px;
    padding: 2px 8px 3px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    opacity: 0;
    transition: margin 0.3s, opacity 0.3s;
    -o-transition: margin 0.3s, opacity 0.3s;
    -ms-transition: margin 0.3s, opacity 0.3s;
    -moz-transition: margin 0.3s, opacity 0.3s;
    -webkit-transition: margin 0.3s, opacity 0.3s;
}

.sky-form .tooltip:after {
    content: '';
    position: absolute;
}

.sky-form .input input:focus + .tooltip,
.sky-form .textarea textarea:focus + .tooltip {
    opacity: 1;
}

.sky-form .tooltip-top-right {
    bottom: 100%;
    margin-bottom: 15px;
}

.sky-form .tooltip-top-right:after {
    top: 100%;
    right: 16px;
    border-top: 4px solid rgba(0, 0, 0, 0.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .tooltip-top-right,
.sky-form .textarea textarea:focus + .tooltip-top-right {
    right: 0;
    left: auto;
    margin-bottom: 5px;
}

.sky-form .tooltip-top-left {
    bottom: 100%;
    margin-bottom: 15px;
}

.sky-form .tooltip-top-left:after {
    top: 100%;
    left: 16px;
    border-top: 4px solid rgba(0, 0, 0, 0.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .tooltip-top-left,
.sky-form .textarea textarea:focus + .tooltip-top-left {
    right: auto;
    left: 0;
    margin-bottom: 5px;
}

.sky-form .tooltip-right {
    top: 9px;
    white-space: nowrap;
    margin-left: 15px;
}

.sky-form .tooltip-right:after {
    top: 6px;
    right: 100%;
    border-top: 4px solid transparent;
    border-right: 4px solid rgba(0, 0, 0, 0.9);
    border-bottom: 4px solid transparent;
}

.sky-form .input input:focus + .tooltip-right,
.sky-form .textarea textarea:focus + .tooltip-right {
    left: 100%;
    margin-left: 5px;
}

.sky-form .tooltip-left {
    top: 9px;
    white-space: nowrap;
    margin-right: 15px;
}

.sky-form .tooltip-left:after {
    top: 6px;
    left: 100%;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid rgba(0, 0, 0, 0.9);
}

.sky-form .input input:focus + .tooltip-left,
.sky-form .textarea textarea:focus + .tooltip-left {
    right: 100%;
    left: auto;
    margin-right: 5px;
}

.sky-form .tooltip-bottom-right {
    top: 100%;
    margin-top: 15px;
}

.sky-form .tooltip-bottom-right:after {
    bottom: 100%;
    right: 16px;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.9);
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .tooltip-bottom-right,
.sky-form .textarea textarea:focus + .tooltip-bottom-right {
    right: 0;
    left: auto;
    margin-top: 5px;
}

.sky-form .tooltip-bottom-left {
    top: 100%;
    margin-top: 15px;
}

.sky-form .tooltip-bottom-left:after {
    bottom: 100%;
    left: 16px;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.9);
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .tooltip-bottom-left,
.sky-form .textarea textarea:focus + .tooltip-bottom-left {
    right: auto;
    left: 0;
    margin-top: 5px;
}


/**/
/* normal state */
/**/
.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea,
.sky-form .radio i,
.sky-form .checkbox i,
.sky-form .toggle i,
.sky-form .icon-append,
.sky-form .icon-prepend {
    border-color: #e5e5e5;
    transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}

.sky-form .toggle i:before {
    background-color: #2da5da;
}

.sky-form .rating label {
    color: #ccc;
    transition: color 0.3s;
    -o-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -webkit-transition: color 0.3s;
}

.sky-form .button {
    /*box-shadow: 0 2px 3px rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.3);
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,.3);*/
    transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    font-size: 15px;
    border-radius: 23px;
}

.sky-form .button.button-secondary {
    background-color: #b3b3b3;
}

.sky-form .icon-append,
.sky-form .icon-prepend {
    color: #ccc;
}


/**/
/* hover state */
/**/
.sky-form .input:hover input,
.sky-form .select:hover select,
.sky-form .textarea:hover textarea,
.sky-form .radio:hover i,
.sky-form .checkbox:hover i,
.sky-form .toggle:hover i {
    border-color: #8dc9e5;
}

.sky-form .rating input + label:hover,
.sky-form .rating input + label:hover ~ label {
    color: #2da5da;
}

.sky-form .button:hover {
    opacity: 1;
}


/**/
/* focus state */
/**/
.sky-form .input input:focus,
.sky-form .select select:focus,
.sky-form .textarea textarea:focus,
.sky-form .radio input:focus + i,
.sky-form .checkbox input:focus + i,
.sky-form .toggle input:focus + i {
    border-color: #2da5da;
}


/**/
/* checked state */
/**/
.sky-form .radio input + i:after {
    background-color: #2da5da;
}

.sky-form .checkbox input + i:after {
    color: #2da5da;
}

.sky-form .radio input:checked + i,
.sky-form .checkbox input:checked + i,
.sky-form .toggle input:checked + i {
    border-color: #2da5da;
}

.sky-form .rating input:checked ~ label {
    color: #2da5da;
}


/**/
/* error state */
/**/
.sky-form .state-error input,
.sky-form .state-error select,
.sky-form .state-error textarea,
.sky-form .radio.state-error i,
.sky-form .checkbox.state-error i,
.sky-form .toggle.state-error i {
    background: #fff0f0;
}

.sky-form .state-error select + i {
    background: #fff0f0;
    box-shadow: 0 0 0 12px #fff0f0;
}

.sky-form .toggle.state-error input:checked + i {
    background: #fff0f0;
}

.sky-form .note-error {
    color: #ee9393;
}


/**/
/* success state */
/**/
.sky-form .state-success input,
.sky-form .state-success select,
.sky-form .state-success textarea,
.sky-form .radio.state-success i,
.sky-form .checkbox.state-success i,
.sky-form .toggle.state-success i {
    background: #f0fff0;
}

.sky-form .state-success select + i {
    background: #f0fff0;
    box-shadow: 0 0 0 12px #f0fff0;
}

.sky-form .toggle.state-success input:checked + i {
    background: #f0fff0;
}

.sky-form .note-success {
    color: #6fb679;
}


/**/
/* disabled state */
/**/
.sky-form .input.state-disabled input,
.sky-form .select.state-disabled,
.sky-form .textarea.state-disabled,
.sky-form .radio.state-disabled,
.sky-form .checkbox.state-disabled,
.sky-form .toggle.state-disabled,
.sky-form .button.state-disabled {
    cursor: default;
    opacity: 0.5;
}

.sky-form .input.state-disabled:hover input,
.sky-form .select.state-disabled:hover select,
.sky-form .textarea.state-disabled:hover textarea,
.sky-form .radio.state-disabled:hover i,
.sky-form .checkbox.state-disabled:hover i,
.sky-form .toggle.state-disabled:hover i {
    border-color: #e5e5e5;
}

.file-upload {
    position: relative;
    overflow: hidden;
    background: #eeeeee; /* Old browsers */
    background: -moz-linear-gradient(top, #eeeeee 0%, #eeeeee 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #eeeeee 0%, #eeeeee 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#eeeeee', GradientType=0); /* IE6-9 */
    margin-top: 12px;
}

.file-upload input.file-input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    filter: alpha(opacity=0);
}

.file-upload i {
    font-size: 20px;
    vertical-align: middle;
}

.radio-style {
    vertical-align: top;
    width: 16px;
    height: 16px;
    margin: 0 3px 0 0;
}

.radio-style + label {
    cursor: pointer;
}

.radio-style:not(checked) {
    position: absolute;
    opacity: 0;
}

.radio-style:not(checked) + label {
    position: relative;
    padding: 0 0 0 28px;
    font: 16px ClearSansRegular, sans-serif;
}

.radio-style:not(checked) + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #044d9b;
    border-radius: 50%;
    background: #fff;
}

.radio-style:not(checked) + label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #044d9b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
    opacity: 0;
    transition: all .2s;
}

.radio-style:checked + label:after {
    opacity: 1;
}

.button-answers {
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.answers-btn {
    padding: 8px !important;
    font-size: 16px !important;
    border-radius: 10px;
}
.quiz-result{
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
}
#submit_javob{
    margin-right: 15px;
}
.answers-btn, .subscribe-btn, .contact-btn {
    padding: 4px 16px;
    background: rgb(27, 68, 183);
    background: -moz-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(35, 88, 236)), color-stop(100%, rgba(27, 68, 183)));
    background: -webkit-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: -o-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: -ms-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: linear-gradient(to bottom, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2e80c6', endColorstr='#176bb5', GradientType=0);
    color: #fff !important;
    font-size: 16px;
    outline: 0;
    border: 0;
}

.subscription form {
    text-align: center;
}

.subscribe-btn {
    width: 75%;
    text-align: center;
    margin-top: 30px;
}

.answers-btn:hover, .subscribe-btn:hover, .btn:hover {
    color: #fff;
}

.button-answers input, .button-answers .answers-btn {
    width: 100%;
    /*max-width: 120px;*/
}

.answers-btn:active, .subscribe-btn:active, .answers-btn:hover, .subscribe-btn:hover, .contact-btn:hover, .contact-btn:active {
    color: #fff !important;
    outline: none !important;
    background: rgb(27, 68, 183);
    background: -moz-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(27, 68, 183)), color-stop(100%, rgba(35, 88, 236)));
    background: -webkit-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: -o-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: -ms-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: linear-gradient(to bottom, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2e80c6', endColorstr='#176bb5', GradientType=0);
}

.tab-content {
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
    background-color: #FFF;
    border: 1px solid #EEE;
    border-top: 0;
    padding: 15px;
}

.nav-tabs li a {
    border-radius: 5px 5px 0 0;
    font-size: 16px;
    margin-right: 1px;
}
.news-content .nav-tabs li a{
    color: #000000;
}
.codephone {
    display: none;
    position: absolute;
    left: 15px;
    top: 5px;
    font-size: 18px;
}

.is_focused .codephone {
    display: block;
}

.phone-input.is_focused input {
    padding-left: 60px !important;
}

.captcha-main {
    padding-right: 0;
    float: left;
    margin-left: 0;
}
#ref{
    float: left;
    background-color: #063999;
    display: flex;
    height: 100%;
    padding: 0px 10px 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.submit_check {
    color: #fff;
    font-size: 15px;
    border-radius: 23px;
    padding: 0 17px;
    font: 300 15px/33px 'Open Sans', Helvetica, Arial, sans-serif;
    margin-top: 25px;
}

.submit_check, .sky-form .button {
    background: #005fbe !important;
    /*background: -moz-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(35, 88, 236)), color-stop(100%, rgba(27, 68, 183)));
    background: -webkit-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: -o-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: -ms-linear-gradient(top, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    background: linear-gradient(to bottom, rgb(35, 88, 236) 0%, rgb(27, 68, 183) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e80c6', endColorstr='#176bb5', GradientType=0 );*/
    outline: 0;
    border: 0;
}

.submit_check:hover, .sky-form .button:hover {
    background: #0273e4;
    /*background: rgb(27, 68, 183);
    background: -moz-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(27, 68, 183)), color-stop(100%, rgba(35, 88, 236)));
    background: -webkit-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: -o-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: -ms-linear-gradient(top, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    background: linear-gradient(to bottom, rgb(27, 68, 183) 0%, rgb(35, 88, 236) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e80c6', endColorstr='#176bb5', GradientType=0 );*/
    color: #fff;
}

.resp_message {
    text-align: center;
    font-size: 18px;
}

section.no_appeal_text {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

.nav-tabs li.active a, .nav-tabs li.active a:hover, .nav-tabs li.active a:focus {
    background: #FFF;
    border-left-color: #EEE;
    border-right-color: #EEE;
    border-top: 3px solid #CCC;
    color: #CCC;
}

html body .tabs .nav-tabs li.active a, html.dark body .tabs .nav-tabs li.active a {
    border-top-color: #0b0c66;
    color: #0b0c66;
}

#fountainG {
    position: relative;
    width: 234px;
    height: 28px;
    margin: auto;
}

.fountainG {
    position: absolute;
    top: 0;
    background-color: #116bbb;
    width: 28px;
    height: 28px;
    animation-name: bounce_fountainG;
    -o-animation-name: bounce_fountainG;
    -ms-animation-name: bounce_fountainG;
    -webkit-animation-name: bounce_fountainG;
    -moz-animation-name: bounce_fountainG;
    animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    transform: scale(.3);
    -o-transform: scale(.3);
    -ms-transform: scale(.3);
    -webkit-transform: scale(.3);
    -moz-transform: scale(.3);
    border-radius: 19px;
    -o-border-radius: 19px;
    -ms-border-radius: 19px;
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
}

#fountainG_1 {
    left: 0;
    animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}

#fountainG_2 {
    left: 29px;
    animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
}

#fountainG_3 {
    left: 58px;
    animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
}

#fountainG_4 {
    left: 88px;
    animation-delay: 1.05s;
    -o-animation-delay: 1.05s;
    -ms-animation-delay: 1.05s;
    -webkit-animation-delay: 1.05s;
    -moz-animation-delay: 1.05s;
}

#fountainG_5 {
    left: 117px;
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
}

#fountainG_6 {
    left: 146px;
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
}

#fountainG_7 {
    left: 175px;
    animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
}

#fountainG_8 {
    left: 205px;
    animation-delay: 1.64s;
    -o-animation-delay: 1.64s;
    -ms-animation-delay: 1.64s;
    -webkit-animation-delay: 1.64s;
    -moz-animation-delay: 1.64s;
}


@keyframes bounce_fountainG {
    0% {
        transform: scale(1);
        background-color: rgb(0, 140, 70);
    }

    100% {
        transform: scale(.3);
        background-color: rgb(255, 255, 255);
    }
}

@-o-keyframes bounce_fountainG {
    0% {
        -o-transform: scale(1);
        background-color: rgb(0, 140, 70);
    }

    100% {
        -o-transform: scale(.3);
        background-color: rgb(255, 255, 255);
    }
}

@-ms-keyframes bounce_fountainG {
    0% {
        -ms-transform: scale(1);
        background-color: rgb(0, 140, 70);
    }

    100% {
        -ms-transform: scale(.3);
        background-color: rgb(255, 255, 255);
    }
}

@-webkit-keyframes bounce_fountainG {
    0% {
        -webkit-transform: scale(1);
        background-color: rgb(0, 140, 70);
    }

    100% {
        -webkit-transform: scale(.3);
        background-color: rgb(255, 255, 255);
    }
}

@-moz-keyframes bounce_fountainG {
    0% {
        -moz-transform: scale(1);
        background-color: rgb(0, 140, 70);
    }

    100% {
        -moz-transform: scale(.3);
        background-color: rgb(255, 255, 255);
    }
}

@media (max-width: 480px) {
    .p-right {
        padding-right: 10px;
        text-align: center;
    }

    .check_status_block .submit_check {
        float: none;
    }
}

@media (max-width: 1400px) {
    .file-upload {
        font-size: 12px;
    }
}

@media (max-width: 1380px) {
    .form-upload {
        flex: 0 0 33%;
        max-width: 33%;
        width: 33.333% !important;
        padding-left: 0;
    }

    .sky-form .captcha-input-2 {
        width: 67%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .check_status_block {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .form-upload {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100% !important;
        padding: 0;
    }

    .sky-form .captcha-input-2 {
        width: 100%;
    }

    .sky-form .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .file-upload {
        margin-bottom: 15px;
    }

    .check_status_block {
        flex-direction: column;
    }
}

@media (max-width: 580px) {
    .sky-form .captcha-main {
        width: 100%;
        overflow: hidden;
        float: left;
        margin-bottom: 15px;
        /* text-align: center; */
        display: flex;
        justify-content: center;
    }

    .sky-form .button {
        display: inline-block;
        float: none;
    }

    .sky-form footer {
        text-align: center;
    }
}