.host-select {

    max-width: 400px;
    display: flex;

}

.host-select__select {
    padding-left: 0px;

    min-width: 200px;
}

div.host-select__button {
    padding-left: 10px;
    min-width: 200px;
}



div .diagnostic-window {

    /*border: 1px solid yellow;*/
    min-height: 200px;
    min-width: 500px;
    padding: 10px;

}

.diagnostic-window__questions {

    margin: 10px;
    min-height: 150px;
    padding: 10px;


}
.diagnostic-window__answers {

    margin: 10px;
    padding: 10px;
    min-height: 200px;
    border: 1px solid green;
    padding-left: 30%;

}

.diagnostic-window__buttons {

    margin: 10px;

    min-height: 90px;
    border1: 1px solid green;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 18px;
    align-items: center;






}





.diagnostic-window__bt-next {

    width: 250px;
    font-size: 24px;
    font-weight: bold;

}

.diagnostic-window__buttons>*:first-child {

}


.diagnostic-window__bt-back {
    height: 50px;
    width: 130px;
    font-size: 24px;
    font-weight: bold;





}

.diagnostic-window__questions {

}

.diagnostic-window__question-title {
    font-size: 30px;
    line-height: 21px;
    text-align: center;
    padding-top: 20px;
    font-weight: bold;

}

.diagnostic-window__question-comment {
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    padding-top: 20px;
}

.diagnostic-window__text {
    font-size: 22px;

}

.Button {


    height: 50px;

}




span.topmenu__username {
    color: black !important;
}

/* календарь*/

.datetime-picker-dropdown {
    right: 0px !important;
}

/* цвет букв названий недель */


.date-picker-menu {
    padding-left: 35px!important;
}


.btn-group.pull-left {
    padding-left: 80px !important;
}

.uib-daypicker button {
    border: none !important;
}

.calendar-buttons-down button {
    margin-right: 10px;
    border-radius: 6px 6px !important;

}


.uib-daypicker {
    color: black;
}
/*  бэкгроаунд у календаря */
.uib-daypicker button {
    background-color: #fff;
}

.main-filters__calendar-today-button {
    background-color: #12B2D2 !important;
}

.main-filters__calendar-clear-button {
    background-color: #C1D1D0 !important;
    border: none;

}

.date-picker-menu {
    padding-left: 18px !important;
}

.uib-datepicker {
    border: none;
    margin: 0px 30px;
}


.uib-datepicker tr small {
    font-size: 14px;
    font-weight: normal;
}


.uib-title strong, .uib-day {
    font-size: 16px;
    font-weight: normal;
}


.admin_table td{
    color: white;
}


/** custom radio **/
/* для элемента input c type="radio" */
.custom-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label связанного с .custom-radio */
.custom-radio+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* создание в label псевдоэлемента  before со следующими стилями */
.custom-radio+label::before {
    content: '';
    display: inline-block;
    width: 3em;
    height: 3em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на радио */
.custom-radio:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}

/* стили для активной радиокнопки (при нажатии на неё) */
.custom-radio:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

/* стили для радиокнопки, находящейся в фокусе */
.custom-radio:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.custom-radio:focus:not(:checked)+label::before {
    border-color: #80bdff;
}

/* стили для радиокнопки, находящейся в состоянии checked */
.custom-radio:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* стили для радиокнопки, находящейся в состоянии disabled */
.custom-radio:disabled+label::before {
    background-color: #e9ecef;
}

body {
    padding: 20px 50px;
}

.radio {
    margin-bottom: 0.4em;
}


/* для элемента input c type="checkbox" */
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 3em;
    height: 3em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
}



.checkbox {
    margin-bottom: 1em;
}


.diagnostic-window__result-code {
    text-align: center;
    font-size: 100px;
    font-weight: bold;
}

.diagnostic-window__result-text {
    text-align: center;
    font-size: 30px;
}

.diagnostic-window__result-buttons {
    padding-top: 15px;
    display: flex;
    justify-content: space-around;
}


.processing_text {

    padding: 10px;
    text-align: center;
}

.diagnostic-window__bt-cancel {

    min-width: 100px;
}

.formware-window__bt-cancel {
    height: 30px;
    min-width: 130px;
}



.important_info {
    display: block;
    padding: 5px;
    color: yellow;
    background-color: red;
}

/******* LOADING BAR *****/



#loading-bar .bar {
    position: relative;

}



.header1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 15px 15px 0 0;
    background-color: #fff;
    position: relative;
    padding: 20px 0;
    font-weight: bold;


}

.topmenu__username {

    display: inline-block;
    justify-self: flex-start;
}

.topmenu__navs-main {


    text-decoration: none;
}

.topmenu__navs-logout{


    text-decoration: none;
    justify-self: flex-end;
}

.active {
    text-decoration: underline;
}




/*  обратный отсчет в диагностике */
.diagnostic-window__countdown {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 25px;
    font-weight: bold;
    padding-left: 10%;
    color: yellow;;
}
