body,html{
    height:100%;
}
body {
    position:relative;
    font-family: 'Roboto Condensed', sans-serif;
    color:#52659A;
}


.abstract{
    background: rgb(0,200,150);
    background: -moz-linear-gradient(90deg, rgba(0,200,150,1) 0%, rgba(0,215,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,200,150,1) 0%, rgba(0,215,255,1) 100%);
    background: linear-gradient(90deg, rgba(0,200,150,1) 0%, rgba(0,215,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00c896",endColorstr="#00d7ff",GradientType=1);
}

.abstract_hover:hover{
    background: rgba(0,215,255,1);
    background: -moz-linear-gradient(90deg, rgba(0,215,255,1) 0%, rgba(0,200,150,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,215,255,1) 0%, rgba(0,200,150,1) 100%);
    background: linear-gradient(90deg, rgba(0,215,255,1) 0%, rgba(0,200,150,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00d7ff",endColorstr="#00c896",GradientType=1);
}


.l_menu_button{
    position:relative;
    width:60px;
    height:60px;
}

.l_menu_button:hover .l_menu_bg{
    opacity:1;
}
.l_menu_button:hover .l_menu_icon{
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(222deg) brightness(500%) contrast(102%);
}

.l_menu_bg{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    opacity:0;
}

.l_menu_icon{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.baslik_zemin{
    padding:5px 20px;
    color:#FFFFFF;
    font-weight: bold;
}

.bg_yellow{background-color: #FFCC00;}
.bg_red{background-color: #EE646E;}
.bg_blue{background-color: #55C7EA;}
.bg_aqua{background-color: #32CAB8;}
.bg_grey{background-color: #7D90BA;}
.bg_dblue{background-color: #658AE5;}
.bg_lyellow{background-color: #FFCC00;}
.bg_lgrey{background-color: #D3E1EA;}
.bg_purple{background-color: #9D7DB7;}

.f_yellow{color: #FFCC00 !important;}
.f_red{color: #EE646E !important;}
.f_blue{color: #55C7EA !important;}
.f_aqua{color: #32CAB8 !important;}
.f_grey{color: #7D90BA !important;}
.f_dblue{color: #658AE5 !important;}
.f_lyellow{color: #FFCC00 !important;}
.f_lgrey{color: #D3E1EA !important;}
.f_white{color: #FFFFFF !important;}

#header{
    height:70px;
}

#header_logo{
    position: relative;
    float:left;
    margin-left:12px;
    top:50%;
    transform:translateY(-50%);
}

#content{
    min-height: calc(100% - 70px);
    position: relative;
}

#left_menu{
    position: absolute;
    left:0;
    top:0;
    width: 60px;
    min-height: 100%;
    background-color: #ffffff;
}

#content_holder{
    position: absolute;
    left:60px;
    top:0;
    width: calc(100% - 60px);
    min-height: 100%;
    background-color: #EAF0F7;
    padding:25px;
}

#pager{
    padding:20px;
    background-color: #FFFFFF;
}


.select_cas {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}    
.select_cas select {
    font-family: 'Arial';
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 9px 15px 15px 15px;
    outline: 0;
    border: 0px solid #000000;
    border-radius: 0px;
    background: #eaf0f7;
    color: #52659a;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select_cas select::-ms-expand {
    display: none;
}
.select_cas select:hover,
.select_cas select:focus {
    color: #52659a;
    background: #eaf0f7;
}
.select_cas select:disabled {
    opacity: 0.5;
    pointer-events: none;
}
.select_cas_arrow {
    position: absolute;
    width:0;
    top: 33px;
    left:0;
    right:0;
    margin: 0 auto;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0px 5px;
    border-color: #00C896 transparent transparent transparent;
}
.select_cas select:hover ~ .select_cas_arrow,
.select_cas select:focus ~ .select_cas_arrow {
    border-top-color: #00D7FF;
}
.select_cas select:disabled ~ .select_cas_arrow {
    border-top-color: #cccccc;
}

/*----------*/

.select {
    position: relative;
    /*display: inline-block;*/
}    
.select select {
    font-family: 'Arial';
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 5px 15px 5px 5px;
    outline: 0;
    border: 0px solid #000000;
    border-radius: 0px;
    background: #eaf0f7;
    color: #52659a;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select select::-ms-expand {
    display: none;
}
.select select:hover,
.select select:focus {
    color: #52659a;
    background: #eaf0f7;
}
.select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}
.select_arrow {
    position: absolute;
    width:0;
    top: 15px;
    right:3px;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0px 5px;
    border-color: #00C896 transparent transparent transparent;
}
.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
    border-top-color: #00D7FF;
}
.select select:disabled ~ .select_arrow {
    border-top-color: #cccccc;
}

/*-------*/

input{
    border: none;
    background-color:#EAF0F7;
    color:#52659A;
    padding:5px 10px;
    width:100%;
}

.button{
    padding:5px 10px;
    text-align: center;
    cursor: pointer;
}

.button_sm{
    padding:0px 10px;
    text-align: center;
    cursor: pointer;
}

#message{
    display:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.3);  
}

#message_box{
    position:absolute;
    left:0;
    right:0;
    width:350px;
    top:50%;
    transform: translateY(-50%);
    height: auto;
    margin: auto;
    padding:15px;
    color:#FFFFFF;
}

#message_text{
    text-align: center;
}

#message_actions{
    margin-top:20px;
}

.message_action_buttons{
    margin-top:10px;
}

.action_key{
    cursor:pointer;
}
.action_key:hover{
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(222deg) brightness(500%) contrast(102%);
}


  
  .toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
  }
  .toggle:before {
    content: "";
    position: relative;
    top: 3px;
    left: 3px;
    width: 34px;
    height: 14px;
    display: block;
    background: #EAF0F7;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .toggle span {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    display: block;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(234, 240, 247, 0.5);
    transition: all 0.2s ease;
  }
  .toggle span:before {
    content: "";
    position: absolute;
    display: block;
    margin: -18px;
    width: 56px;
    height: 56px;
    background: rgba(255, 157, 0, 0.5);
    border-radius: 50%;
    transform: scale(0);
    opacity: 1;
    pointer-events: none;
  }
  
  #cbx:checked + .toggle:before {
    background: #FFCC00;
  }
  #cbx:checked + .toggle span {
    background: #FF9D00;
    transform: translateX(20px);
    transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
    box-shadow: 0 3px 8px rgba(255, 157, 0, 0.2);
  }
  #cbx:checked + .toggle span:before {
    transform: scale(1);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .center {
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 20px);
  }
  