/* РУССКОЕ ПОЛЕ ЭКСПЕРИМЕНТОВ ПОЛЕ (тестирование всякого) 
.note {
    width: 500px;
    margin: 100px auto;
    font-size: 1.1em;
    color: #333;
    text-align: justify;
  }
  #drop-area {
    border: 2px dashed #ccc;
    border-radius: 20px;
    width: 100%;
    height: 300px;
    padding: 20px;
  }
  #drop-area.highlight {
    border-color: purple;
  }
  p {
    margin-top: 0;
  }
  .my-form {
    margin-bottom: 10px;
  }
  #gallery {
    margin-top: 10px;
  }
  #gallery img {
    width: 150px;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .button_files {
    display: inline-block;
    padding: 10px;
    background: #ccc;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .button_files:hover {
    background: #ddd;
  }
  #fileElem {
    display: none;
  }
  
  #files-area{
    width: 100%;
    margin: 0 auto;
  }
  .file-block{
    width: 100%;
    border-radius: 10px;
    background-color: rgba(144, 163, 203, 0.2);
    margin: 5px;
    color: initial;
    display: inline-flex;
    & > span.name{
      padding-right: 10px;
      width: max-content;
      display: inline-flex;
    }
  }
  .file-delete{
    display: flex;
    width: 24px;
    color: initial;
    background-color: #6eb4ff00;
    font-size: large;
    justify-content: center;
    margin-right: 3px;
    cursor: pointer;
    &:hover{
      background-color: rgba(144, 163, 203, 0.2);
      border-radius: 10px;
    }
    & > span{
      transform: rotate(45deg);
    }
  }

*/



.dashboard_main{
    color: #000;

    /*background-color: aqua;*/
    display: flex;
    
    width: 94%;
    max-width: 1440px;

    min-height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    margin-bottom: 40px;

    overflow-x: visible;
}



.control_panel_container{
    width: 260px;
    position: absolute;
    /*background-color: blue;*/
}

.control_panel_container_sticky{
    position: fixed;
    top: 16px;
    /*background-color: blue;*/
}

.control_panel_container_placeholder{
    flex: none;
    width: 280px;
}

.content_container{
    /*background-color: brown;*/
}


.dashboard_account_container{
    background-color: white;
    border-radius: 24px;

    width: 260px;

    padding-top: 24px;
    padding-bottom: 32px;

    display: flex;
    flex-direction: column;
    align-items: center;

    -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    
}

.dashboard_account_all{
    display: flex;
    flex-direction: column;
}

.dashboard_account{
    display: flex;
    justify-content: center;
}

.dashboard_account_img{
    height: 130px;
    width: 130px;
    background-color: #FF1E30;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 60px;
}

.dashboard_account_FIO_type_container{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard_account_FIO{
    text-align: center;
    width: 80%;
}

.dashboard_account_type{
    text-align: center;
    color: darkgray;
    font-size: 12px;
}

.dashboard_account_edit_button{
    
    margin-top: 24px;
    
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-top: 6px;

    border-radius: 16px;
}


.dashboard_menu_container{
    background-color: white;
    border-radius: 24px;

    margin-top: 18px;

    padding-top: 12px;
    padding-bottom: 12px;

    -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
}

.dashboard_list{
    font-size: 13px;

    display: flex;
    flex-direction: column;
    padding-top: 12px;
}

.dashboard_list_el{
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 22px;

    display: flex;
    align-items: center;
    grid-gap:8px;

    color: #757575;
    transition: 0.4s;
    cursor: pointer;
}

.dashboard_list_el:hover{
    color: #ab3232;
}

.dashboard_list_el_active{
    transition: 0s;
    color: #ab3232;
}

.dashboard_list_icon{
    width: 14px;
    font-size: 14px;
    padding-top: 0px;
}

.dashboard_content_container{
    /*margin-left: 58px;*/
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
}

#dashboard_list_home:checked ~ .control_panel_container .dashboard_list_home,
#dashboard_list_k:checked ~ .control_panel_container .dashboard_list_k,
#dashboard_list_o:checked ~ .control_panel_container .dashboard_list_o,
#dashboard_list_v:checked ~ .control_panel_container .dashboard_list_v{
    color: #ab3232;
}




