@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f1f1f1;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{

    --primary: #0C7DFF;
    --secundary: #333940;
    --before: #1B114A;
    --rose: #FF315E;
    --purple: #6E5AFB;

    --font1: 'Roboto', sans-serif;
}

.btn-primary{
  background-color: var(--before);
  border: none !important;
}

.credits{
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.credits img{
  width: 100px;
  transition: all 0.3s ease-in-out;
}
.credits a img:hover{
  transform: scaleX(1.05);
  transition: all 0.3s ease-in-out;
}

.topbar{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #fff;
    height: 70px;
    z-index: 10;
}
.topbar_inner{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    padding-right: 50px;
    font-size: 18px;
    color: var(--before);
    font-family: var(--font1);
    font-weight: 600;
}

@media screen and (max-width: 400px) {
  .topbar_inner{
    font-size: 12px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 750px) {
  .topbar_inner{
    padding-right: 10px;
  }
}


/* errorhandling */
.error_handling{
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.error_handling_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    font-size: 25px;
    height: 150px;
    padding: 20px;
    color: red;
    border-radius: 10px;
    text-align: center;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 12;
    top: 0;
    left: 0;
    background-color: var(--before);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
    text-decoration: none;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 36px;
  }

  i.menu_open{
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 35px;
    color: var(--before);
    cursor: pointer;
    z-index: 11;
    transition: all 0.3s ease-in-out;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }


  /* calendar */
  .calendar{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .calendar_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 95%;
  }
  .calendar_inner h1{
    font-weight: 600;
    font-family: var(--font1);
    color: var(--before);
    font-size: 25px;
    padding: 20px;
  }

  /* overwrited style calendar */
  .fc-time-grid-event .fc-time span{
    color: #fff !important;
  }
  tr:first-child > td > .fc-day-grid-event span{
    color: #fff;
  }
  .fc-time-grid-event .fc-time, .fc-time-grid-event .fc-title {
    padding: 0 1px;
    color: #fff;
    font-weight: bold;
  }
  .fc-toolbar h2 {
    color: var(--before) !important;
    font-family: var(--font1) !important;
    font-weight: 500 !important;
  }
  .fc-content .fc-time {
    color: #fff !important;
  }
  .fc-content .fc-title {
    color: #fff !important;
  }
  .fc-toolbar h2{
    margin: 10px 0;
  }
  .fc-toolbar .fc-left {
    float: left;
    margin-bottom: 10px;
  }
  /* .fc-unthemed td.fc-today{
    background: #1b114a17 !important;
  } */


  /* add events */
  .plan_event{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .plan_event_inner{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .plan_event_inner h1{
    font-family: var(--font1);
    font-weight: 600;
    color: var(--before);
    margin-bottom: 20px;
    font-size: 28px;
  }
  .plan_event_inner form{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }
  .plan_event_inner form label{
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .plan_event_inner form button{
    margin-top: 20px;
  }

  .plan_event_inner .block{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .plan_event_inner .block_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    font-size: 18px;
  }
  .plan_event_inner .block_inner p{
    text-align: left;
  }
  .plan_event_inner .underline{
    height: 2px;
    width: 100%;
    background-color: #1B114A;
    border-radius: 5px;
    margin-bottom: 12px;
  }

  /* input#session-date {
    display: inline-block;
    position: relative;
  }
  
  input[type="datetime-local"]
  ::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }

  ::-webkit-calendar-picker-indicator{
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  } */

  
  .time{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 33%;
  }
  .time_inner{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
  }

  .time_inner a{
    background-color: var(--rose);
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
  }
  .time_inner a:hover{
    opacity: 1; 
    transition: all 0.3s ease-in-out;
  }
  #toast-container > div {
    opacity: 1 !important; 
  }

  .buttonoverview{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .buttonoverview_inner{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 1200px;
  }
  .buttonoverview_inner a{
    background-color: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
    margin-bottom: 20px;
  }
  .buttonoverview_inner a:hover{
    opacity: 1; 
    transition: all 0.3s ease-in-out;
  }

  .paginate{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .paginate_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
  }

  .paginate_inner p{
    margin-top: 20px;
    text-align: center;
  }
  .paginate_inner a{
    text-decoration: none;
  }
  
  /* .paginate_inner span.relative a{
    display: none !important;
  } */
  svg{
    display: none !important;
  }
  .paginate_inner div span span.relative{
    display: none !important;
  }
  
@media screen and (max-width: 1250px) {
  .buttonoverview_inner a{
    margin-right: 20px;
  }
}
@media screen and (max-width: 800px) {
  .plan_event_inner .block_inner{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .time{
    max-width: 100%;
  }
  .time_inner{
    margin: 10px 0;
  }
}