

*:focus {outline: none;
}

body{
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: 300;
    text-align: left;
    color: black;
    font-size: 12pt;
}

a {
    text-decoration: none;
    color: inherit;
}

div, span{
    padding: 0;
    margin: 0;
}

img{
    border: none;
    padding: 0;
    margin: 0;
}

span{
    display: inline-block;
    position: relative;
}

textarea{
    font-family: 'Montserrat', sans-serif;
    font-size: 12pt;
    padding: 3px;
    border-radius: 4px;
    border: 1px solid #51897E;
}

.win_head{
    margin: 20px auto 20px auto;
    font-size: 16pt;
    text-align: center;
}

.log_in {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: max-content;
    max-width: 20vw;
    background-color: white;
    font-size: 11pt;
    color: #51897E;
    top: 1%;
    right: 1%;
    z-index: 3;
}

.exit {
    margin: 3px auto auto auto;
    cursor: pointer;
}

.exit:hover {
    text-decoration: underline;
}

.uni_flex{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.uni_input{
    font-size: 12pt;
    background-color: white;
    padding: 5px;
    border: 1px solid #51897E;
    border-radius: 6px;
    color: #414A52;
    font-family: 'Rubik', sans-serif;
}

.uni_close{
    position: fixed;
    top: 10px;
    right: 10px;
    width: 21px;
    height: 21px;
    border-radius: 12px;
    border: 2px solid #51897E;
    cursor: pointer;
    z-index: 25;
}
.uni_close:hover{
    background-color: #51897E;
}

.degree45{
    position: absolute;
    left: 3px;
    top: 9px;
    width: 16px;
    height: 2px;
    transform: rotateZ(45deg);
    background-color: #51897E;
}

.logo_menue{
    position: fixed;
    top: 5px;
    left: 5px;
    width: 120px;
    text-align: center;
    z-index: 50;
}

#side_menue{
    width: 70px;
    top: 80px;
    left: -120px;
    position: fixed;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: 0.2s;
    z-index: 50;
    opacity: 0.8;
}


.menue_block_central{
    width: 700px;
    height: max-content;
    position: fixed;
    left: 45%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: left;
}


.menue_block_sub{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-size: 24pt;
    color: #3E5B56;
    margin-bottom: 1.5vh;
}

.menue_block_sub:hover{
    font-weight: 400;
}

#admin_line{
    width: 700px;
    height: 2px;
    background-color: #61777C;
    transition: 0.3s;
    transform-origin: left;
    margin: -1.25vh 0 0 80px;
    transform: scaleX(0);
}

#admin_sub_menue{
    position: absolute;
    top: 1vh;
    right: 5px;
    text-align: left;
    height: max-content;
    max-height: 70vh;
    transition: 0.3s;
    transform-origin: top;
    transform: scaleY(0);
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    overflow-x: hidden;
    overflow-y: auto;
}

#admin_sub_menue::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #61777C;
}
#admin_sub_menue::-webkit-scrollbar-thumb{
    background-color: #6E9FAE;
}


.admin_sub_menue{
    color: #61777C;
    font-size: 20pt;
    margin-bottom: 1vh;
    cursor: pointer;
}
.admin_sub_menue:hover{
    font-weight: 400;
}

.uni_table{
    width: 99%;
    margin: 10px auto 100px auto;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 70vh;
    text-align: left;
    position: relative;
}
.uni_table::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #61777C;
}
.uni_table::-webkit-scrollbar-thumb{
    background-color: #6E9FAE;
}

.uni_head{
    width: 100%;
    padding: 0 4px 0 4px;
    margin: 0 0 10px 0;
    font-size: 12pt;
    font-style: italic;
    font-weight: 400;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #61777C;
    background-color: inherit;
}

.uni_row{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    padding: 2px 4px 2px 4px;
    min-height: 35px;
    height: fit-content;
    margin-bottom: 1vh;
    font-size: 12pt;
    border-radius: 4px;
    cursor: pointer;
}

.uni_row:hover{
    background-color: #DEE9ED;
}

.uni_window{
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 30;
    width: max-content;
    height: max-content;
    max-width: 85vw;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px;
    text-align: left;
    background-color: #FAFCF2;
    border-radius: 8px;
    border: 1px solid #6E9FAE;
    box-shadow: 2px 2px 4px #414A52;
    transition: 0.2s;
    transform: translateX(-50%) translateY(-50%);
    display: none;
}