.dashboard_content_title{
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.dashboard_content_el{
    font-size: 42px;
    display: none;
}

.dashboard_content_home{
    display: block;
}

#dashboard_list_home:checked ~ .dashboard_content_container .dashboard_content_home,
#dashboard_list_k:checked ~ .dashboard_content_container .dashboard_content_k,
#dashboard_list_o:checked ~ .dashboard_content_container .dashboard_content_o,
#dashboard_list_v:checked ~ .dashboard_content_container .dashboard_content_v{
    display: block;
}

#dashboard_list_k:checked ~ .dashboard_content_container .dashboard_content_home,
#dashboard_list_o:checked ~ .dashboard_content_container .dashboard_content_home,
#dashboard_list_v:checked ~ .dashboard_content_container .dashboard_content_home{
    display: none;
}

.dashboard_main input[type="radio"]{
    display: none;
}




/* DASHBOARD TABLE STYLE */

.table_control_container{
    display: flex;
    background-color: #fff;

    padding-top: 18px;
    padding-bottom: 18px;

    padding-left: 12px;
    padding-right: 12px;

    border-radius: 8px;

    -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
}


.scroll-table{
    margin-top: 24px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;

    padding-left: 8px;
    padding-right: 8px;

    background-color: #fff;
}


.scroll-table-body {
	height: 450px;
	overflow-x: auto;
	margin-top: 0px;
	margin-bottom: 20px;

    border-top: 3px solid #000;
    margin-top: 10px;
    
}
.scroll-table table {
	width:100%;
	table-layout: fixed;
	border: none;
    border-collapse: collapse; 
}
.scroll-table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;

	font-size: 14px;	
}

.scroll-table thead th+th+th+th+th{
    text-align: right;
}

.table_big_text{
    width: 20%;
}

.table_bool{
    width: 10%;
}

.table_small_numbers{
    width: 10%;
}

.table_small_text{
    width: 20%;
}

.table_buttons{
    width: 40%;
}

.table_buttons_container{
    display: flex;
    grid-gap:4px;
    justify-content: end;
    color: white;
}

.all_table_button{
    -webkit-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    -moz-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    cursor: pointer;
    transition: .5s;

    padding-left: 10px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;

    border-radius: 2px;
}

.green_table_button{
    background-color: green;
}

.blue_table_button{
    background-color: dodgerblue;
}

.red_table_button{
    background-color: #ab3232;
}

.table_check_icon{
    color: green;
}

.scroll-table tbody td {
	text-align: left;
	padding: 22px 15px;
	font-size: 14px;
	vertical-align: top;

}

.scroll-table tbody td+td+td+td+td {
	align-items: right;
}

.scroll-table tbody tr{
    border-bottom: 1px solid black;
}

.scroll-table tbody tr:nth-child(even){
	
}
 
/* Стили для скролла */
::-webkit-scrollbar {
	width: 2px;
    height: 5px;
} 
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.158); 
} 
::-webkit-scrollbar-thumb {
    background-color: rgb(228, 11, 11);
}




/* Панель успеваемости */

.dashboard_score_table_container{
    margin-top: 0px;
    background-color: white;
    min-height: 20px;
    border-radius: 18px;
    
    -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
}

