﻿/*
    Формат названия классов: название файла css + контрол + доп-параметры
    
    Пример: class="common-button-bordered"     
*/

/*BUTTON STYLES*/

.common-button {
    text-shadow: none;
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    border: 1px solid #1e7998;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #006A9B;
    /*background: rgba(51, 160, 73, 0.8);*/
    color: #fff;
    padding: 4px 12px;
    margin-top: 6px;
    margin-left: 4px;
    text-decoration: none;
    cursor: pointer;
}

    .common-button:focus, .common-button:hover {
        /*border: 0;*/
        border: solid 1px #3ea9c8;
        background: #0098de;
        /*background: rgba(123, 181, 136, 0.60);*/
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

    .common-button:disabled {
        /*border: 0;*/
        border: solid 1px #3ea9c8;
        background: #8C8C8C;
        /*background: rgba(123, 181, 136, 0.60);*/
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        pointer-events: none;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

    .common-button:active {
        /*border: 0;*/
        border: solid 1px #1e7998;
        background: #3aa9dd;
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }
/* желтый*/
.common-button-yellow {
    text-shadow: none;
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    border: 1px solid #c1a411;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #c1a411;
    /*background: rgba(51, 160, 73, 0.8);*/
    color: #fff;
    padding: 4px 12px;
    margin-top: 6px;
    margin-left: 4px;
    text-decoration: none;
    cursor: pointer;
}



    .common-button-yellow:focus, .common-button-yellow:hover {
        /*border: 0;*/
        border: solid 1px #c1a411;
        background: #E0BE15;
        /*background: rgba(123, 181, 136, 0.60);*/
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

    .common-button-yellow:active {
        /*border: 0;*/
        border: solid 1px #c1a411;
        background: #E1E10E;
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

.common-button-ban {
    text-shadow: none;
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    border: 1px solid #a78715;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #caad43;
    /*background: rgba(51, 160, 73, 0.8);*/
    color: #fff;
    padding: 4px 12px;
    margin-top: 6px;
    margin-left: 4px;
    text-decoration: none;
    cursor: pointer;
}

    .common-button-ban:focus, .common-button-ban:hover {
        /*border: 0;*/
        border: solid 1px #a78715;
        background: #e6c54c;
        /*background: rgba(123, 181, 136, 0.60);*/
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

    .common-button-ban:active {
        /*border: 0;*/
        border: solid 1px #a78715;
        background: #e6c344;
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

.common-button-confirn {
    text-shadow: none;
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    border: 1px solid #31981e;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #009b13;
    /*background: rgba(51, 160, 73, 0.8);*/
    color: #fff;
    padding: 4px 12px;
    margin-top: 6px;
    margin-left: 4px;
    text-decoration: none;
    cursor: pointer;
}

    .common-button-confirn:focus, .common-button-confirn:hover {
        /*border: 0;*/
        border: solid 1px #31981e;
        background: #0cd666;
        /*background: rgba(123, 181, 136, 0.60);*/
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

    .common-button-confirn:active {
        /*border: 0;*/
        border: solid 1px #31981e;
        background: #3ADD56;
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }


.common-button-warning {
    text-shadow: none;
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    border: 1px solid #bf0c0c;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #b12404;
    /*background: rgba(51, 160, 73, 0.8);*/
    color: #fff;
    padding: 4px 12px;
    margin-top: 6px;
    margin-left: 4px;
    text-decoration: none;
    cursor: pointer;
}

    .common-button-warning:focus, .common-button-warning:hover {
        /*border: 0;*/
        border: solid 1px #d20707;
        background: #e22f07;
        /*background: rgba(123, 181, 136, 0.60);*/
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

    .common-button-warning:active {
        /*border: 0;*/
        border: solid 1px #d20707;
        background: #e22f07;
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

.label-Search-danger {
    background-color: #d9534f;
    display: inline;
    padding: .2em .6em .3em;
    font-size: initial;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0px 1px 0px #fff;
}

.label-Search-success {
    background-color: #5cb85c;
    display: inline;
    padding: .2em .6em .3em;
    font-size: initial;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0px 1px 0px #fff;
}

.label-Search-initial {
    background-color: #5C90B8;
    display: inline;
    padding: .2em .6em .3em;
    font-size: initial;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0px 1px 0px #fff;
}

/*подложка под actionlink*/
.common-actionlink-area {
    float: left;
    height: 100px;
    width: 320px;
    background: white;
    border: solid 1px rgba(0, 0, 0, 0.3);
    padding: 20px 30px 20px 30px;
    display: inline-block;
    margin: 8px;
    text-align: center;
    border-radius: 3px;
}

    .common-actionlink-area:hover, .common-actionlink-area:focus {
        background: rgb(175, 190, 220);
        border: solid 1px rgba(255,255,255,0.3);
        transition: ease-out all 0.2s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        -webkit-transform: scale(0.99);
        -ms-transform: scale(0.99);
        transform: scale(0.99);
    }

.common-actionlink-area-admin {
    float: left;
    height: 100px;
    width: 320px;
    background: rgb(255, 240, 240);
    padding: 20px 30px 20px 30px;
    display: inline-block;
    margin: 8px;
    text-align: center;
    border: solid 1px gray;
    border-radius: 3px;
}

    .common-actionlink-area-admin:hover, .common-actionlink-area-admin:focus {
        background: rgb(175, 190, 220);
        border: solid 1px white;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        -webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);
    }



/***********ALL FORMS***********/
/*Для автоподгоняемых по высоте трёх колонок */
.common-container-allforms-aligned-root {
    background: rgba(50, 100, 130, 0.50);
    border: solid 1px black;
    border-radius: 3px;
    width: 94%;
    margin: auto;
}

.common-container-allforms-aligned-3 {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.common-container-allforms-aligned-2 {
    clear: left;
    float: left;
    width: 100%;
    position: relative;
    right: 33.333%;
    border-right: solid 1px black;
}

.common-container-allforms-aligned-1 {
    float: left;
    width: 100%;
    position: relative;
    right: 33.33%;
    border-right: solid 1px black;
}

.common-container-allforms-aligned-column-3 {
    float: left;
    width: 29.33%;
    position: relative;
    left: 76.67%;
    overflow: hidden;
    margin: 10px 0px;
}

.common-container-allforms-aligned-column-2 {
    float: left;
    width: 29.33%;
    position: relative;
    left: 72.67%;
    overflow: hidden;
    margin: 10px 0px;
}

.common-container-allforms-aligned-column-1 {
    float: left;
    width: 29.33%;
    position: relative;
    left: 68.67%;
    overflow: hidden;
    margin: 10px 0px;
}
/*Для одной широкой колонки по центру внизу под тремя колонками*/
.common-container-allforms-center-root {
    float: left;
    width: 100%;
    display: block;
}

.common-container-allforms-right-column {
    float: right;
    margin: 20px;
}

.common-container-allforms-center-bordered {
    float: left;
    width: 30%;
    border: solid 1px black;
    border-radius: 3px;
    border-color: rgba(0, 0, 0, 0.70);
    padding: 15px;
    margin: 10px;
    background-color: rgba(50, 100, 130, 0.50);
}

.common-container-allforms-center-bordered-wide {
    min-width: 320px;
    width: 70%;
    border: solid 1px black;
    border-radius: 3px;
    border-color: rgba(0, 0, 0, 0.70);
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    min-height: 350px;
    background-color: rgba(50, 100, 130, 0.50);
}
/* Стили текста для описанный выше двух контейнеров*/
.common-header-frame {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.common-text-paragraph-bold {
    font-weight: bold;
    color: white;
    text-decoration: underline;
}

.common-text-sentence {
    color: white;
}
/********************************/

/***********CERTIFICATE FORMS***********/
.common-container-certificate-root {
    display: block;
    text-align: center;
    height: 40%;
    width: 100%;
    margin: auto;
    float: left;
}

.common-container-certificate-form-bordered {
    text-align: center;
    margin: auto;
    padding: 20px 40px;
    width: 70%;
    color: black;
    background-color: rgba(255,255,255,0.2);
    border: solid 1px black;
    display: block;
}

.common-container-certificate-div-centered-bordered {
    width: 80%;
    margin: auto;
    text-align: left;
    background-color: rgba(255,255,255,1);
    border: solid 2px black;
    padding-left: 10px;
    padding-right: 10px;
}

.common-certificate-div-row {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.common-certificate-div-column-50 {
    display: inline-block;
    width: 50px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-certificate-div-column-350 {
    display: inline-block;
    width: 350px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-certificate-text {
    margin-top: 10px;
    margin-bottom: 10px;
    color: black;
    font-size: 15px;
    font-weight: 600;
}

.common-certificate-hint {
    font-size: 12px;
    font-weight: 300;
    color: rgba(100, 100, 100, 0.8)
}


/*Подложка под поля авторизации*/
.common-container-auth-form-root {
    display: block;
    text-align: center;
    height: 40%;
    width: 100%;
    margin: auto;
    float: left;
    top: 10%;
}

.common-container-auth-form {
    padding: 10px;
    width: 440px;
    text-align: center;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.20);
    border: solid 0.5px white;
    border-radius: 5px;
    padding: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.450);
}

.common-container-auth-form-inputs {
    max-width: 200px;
    width: 100%;
    margin: auto;
    color: white;
}
/*Для таблицы по центру и слева фильтра на страницах с фильтрацией по параметрам*/

.common-container-filter-root {
    clear: left;
    float: left;
    width: 100%;
}

.common-container-filter-area {
    margin-left: 5px;
    padding: 10px 5px;
    max-width: 300px;
    min-width: 250px;
    width: 20%;
    float: left;
    display: inline;
    color: white;
    background-color: rgba(255,255,255,0.1);
    border: solid 1px black;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.common-container-table-area {
    display: inline;
    margin-left: 10px;
    padding: 10px;
    margin-right: auto;
    width: 75%;
    min-width: 750px;
    float: left;
    color: white;
    background-color: rgba(255,255,255,0.2);
    border: solid 1px black;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/*для страницы с заявками*/

.common-container-application-operations-1 {
    display: block;
    text-align: center;
    height: 40%;
    width: 100%;
    float: left;
}

.common-container-application-operations {
    text-align: left;
    margin: auto;
    padding: 5px;
    width: 40%;
    min-width: 540px;
    color: white;
    background-color: rgba(255,255,255,0.2);
    border: solid 1px black;
    display: block;
}

.common-container-application-centr {
    width: 100%;
    position: relative;
    padding: 10px;
    display: inline-block;
}

.common-container-application-left {
    width: 50%;
    position: relative;
    padding: 10px;
    display: inline-block;
}

.common-container-application-right {
    width: 45%;
    position: relative;
    padding: 10px;
    display: inline-block;
}

.common-container-application-info {
    width: auto;
    position: relative;
    margin-left: 0px;
    padding: 10px;
    background: #ffffff;
    padding-left: 10px;
    border: solid 1px black;
}

/*Для страниц редактирования информации*/
.common-add-edit-area-root {
    display: block;
    text-align: center;
    height: 40%;
    width: 100%;
    margin: auto;
    float: left;
}

.common-add-edit-area {
    text-align: left;
    margin: auto;
    padding: 20px 10px;
    width: 40%;
    min-width: 540px;
    color: white;
    background-color: rgba(255,255,255,0.2);
    border: solid 1px black;
    display: block;
}

.common-add-edit-area-wide {
    text-align: left;
    margin: auto;
    padding: 20px 40px;
    width: 70%;
    min-width: 900px;
    color: white;
    background-color: rgba(255,255,255,0.2);
    border: solid 1px black;
    display: block;
}

.common-add-edit-area-right-button {
    float: right;
    height: 60px;
    display: inline-block;
}
/*Для выровненных по центру common-actionlink-area*/

/*Для родительского контейнера плиток common-actionlink-area*/
.common-actiontiles-root-centered-container {
    max-width: 1020px;
    margin: auto;
    display: block;
    min-height: 120px;
    text-align: center;
}
/*Контейнер для common-actionlink-area*/
.common-actiontiles-child-container {
    text-align: left;
    min-width: 10%;
    margin: auto;
    align-content: space-around;
    display: inline-block;
}

/*Заголовки*/

.common-logo-text-36 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-30 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-24 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-18 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-16 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-14 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-12 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-10 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 10px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    color: white;
}


.common-logo-text-36-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 36px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-30-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-24-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*text-transform: uppercase;*/
    color: white;
}

.common-logo-text-18-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.common-logo-text-16-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.common-logo-text-14-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.common-logo-text-12-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.common-logo-text-10-normal {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 10px;
    font-weight: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}



.child-logo-text-3 {
    text-align: center;
    padding-top: 20px;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Source Sans Pro';
    font-style: italic;
    color: white;
    font-stretch: semi-expanded;
    word-wrap: normal;
    letter-spacing: 0px;
}

.child-logo-text-normal {
    padding: 5px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Segoe UI';
    color: white;
    font-stretch: semi-expanded;
    word-wrap: normal;
    letter-spacing: 0px;
}

/*=================================================*/

/*Шапка страниц*/

.common-logo-root-container {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.common-logo-image-container {
    vertical-align: text-top;
    display: inline-block;
    max-height: 250px;
}

.common-logo-text-container {
    vertical-align: text-top;
    display: inline-block;
    max-height: 250px;
    width: 800px;
}

.top-logo-root-container {
    text-align: center;
    margin-top: 50px;
}

.root-logo-container {
    vertical-align: top;
    align-content: center;
    width: 1320px;
    margin: auto;
}

.child-logo-container {
    vertical-align: text-top;
    display: inline-block;
    max-height: 250px;
}

.common-logo-image {
    max-height: 230px;
}

/*для label в виде таблицы*/

.common-div-row {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.common-div-row2 {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.common-div-row3 {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.common-div-column {
    display: inline-block;
    width: 215px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-50 {
    display: inline-block;
    width: 50px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-100 {
    display: inline-block;
    width: 100px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-150 {
    display: inline-block;
    width: 150px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-180 {
    display: inline-block;
    width: 180px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-200 {
    display: inline-block;
    width: 200px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-250 {
    display: inline-block;
    width: 250px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-290 {
    display: inline-block;
    width: 290px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-300 {
    display: inline-block;
    width: 300px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-350 {
    display: inline-block;
    width: 350px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-3500 {
    color: black;
    position: relative;
}

.common-div-column-500 {
    display: inline-block;
    width: 500px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-550 {
    display: inline-block;
    width: 550px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-column-600 {
    display: inline-block;
    width: 600px;
    vertical-align: middle;
    margin-left: 80px;
    min-height: 30px;
    text-align: left;
}

.common-div-column-600-center {
    display: inline-block;
    width: 600px;
    vertical-align: middle;
    min-height: 30px;
    text-align: center;
}

.common-div-column-700 {
    display: inline-block;
    width: 700px;
    vertical-align: middle;
    margin-left: 80px;
    min-height: 30px;
    text-align: left;
}

.common-div-column-wide {
    display: inline-block;
    width: 240px;
    vertical-align: middle;
    min-height: 30px;
    text-align: left;
}

.common-div-validation-row {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.common-div-column label {
    word-wrap: normal;
}

/*ср*ная валидация*/

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #ffb0ae;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #ffb0ae;
}

.validation-summary-valid {
    display: none;
}

.field-validation-error {
    color: darkred;
}


/*Дополнение к my_table*/
table.my_table th tr {
    text-align: center;
}

/*Из Site.css*/
.questions-section__toggle {
    float: right;
    margin-top: 10px;
    cursor: pointer;
    width: 17px;
    height: 8px;
    margin-left: 15px;
    transform: rotate(0deg);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAMAAADHqI+lAAAATlBMVEUAAABMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExMTExaMr/uAAAAGXRSTlMAAQMJPEhNVVtjanJze4OGi5rd5/X5+/z+cv9jLAAAAD1JREFUeNpVx1sOwBAUQMFDq299U/a/0UpuBPM3qOOuraCvWOwk6swNG8LKv5lsCelupJh8fA214elpdYgfzGgE888ygFgAAAAASUVORK5CYII=);
}

.questions-section__toggle_up {
    transform: rotate(180deg);
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
}

    .overlay:target {
        visibility: visible;
        opacity: 1;
    }

.popup_div {
    position: absolute;
    top: 50px;
    left: 5%;
    width: 90%;
    min-height: 80%;
    border: 2px solid #770000;
    padding: 10px;
    background: #c1dfc1;
    z-index: 10;
}

.popup_div2 {
    position: absolute;
    top: 10px;
    left: 5%;
    width: 90%;
    height: 95%;
    border: 2px solid #770000;
    padding: 0px 10px 10px 10px;
    background: #c1dfc1;
    z-index: 10;
}

.popup_frame {
    margin-top: -40px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
    background: url("../images/preloader.svg") center center no-repeat;
    background-size: 200px;
}

.pager_margin_0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    text-align: left !important;
}

.body_initial {
    all: initial;
}

.search_ajax_div {
    padding-left: 25px;
    background: rgba(92, 142, 178, 0.71);
    padding: 10px;
    border: solid 2px #98a8ce;
}

.data_ajax_div {
    padding-left: 25px;
    overflow: scroll;
    max-height: 700px;
    min-height: 600px;
    overflow-x: hidden;
    background: rgba(92, 142, 178, 0.71);
    border: solid 2px #98a8ce;
}

input[type="radio"].common-radiobutton-placeholder-text {
    width: 5%;
    display: inline-block;
    margin: 0;
}

input[type="checkbox"].common-checkbox-placeholder-text {
    width: 5%;
    display: inline-block;
    margin: 0;
}

label.common-radiobutton-placeholder-text {
    margin-left: 5px;
}

.pagination2 {
    display: inline-block;
    padding-left: 0;
    margin: 14px 0 0 0;
    border-radius: 4px
}

    .pagination2 > li {
        display: inline;
        position: relative;
        float: left;
        padding: 5px 10px;
        margin-left: -1px;
        line-height: 1.42857143;
        color: #337ab7;
        text-decoration: none;
        background-color: #f3f3f3;
        border: 1px solid #ddd
    }

        .pagination2 > li:focus, .pagination2 > li:hover {
            z-index: 3;
            color: #23527c;
            background-color: #bbb;
            border-color: #ddd
        }

    .pagination2 > .active, .pagination2 > .active:focus, .pagination2 > .active:hover {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7
    }

    .pagination2 > .disabled, .pagination2 > .disabled:focus, .pagination2 > .disabled:hover {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd
    }

button.closeRegion {
    /* padding: 0; */
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.closeRegion {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: white;
    text-shadow: 0 1px 0 #fff;
    /* opacity: .2; */
    filter: alpha(opacity=20);
}

    .closeRegion:hover {
        float: right;
        font-size: 21px;
        font-weight: bold;
        line-height: 1;
        color: black;
        text-shadow: 0 1px 0 #fff;
        /* opacity: .2; */
        filter: alpha(opacity=20);
    }

.common-button-grey {
    text-shadow: none;
    display: inline-block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    border: 1px solid #a5a5a5;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: rgba(80, 93, 91, 0.8);
    /*background: rgba(51, 160, 73, 0.8);*/
    color: #fff;
    padding: 4px 12px;
    margin-top: 6px;
    margin-left: 4px;
    text-decoration: none;
    cursor: pointer;
}



    .common-button-grey:focus, .common-button-grey:hover {
        /*border: 0;*/
        border: solid 1px #575754;
        background: #45443E;
        /*background: rgba(123, 181, 136, 0.60);*/
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

    .common-button-grey:active {
        /*border: 0;*/
        border: solid 1px #575754;
        background: #45443E;
        color: #fff;
        transition: ease-out all 0.1s;
        -webkit-transition: ease-out all 0.2s;
        -moz-transition: ease-out all 0.2s;
        -o-transition: ease-out all 0.2s;
        /*-webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
        transform: scale(0.98);*/
    }

.common-container-center{
    margin: 10px;
    text-align: center;
}

.common-text-area-center {
    display: inline-block;
    min-width: 600px;
    min-height: 200px;
}

.common-white{
    color: white;
}