.uni_window::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #61777C;
}
.uni_window::-webkit-scrollbar-thumb{
    background-color: #6E9FAE;
}

.uni_flex_column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
}
.uni_flex_column::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #61777C;
}
.uni_flex_column::-webkit-scrollbar-thumb{
    background-color: #6E9FAE;
}

.uni_button{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: max-content;
    height: 30px;
    padding: 6px;
    border-radius: 6px;
    border: 2px solid #DEE9ED;
    font-size: 13pt;
    cursor: pointer;
}

.uni_button:hover{
    border: 2px solid #6E9FAE;
}

.upper_admin_menue{
    position: fixed;
    top: 30px;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
}

.uni_lable{
    width: 150px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12pt;
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}

#PREVIEW{
    position: fixed;
    transform: translateX(-50%) translateY(-50%);
    transition: 0.3s;
    top: 50%;
    width: 60vw;
    height: 85vh;
    left: 50%;
    z-index: 31;
    box-shadow: 2px 2px 4px #424A52;
    background-color: #FAFAFA;
    display: none;
}

#prev_frame{
    width: 100%;
    height: 100%;
}

.uni_scroll{
    overflow-x: hidden;
    overflow-y: auto;
}

.uni_scroll::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #61777C;
}

.uni_scroll::-webkit-scrollbar-thumb{
    background-color: #6E9FAE;
}

.uni_drag_drop{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 10px;
    border-radius: 4px;
    background-color: #6E9FAE;
    cursor: pointer;
}

.ball_box{
    position: relative;
    width: 22px;
    height: 14px;
    border-radius: 7px;
    background-color: #6E9FAE;
}

.ball{
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: white;
    box-shadow: 4px 4px 4px #61777C;
    left: 2px;
    top: 2px;
}

.sch_serv_row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 5px;
    border-radius: 4px;
}

.sch_serv_row:hover{
    background-color: #DEE9ED;
}

.uni_dell{
    font-size: 14pt;
    color: #C0392B;
    font-weight: 400;
    margin-right: 10px;
    cursor: pointer;
}

.radio_out{
    height: 26px;
    width: 26px;
    text-align: center;
    background-color: white;
    border: 1px solid #61777C;
    border-radius: 14px;
}

.radio_in{
    height: 20px;
    width: 20px;
    background-color: #6E9FAE;
    margin: 3px;
    border-radius: 12px;
}

.sch_vision{
    position: relative;
    font-size: 14pt;
    padding: 6px;
    text-align: center;
    border: 1px solid white;
    border-radius: 6px;
    width: 150px;
    cursor: pointer;
    margin-left: 40px;
}

.pole_line{
    width: max-content;
    margin-bottom: 20px;
    height: max-content;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

#clone_div{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 10px auto 0 auto;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #78AC41;
    text-align: center;
    width: 760px;
    height: max-content;
    transform: scaleY(0);
}

.sch{
    position: relative;
    width: 13vw;
    height: max-content;
    min-height: 100px;
    border-radius: 8px;
    border: 1px solid #6E9FAE;
    padding: 40px 3px 3px 3px;
    background-color: #DEE9ED;
    margin-left: 5px;
    cursor: pointer;
}

.sch_empty{
    position: relative;
    width: 13vw;
    height: max-content;
    min-height: 100px;
    margin-left: 5px;
    padding: 30px 3px 3px 3px;
    visibility: hidden;
}

.sch_date{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-40%);
    font-weight: 400;
    font-size: 12pt;
    padding: 4px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    width: max-content;
}

.sch_row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto 10px auto;
    color: black;
    padding: 2px;
    border-radius: 4px;
    border: 1px solid #6E9FAE;
}

.sched_plus{
    position: absolute;
    top: 5px;
    left: 10px;
}

.arr{
    position: absolute;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.uni_input_sch{
    font-size: 10pt;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    border: 1px solid #6E9FAE;
    border-radius: 3px;
    margin-right: 4px;
    background-color: white;
}

.uni_window_head{
    font-size: 16pt;
    text-align: center;
    width: 100%;
    margin: 10px auto 20px auto;
}