.dashboard_score_header{
    border-bottom: 2px solid rgb(240, 240, 240);
    margin-left: 16px;
    margin-right: 16px;

    padding-bottom: 12px;
    padding-left: 12px;
    padding-top: 12px;

    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.dashboard_score_body{
    font-size: 16px;
    padding-bottom: 18px;
}

.dashboard_score_subject_container{
    margin-right: 28px;
    margin-left: 28px;
    margin-top: 10px;
    margin-bottom: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgb(240, 240, 240);
}

.dashboard_score_subject_name{
    font-size: 16px;
    font-weight: 600;
    color: #851818;
    
}

.dashboard_score_subject_fields{
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 8px;
    margin-top: 6px;
    
}

.dashboard_score_subject_field_el{
    border-radius: 8px;

    font-size: 14px;
    margin-right: 10px;

    overflow: hidden;
    text-align: center;

    width: 38px;
}

.dashboard_score_subject_field_el_date{
    font-size: 12px;

    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    padding-right: 4px;
    color: white;
    background-color: rgba(12, 159, 12, 0.8);
}

.dashboard_score_subject_field_el_number{
    padding-top: 4px;
    padding-bottom: 4px;
}

.score_1{
    background-color: rgba(198, 34, 34, 0.5);
}

.score_2{
    background-color: rgba(198, 100, 34, 0.5);
}

.score_3{
    background-color: rgba(179, 198, 34, 0.5);
}

.score_4{
    background-color: rgba(113, 198, 34, 0.5);
}

.score_5{
    background-color: rgba(86, 198, 34, 0.5);
}

.dropdown-el_holder{
    position: relative;
    width: 400px;
    height: 50px;
    z-index: 1005;
}

.dropdown-el {
  text-align: center;
  font-size:24px;
  color: white;
  
  position: relative;
  display: inline-block;

  min-width: 100px;
  width: 48vw;
  max-width: 300px;
  
  min-height: 48px;
  max-height: 48px;

  overflow:hidden;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;

  
  outline: none;
  border: .06em solid transparent;
  border-radius: 1em;
  background-color: #FF1E30;

  top: 0;
  left: 0;
  
  transition: .3s all ease-in-out, 0.0s color;
  input:focus + label {
    background-color: #def;
    
  }
  input {
    width: 1px;
    height: 1px;
    display: inline-block;
    position: absolute;
    opacity: 0.01;
    
  }
  label {
    border-top: .06em solid #d9d9d9;
    display:block;
    height: 2em;
    line-height: 2em;
    padding-left: 1em;
    padding-right: 3em;
    cursor: pointer;
    position: relative;
    transition: .3s color ease-in-out;  
    
    &:nth-child(2) {
        
      margin-top: 2em;
      border-top: .06em solid #d9d9d9;
    }
  }
  input:checked + label {
    display:block;
    border-top: none;
    position: absolute;
    top: 0;
    width: 100%;

    &:nth-child(2) {
      margin-top: 0;
      position: relative;
    }
  }
  
  &::after {
    content:"";
    position: absolute;
    right: 0.8em;
    top: 0.9em;
    border: .3em solid #FF1E30;
    border-color: white transparent transparent transparent;
    transition: .4s all ease-in-out;
    
  }
  &.expanded {
    border: .06em solid #FF1E30;
    background: #fff;
    border-radius: .25em;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
    max-height:15em;

    color: #000;
    
    label {
      border-top: .06em solid #d9d9d9;
      &:hover {
        color:#FF1E30;
      }
    }
    input:checked + label {
      color:#FF1E30;
    }
    
    &::after {
      transform: rotate(-180deg);
      top:.55em;
      border-color: #FF1E30 transparent transparent transparent;
    }
  }
}

.dropdown_giveScores_course{
    min-width: 350px;
    width: 48vw;
    max-width: 450px;
    
    min-height: 48px;
    max-height: 48px;
    z-index: 10;

    font-size: 24px;
}

.dashboard_task_header{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.dashboard_task_cards_list{
    display: flex;
    flex-direction: column;
}

.dashboard_task_card_container{
    -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    
    border-radius: 18px;
    
    margin-bottom: 24px;
    padding: 16px 16px;

    background-color: white;
    height: 100%;

    font-size: 14px;
}

.dashboard_task_card_head{
    display: flex;
    justify-content: space-between;
}

.dashboard_task_card_subject{
    word-break: break-all;
    padding-right: 8px;
    font-size: 24px;
    font-weight: 700;
}

.dashboard_task_card_date_assignment{
    color: white;
    background-color: #FF1E30;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    height: 100%;
    font-size: 14px;
}

.dashboard_task_card_text{
    margin-top: 20px;
    font-size: 20px;
}

.dashboard_task_card_date_delivery{
    color: #333333;
    margin-top: 16px;
    font-size: 13px;
}

/*

.general_select{
    width: 360px;
    height: 50px;
    display: flex;
    position: relative;
}

.general_select select{
    appearance: none;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #FF1E30;
    border: none;
    border-radius: 32px;
    color: #fff;
    cursor: pointer;
    transition: all 0.6s;

    width: 100%;
    height: 100%;
}

.general_select select option{
    background-color: #fff;
    color: #000;
}

.general_select select:active,
.general_select select:focus {
    border-radius: 8px;
    border: none;
    border-color: #FF1E30;
    background-color: #fff;
    color: #FF1E30;
    outline-color: #FF1E30;
}

.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    
    border-top: 10px solid #fff;

    position:absolute;

    top: 20px;
    right: 25px;
}

.general_select select:focus ~ .arrow-down{

    border-top: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    
    border-bottom: 10px solid #FF1E30;
}
*/

#dropdownMenuButton1{
    width: 472px;
    text-align: left;
    background-color: #FFFFFF;
    color: black;
    font-size: 11px;
    position: relative;
  }
  #dropdownMenuButton1::after{
    right: 10px;
    top: 50%;
    position: absolute;
    top: 8px;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-left: 3px solid #C4C4C4;
    border-bottom: 3px solid #C4C4C4;
    transform: rotate(-45deg);
    border-top: unset;
    border-right: unset;
  }
  #dropdownMenu1{
    top: -12px!important;
    border-top: none;
    width: 474px;
    padding-bottom: 0px;
    margin-left: -1px!important;
  }
  #dropdownMenu1 > li:hover a{
    background: #50A9FC;
  }
  .dropdown-item{
    padding: 0.25rem 12px;
    font-size: 11px;
  }
  .modal-content label{
    margin-bottom: 8px;
  }

  .training_programs_nav{

    margin-top: 42px;
  
    display: flex;
    flex-wrap: wrap;
    position: relative;
  
    justify-content: space-between;
  
    border-radius: 56px;
  
    font-size: min(calc(6px + 0.5vw), 16px);
  }
  
  
  .training_programs_content{
    
    width: 100%;
  }
  
  .TP_input_radio[type="radio"]{
    display: none;
  }
  
  .TP_label_tab{
    width: 20%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  
    white-space: nowrap;
  
    transition: ease-in-out 0.35s;
  
    z-index: 1;
  
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .TP_label_tabs_background{
    position: absolute;
    background-color: #fff;
    width: 100%;
    border-radius: 56px;
  
    -webkit-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    -moz-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  }
  
  .training_programs_content{
    margin-top: 42px;
  }
  
  .TP_tab_content{
    display: none;
  }
  
  #TP_tab_btn1:checked~#TP_tab_lbl1,
  #TP_tab_btn2:checked~#TP_tab_lbl2,
  #TP_tab_btn3:checked~#TP_tab_lbl3,
  #TP_tab_btn4:checked~#TP_tab_lbl4,
  #TP_tab_btn5:checked~#TP_tab_lbl5 {
    color: #fff;
    background-color:#FF1E30; /*#9E2032;*/
    border-radius: 56px;
  }
  
  
  /*.training_programs .training_programs_nav #TP_tab_btn1:checked + .training_programs .training_programs_content #TP_content1*/
  #TP_tab_btn1:checked~.training_programs_content #TP_content1,
  #TP_tab_btn2:checked~.training_programs_content #TP_content2,
  #TP_tab_btn3:checked~.training_programs_content #TP_content3,
  #TP_tab_btn4:checked~.training_programs_content #TP_content4,
  #TP_tab_btn5:checked~.training_programs_content #TP_content5 {
    display: block;
  }


  /*Раскрывающийся список*/

  .direction_info_container{
        flex-basis: 70%;
        padding-right: 4%;

        font-size: min(calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320))), 20px);

        margin-bottom: 64px;
    }

    .direction_info_container h3{
        font-weight: 600;
        margin-top: 58px;
        margin-bottom: 28px;

        text-decoration: underline #9E2032;
        text-underline-offset: 6px;
    }

    .direction_info_container p{

    }

    .direction_info_container h2{
        font-size: min(calc(12px + 1.85vw), 38px);
        font-weight: 600;
        margin-top: 64px;
        margin-bottom: 38px;
    }

    .direction_info_details .details{
        margin: 0 0 18px;
        max-width: unset;
    }

    .direction_info_details .details::after{
        display: none;
    }

    .direction_info_details .details .details__title{
        font-size: min(calc(12px + (22 - 12) * ((100vw - 320px) / (1920 - 320))), 22px);
        font-weight: 500;
        padding: 28px 24px;
    }

    .direction_info_details .details .details__title::after{
        position: absolute;
        right: 24px;
        
        
        content: "";
        width: 14px;
        height: 14px;
        border-right: 3px solid #ab3232;
        border-bottom: 3px solid #ab3232;
        transform: rotate(-45deg) translateY(2px);
        transform-origin: center;
        transition: .6s;
    }

    .direction_info_details .details[open] .details__title::after {
        transform: rotate(45deg);
    }

    .direction_info_details .details .details__content {
        padding: 0 24px;
        font-size: 18px;
        margin-bottom: -50px;
        display: block;
        justify-content: unset;
        flex-wrap: unset;

        font-size: min(calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320))), 18px);

        transition: .6s;
    }

    .direction_info_details .details .details__content h6{
        font-size: min(calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320))), 22px);
        font-weight: 600;

        margin-bottom: 10px;
    }

    .direction_info_details .details_ .details__content p{
        margin-bottom: 28px;
    }

    .direction_info_details .details .details__content ul{
    }

    .direction_info_details .details .details__content ul li{
        list-style-type: disc;
        list-style-position: inside;

        margin-top: 12px;
    }

    .direction_info_details .details .details__content ul li::marker{
        color: #bebebe;
    }







@media screen and (max-width: 900px) {
    .dropdown_giveScores_course{
        min-height: 48px;
        max-height: 48px;
        font-size: 24px;
    }
  }

@media screen and (max-width: 760px) {
body{
}

.dashboard_content_title{
    font-size: 30px;
    padding-left: 5px;
}

.dashboard_content_title.mp{
    margin-left: 24px;
}

.dropdown-el{
    width: 80vw;

    top: 0;
    left: 0;
}

.dropdown_giveScores_course{
    
}

.dashboard_main{
    /*background-color: aqua;*/
    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    /*ЕСЛИ ЗАХОЧУ ХОРОШУЮ МОБИЛЬНУЮ ВЁРСТКУ*/
    margin-bottom: 40px;
}

.control_panel_container{
    margin-top: 65px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    display: none;
}

.control_panel_container_sticky{
    position: relative;
    top: 0px;
}


.dashboard_account_container{
    width: 90%;
    border-radius: 24px;


    padding-top: 24px;
    padding-bottom: 32px;

    display: flex;
    flex-direction: column;
    align-items: center;

    -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
}

 
.dashboard_account_all{
    width: 85%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.dashboard_account{
    width: 100%;
}

.dashboard_account_FIO_type_container{
    justify-content: center;
    align-items: flex-start;

    margin-left: 12px;
}

.dashboard_account_FIO{
    text-align: start;
    font-size: calc(10px + 3vw);
}

.dashboard_account_type{
    font-size: calc(6px + 1.5vw);
}

.dashboard_account_edit_button{
    width: 85%;
    border-radius: 8px;
}

.dashboard_menu_container{
    background-color: transparent;

    -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 0px 0px rgba(34, 60, 80, 0.2);

    border-radius: 24px;

    margin-top: 0px;
    margin-bottom: 10px;

    padding-top: 6px;
    padding-bottom: 12px;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    
}

.dashboard_list{

    font-size: 18px;

    display: flex;
    flex-direction:row;
    padding-top: 12px;
    width: 97%;
    
    overflow-x: auto;
    
}

.dashboard_content_container{
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    min-height: 100vh;
}

.dashboard_score_table_container{
    margin-top: 30px;
}

.dashboard_task_cards_list{
    flex-direction: column;
    justify-content: center;
}

.dashboard_task_card_container{
    width: 100%;
}
}
@media screen and (max-width: 460px) {

.dropdown-el_holder{
    position: relative;
    width: 100%;
    height: 25px;
    z-index: 1005;
}

.dropdown-el{
    width: 100%;
    font-size: 12px;
    max-height: 24px;
    min-height: 24px;

    top: 0;
    left: 0;
}

.dropdown_giveScores_course{
    min-width: 350px;
    width: 48vw;
    max-width: 450px;
    
    min-height: 24px;
    max-height: 24px;
    z-index: 10;

    font-size: 12px;
}

}









.dashboard_giveScore_fields{
    display: flex;
    align-items: center;

    margin-right: 28px;
    margin-left: 28px;
    margin-top: 10px;
    margin-bottom: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgb(240, 240, 240);
}

.dashboard_giveScore_FIO{
    word-break: break-all;
    min-width: 100px;
    width: 20vw;
    max-width: 160px;
    margin-right: 12px;

    flex: 0 0 auto;
}

.dashboard_giveScore_addButton{
    font-size: 18px;
    
    min-height: 30px;
    min-width: 30px;
    border: none;
    color: white;
    background-color: rgb(0, 185, 0);

    margin-left: 8px;
    margin-right: 24px;

    transition: 0.3s all;

    cursor: pointer;

    flex: 0 0 auto;
}

.dashboard_giveScore_addButton:hover{
    color: rgb(245, 245, 245);
    background-color: rgb(0, 137, 0);
  }
  
.dashboard_giveScore_addButton:focus{
    outline: none;
    border: none;
}