@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
  * {
    padding: 0;
    margin: 0;
    outline: none;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    box-shadow: none;
    text-decoration: none !important;
}

*:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

::-moz-selection {
    background: #000;
    color: #FFFFFF;
}

::selection {
    background: #000;
    color: #FFF;
}
a::-moz-selection {
    background: #000;
    color: #FFFFFF;
}

a::selection {
    background: #000;
    color: #FFFFFF;
}

/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 1px;
    border: 1px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
h4{
    margin-bottom: 0 !important;
}
h3{
    margin-bottom: 0 !important;
}
html,
body {
    height: 100%;
}

.boxed,
body {
    background-image: url("../images/bg-pattern.png");
    background-repeat: repeat;
    background-size: 170px;
}

.calender {
    width: 100%;

}
.calender .header {
    width: 100%;
}
.calender .header .calender-logo {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
}
.calender .header .calender-logo a img {
    width: 90%;
    max-width: 200px;
}
.calender .header .calender-title {
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 2em;
    letter-spacing: 1px;
}
.calender .calender-content {
    width: 100%;
    padding: 15px;
}
.calender .calender-content .calender-content-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
.calender .calender-content .calender-content-inner .calender-inputs {
    width: 40%;
    padding: 15px 0;
}
.calender .calender-content .calender-content-inner .calender-inputs > p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    padding-left: 5px;
}
.calender .calender-content .calender-content-inner .calender-inputs > p span {
    color: red;
}
.calender .calender-content .calender-content-inner .calender-inputs input {
    width: 100%;
    margin-right: 3%;
    margin-bottom: 15px;
    height: 40px;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-weight: 600;
    letter-spacing: 1px;
}    .calendar .header .fu-logo #mobil-logo{
         display: none;
     }

.calender .calender-content .calender-content-inner .calender-inputs input:nth-child(2n) {
    margin-right: 0;
}
.calender .calender-content .calender-content-inner .calender-inputs input[type=date] {
    cursor: pointer;
}
.calender .calender-content .calender-content-inner .calender-inputs .calender-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.calender .calender-content .calender-content-inner .calender-inputs .calender-buttons button,
.calender .calender-content .calender-content-inner .calender-inputs .calender-buttons a {
    padding: 10px 22px;
    background-color: #7d0000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 15px;
    cursor: pointer;
    transition: 300ms all;
}
.calender .calender-content .calender-content-inner .calender-inputs .calender-buttons button:last-child,
.calender .calender-content .calender-content-inner .calender-inputs .calender-buttons a:last-child {
    margin-right: 0;
}
.calender .calender-content .calender-content-inner .calender-inputs .calender-buttons button:hover,
.calender .calender-content .calender-content-inner .calender-inputs .calender-buttons a:hover {
    background-color: rgba(125, 0, 0, 0.75);
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown {
    width: 100%;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #ccc;
    box-shadow: 0 0 2px #cccccc;
    transition: all 0.5s ease;
    position: relative;
    font-size: 14px;
    color: #474747;
    min-height: 40px;
    text-align: left;
    margin-bottom: 15px;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown .select {
    cursor: pointer;
    display: block;
    padding: 10px;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    float: right;
    line-height: 20px;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown .select span span {
    color: red;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown:hover {
    box-shadow: 0 0 4px #cccccc;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown:active {
    background-color: #f8f8f8;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px #cccccc;
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9;
    padding: 0;
    list-style: none;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown .dropdown-menu li {
    padding: 10px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown .dropdown-menu li:hover {
    background-color: #f2f2f2;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown .dropdown-menu li:active {
    background-color: #e2e2e2;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period {
    width: 150px;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #ccc;
    box-shadow: 0 0 2px #cccccc;
    transition: all 0.5s ease;
    position: relative;
    font-size: 14px;
    color: #474747;
    min-height: 40px;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period .select {
    cursor: pointer;
    display: block;
    padding: 10px;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    float: right;
    line-height: 20px;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period .select span span {
    color: red;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period:hover {
    box-shadow: 0 0 4px #cccccc;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period:active {
    background-color: #f8f8f8;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px #cccccc;
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9;
    padding: 0;
    list-style: none;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period .dropdown-menu li {
    padding: 10px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period .dropdown-menu li:hover {
    background-color: #f2f2f2;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period .dropdown-menu li:active {
    background-color: #e2e2e2;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown.active:hover,
.calender .calender-content .calender-content-inner .calender-inputs .dropdown.active {
    box-shadow: 0 0 4px #cccccc;
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period.active:hover,
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period.active {
    box-shadow: 0 0 4px #cccccc;
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8;
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown.active .select > i {
    transform: rotate(-90deg);
}
.calender .calender-content .calender-content-inner .calender-inputs .dropdown-period.active .select > i {
    transform: rotate(-90deg);
}
.calender .calender-content .calender-content-inner .calender-infos {
    width: 28%;
    padding: 15px;
}
.calender .calender-content .calender-content-inner .calender-infos ul {
    width: 100%;
}
.calender .calender-content .calender-content-inner .calender-infos ul li {
    width: 100%;
    color: red;
    margin-bottom: 10px;
    line-height: 20px;
}

@media only screen and (max-width: 768px) {
    .calender .header .calender-title {
        font-size: 1.7em;
    }
    .calender .calender-content .calender-content-inner .calender-inputs {
        width: 100%;
    }
    .calender .calender-content .calender-content-inner .calender-infos {
        width: 100%;
        margin-top: 15px;
    }
}
.boxed header {
    background-color: #790A00;
    height: 80px;
}
.boxed header .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 82px;
}
.fu-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 73px;
}
.fu-logo a img {
    max-height: 65px;
    max-width: 120px;
}
.calendar .header .fu-logo>div:last-child{
    display: flex;
}
.filter-button{
    align-items: center;justify-content: center;
    padding: 5px 10px;
    display: none;
    left: 2%;
    font-size: 15px;
}
.filter-button i {
    color: white;

}
.filter-button h3{
    color: white;
    margin-bottom: 0;
    margin-left: 10px;
    font-size: 17px;
}
.fu-title {
    line-height: 2em;
    font-weight: 500;
    font-size: 1.9em;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px 0 16px 0;

}
.fu-title h5{
    margin-bottom: 0;
    width: max-content;
    font-size: 21px;
}

@media only screen and (max-width: 768px) {
    .fu-title {
        line-height: 1.7em;
        font-size: 1.5em;
    }
    .boxed footer .un-heading {
        margin-bottom: 10px;
    }
    .boxed footer .un-heading-wrap img {
        width: 60%;
    }
}
@media only screen and (max-width: 400px) {
    .boxed header {
        height: auto;
    }
    .boxed header .header-inner {
        flex-direction: column;
    }
    .boxed header .header-inner.inner-page{
        flex-direction: row;
    }
    .fu-logo.main a img{
        max-height: 60px;
        max-width: 100px;
    }
    .fu-title {
        line-height: 1.4em;
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    .boxed footer .un-heading-wrap img {
        width: 90%;
    }
}
.calendar-user-page {
    width: 100%;
}
.calendar .header .calendars{
    height: max-content;
}
.calendar .header .fu-logo{
    width: 22.4%;
}
.calendar .header-right{
    display: flex;
    margin-right: 1.5%;
    justify-content: space-between;
    width: 75.6%;
    padding: 0 1%;
}
.calendar .header .calendars h4{
    margin-bottom: 0px;
    color: white;
}
.calendar-user-page .calendars {
    background-color: #212327;
    padding: 20px 33px;
    display: flex;
}
.calendar-user-page .inner-page{
    margin: 0 !important;
}
.calendar-user-page .calendars-div{
    position: absolute;
    width: 100%;
    z-index: 10;
    display: none;
    animation-name: rightani;
    animation-duration: 1000ms;
    display: none;
    transition: 800ms all;
    z-index: 9999999999;
}
.calendars-close-button{
    display: flex;justify-content: flex-end;
    padding: 1%;
    width: 100%;
    position: absolute;
}
.calendars-close-button i{
    color: white;
    cursor: pointer;
    font-size: 20px;
    font-weight: 100;
    padding: 5px;
}
.calendar-user-page .calendars-div .calendars-title-div{
    background-color: #212327;
    padding-top: 15px;
    padding-bottom: 15px;
}
.calendar-user-page .calendars-div .calendars-inner-div{
    background-color: #212327;
    transform-origin: top center;
}
.calendars-inner {
    display: flex;
    justify-content: center;
    color: white;
}
.calendar-user-page .calendars-div .calendars-title {
    width: 100%;
    text-align: center;
    font-size: 2.3em;
    font-weight: 500;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.calendar-user-page .calendars-div .calendars-title i{
    margin: 0 1%;
}

.calendar-user-page .calendars-div .calendars-links {
    width: 100%;
    display: block;
    flex-wrap: wrap;

}
.calendar-user-page .calendars-div .calendars-links a {
    width: 33%;
    padding: 0 7.5px;
    color: white;
    cursor: pointer;
    transition: 300ms background-color;
    position: relative;
    margin-top: 10px;
    font-size: 15px;
}
.calendar-user-page .calendars-div .calendars-links ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    transform-origin: top center;
    padding-bottom: 2%;
}
.calendar-user-page .calendars-div .calendars-links ul li{
    margin-top: 1%;
    list-style: none;
    margin-right: 2%;
}
.calendar-user-page .calendars-div .calendars-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.calendar-user-page .calendars-div .calendars-links a::before {
    width: 7px;
    height: 7px;
    content: "";
    background-color: white;
    transition: 300ms background-color;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
}
.calendar-user-page .calendars-div a{
    color: white;
}
.calendar-user-page .calendars-div .calendars-links a:hover::before {
    background-color: rgba(255, 255, 255, 0.75);
}
.calendar-user-page .calendar-user-page-inner {
    width: 100%;
}
.calendar-user-page .calendar-user-page-inner .sidebar{
    background: #f1f1f173;
    left: 0;
    border-right: 1px solid white;
    width: 20%;
    margin-top: calc(2.3% + 73px);
    border: 1px solid #ccc;
    height: max-content;
    position: absolute;
    border-radius: 25px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    z-index: 1;
}
.sidebar-close{
    display: none;
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 5px;
    padding: 10px 5px;
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul li {
    list-style: none;
    padding: 5px 10px;
    margin-top: 5px;
    border-bottom: 2px dashed #0000002b;
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul li input[type=checkbox] {
    appearance: none;
    min-width: 20px;
    min-height: 20px;
    border-radius: 2px;
    border: 1px solid #eee;
    background-color: #fff;
    margin-right: 10px;
    position: relative;
    transition: 300ms all;
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul li input[type=checkbox]:hover {
    border-color: #ccc;
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul li input[type=checkbox]:checked {
    border-color: #0003;
    background-color: #eee;
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul li input[type=checkbox]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../svg/check.svg") no-repeat center;
    background-size: 17px;
    fill: #fff;
    transition: 300ms all;
    transform: scale(0);
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul li input[type=checkbox]:checked::before {
    transform: scale(1);
}
.calendar-user-page .calendar-user-page-inner .sidebar .filter ul li label {
    text-transform: capitalize;
    margin-bottom: 0px;
    user-select: none;
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 13px;
}
.calendar-user-page .calendar-user-page-inner .sidebar .sidebar-header{
    text-align: center;
    padding: 14.5px;
    background-color: #393939;
}
.calendar-user-page .calendar-user-page-inner .sidebar .sidebar-header{
    text-align: center;
    padding: 14.5px;
    background-color: #393939;
}
.calendar-user-page .calendar-user-page-inner .sidebar .sidebar-header h4{
    margin: 0;
}
/*.calendar-user-page .calendar-user-page-inner .sidebar li{*/
/*    list-style: none;*/
/*    background: white;*/
/*    padding: 6px 13px;*/
/*    border: 1px solid black;*/
/*    border-radius: 7px;*/
/*    width: max-content;*/
/*}*/

.calendar-user-page .calendar-user-page-inner .sidebar .sidebar-calendars li{
    text-align: center;
}
.calendar-user-page .calendar-user-page-inner .sidebar .sidebar-calendars li label{
    margin-bottom: 0;
}
.calendar-user-page .calendar-user-page-inner .sidebar .sidebar-calendars li a{
    width: 33%;
    padding: 0 7.5px;
    color: black;
    cursor: pointer;
    transition: 300ms background-color;
    position: relative;
    margin-top: 10px;
}
.calendar-user-page .calendar-user-page-inner .sidebar .sidebar-calendars li a::before{
    width: 7px;
    height: 7px;
    content: "";
    background-color: black;
    transition: 300ms background-color;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
}
.calendar-user-page .calendar-user-page-inner .sidebar h4{
color: white;
}
.calendar-user-page .calendar-user-page-inner form.container .filters {
    width: 100%;
    margin-top: 5%;
}
.calendar-user-page .calendar-user-page-inner form.container .filters .filters-title {
    width: 100%;
    text-align: center;
    font-size: 1.7em;
    font-weight: 500;
    color: #636e73;
    padding-top: 15px;
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 5px;
    padding: 10px 5px;
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul li {
    width: 48%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 5px 10px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul li input[type=checkbox] {
    appearance: none;
    min-width: 20px;
    min-height: 20px;
    border-radius: 2px;
    border: 1px solid #eee;
    background-color: #fff;
    margin-right: 10px;
    position: relative;
    transition: 300ms all;
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul li input[type=checkbox]:hover {
    border-color: #ccc;
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul li input[type=checkbox]:checked {
    border-color: #000;
    background-color: #eee;
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul li input[type=checkbox]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../svg/check.svg") no-repeat center;
    background-size: 17px;
    fill: #fff;
    transition: 300ms all;
    transform: scale(0);
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul li input[type=checkbox]:checked::before {
    transform: scale(1);
}
.calendar-user-page .calendar-user-page-inner form.container .filters ul li label {
    text-transform: capitalize;
    margin-bottom: 0px;
    user-select: none;
}
.main{
    display: flex;
}
.calendar-user-page .calendar-user-page-content{
    display: flex;
}
.calendar-user-page .calendar-user-page-content .calendar .header{
    display: flex;
    margin-bottom: 2.3%;
    box-shadow: 0 5px 20px 9px rgba(88, 79, 79, 0.3);
    width: 100%;
    background-color: #212327;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year {
    font-size: 1.75em;
    display: flex;
}
.calendar-user-page .calendar-user-page-content .calendar .header button {
    border-radius: 5px;
    background-color: #212327;
    color: white;
    border: none;
    margin-right: 10px;
    transition: 300ms background-color;
}
.calendar-user-page .calendar-user-page-content .calendar .header button:last-child {
    margin-right: 0;
}
.calendar-user-page .calendar-user-page-content .calendar .header button:hover {
    background-color: #212327;
}
.calendar-user-page .calendar-user-page-content .calendar .header button:focus {
    border: none;
    outline: none;
}
 #toDay{
     width: 95%;
     height: 100%;
     position: absolute;
     justify-content: center;
     align-items: center;
     font-size: 4rem;
     opacity: 0.2;
     z-index: 2;
     display: none;
 }
.calendar-user-page .calendar-user-page-content .calendar .days .day_num {
    background-color: white;
    max-height: 280px;
    overflow-y: auto;
    position: relative;
}
.calendar-user-page .calendar-user-page-content .calendar .days .day_num:hover {
    background-color: #f1e3e3;
    color: #7c878d;
}
.calendar-user-page .calendar-user-page-content .calendar .days .day_num.selected {
    background-color: #f1e3e3;
    color: #7c878d;
}
.calendar-user-page .calendar-user-page-content .calendar .days .day_num.selected #toDay{
    display: block;
}
.calendar-user-page .calendar-user-page-content .calendar .days .day_num.ignore {
    background-color: #f1f1f1;
}

@media only screen and (max-width: 1024px) {
    .calendar-user-page .calendars .calendars-inner .calendars-links a {
        width: 49%;
        margin-right: 2%;
    }
    .calendar-user-page .calendars .calendars-inner .calendars-links a:nth-child(2n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 540px) {
    .calendar-user-page .calendars .calendars-inner .calendars-links a {
        width: 100%;
        margin-right: 0;
    }
    .calendar-user-page .calendar-user-page-inner form.container .filters ul li {
        width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */
.container{
    max-width: 1400px !important;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left {
    border-radius: 20px;
    background: none;
    color: white;
    height: max-content;
    margin-left: 1%;
    width: 100%;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year h4 {
    color: white;
    font-weight: bolder;
    margin-bottom: 0px;
    font-weight: initial;
    margin-left: 2%;
    width: 204px;
    font-size: 18px;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year {
    display: flex;
    font-size: 1.75em;
    width: max-content;
    background-color: #212327;
    align-items: center;
}
.calendar-user-page .calendar-user-page-inner form.container .buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3vh;
}
.filter button {
    padding: 7px 15px;
    background-color: #790a00;
    box-shadow: none;
    color: white;
    border: none;
    margin-right: 10px;
    transition: 300ms background-color;
    font-size: 15px;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year button {
    border-radius: 18px;
    background: none ;
    box-shadow: none;
    color: white;
    border: none;
    margin-right: 0px;
    transition: 300ms background-color;
    font-size: 18px;
    height: max-content;
    padding: 5px 14px;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button {
    box-shadow: none;
    height: max-content;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button i{
    font-size: 16px;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button i i{
    font-size: 16px;
}
.calendar-user-page .calendar-user-page-content .calendar .header .month-year button:hover {
    background-color: #790a00;
}
.modal-content{
    border: none !important;
}
.modal-content a{
    text-decoration: none;
}
.modal-content a h4{
    color: white;
}
.modal-content .table-dark thead th{
    background-color: #790a00;
}
.modal-content .calender-list .table-striped tbody tr{
    background-color: #4c4c4c78;
}
.modal-content .calender-list .table-striped tbody tr:last-child{
    background-color: #4c4c4c78;
    border-bottom-left-radius: 5px;
    border-bottom-rightt-radius: 5px;
}
.modal-content .calender-list .table-striped tbody tr:hover{
    background-color: #2828287a;
}
.modal-content .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255 ,255 ,0.75);
}
.modal-content .table-dark.table-striped tbody tr:nth-of-type(odd):hover {
    background-color: rgba(255, 255 ,255 ,0.70);
}
.modal-content .calender-list .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: #2828287a;
}
.modal-content .calender-list .table-dark.table-striped tbody tr:nth-of-type(odd):hover {
    background-color: #282828;
}
.modal-content .calender-list .table-dark.table-striped tbody tr th:nth-of-type(odd){
    background-color: rgba(255, 255 ,255 ,0) !important;
}
.modal-content  .calender-list .table-striped tbody tr th {
    background-color: rgba(255, 255, 255, 0.83) !important;
    box-shadow: none;
    padding: 3%;
    width: max-content;
}
.calender-list table {
    margin-top: 50px;
    text-align: center;
    width: 600px;
    border: 1px solid #acacac;

}
.calendars a{
    cursor:pointer;
    color: white !important;
    font-size: 22px;
    display: flex;
    align-items: center;
    width: max-content;
}
.calendars a h3{
    margin-top: 4px;
}
.calendars a i{
    color: white;
    font-size: 30px;
    margin-left: 8%;
    font-weight: 300;
}
.calender-list table tr{
    padding: 1%;
}
.calendar-list table th{
    padding: 3% 6%;
}
.calender-list table thead {
    background-color: #790A00;
}

.table-dark tbody+tbody, .table-dark td, .table-dark th, .table-dark thead th {
    border-color: #95999c;
}
.table-dark td, .table-dark th, .table-dark thead th {
    border-color: #454d55;
}
.calender-list .table-dark td, .table-dark th, .table-dark thead th {
    border-color: #454d55;
}
.calender-list .table-dark tbody+tbody, .table-dark td, .table-dark th, .table-dark thead th {
    border-color: #95999c;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}
.calender-list .table-striped tbody tr {
    background-color: rgba(255, 255, 255, 0.83);
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255 ,255 ,0.75);
}
.table-dark.table-striped tbody tr:nth-of-type(odd):hover {
    background-color: rgba(255, 255 ,255 ,0.70);
}
.calender-list .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255 ,255 ,0.93);
}
.calender-list .table-dark.table-striped tbody tr:nth-of-type(odd):hover {
    background-color: rgba(255, 255 ,255 ,0.75);
}
.calender-list .table-striped tbody tr a {
    color: #212327;
    font-weight: 500;
}
.calender-list {
    display: flex;
    justify-content: center;
}
.calendar-user-page .calendar-user-page-content .calendar .days {
    min-width: 1050px;
}
.calendar-user-page .calendar-user-page-content .calendar .calendar-inner {
    margin-left: 22.4%;
    margin-right: 2%;
    overflow-x: scroll;
}
.calendar-table {
    margin-top: 5%;
}
.calendar-table thead tr{
    border-color: #282828;
}
.calendar-table thead tr th{
    border-top: 0;
    border-bootom: 0;
    background-color:#790A00 ;
    color: white;
    border-color: #282828;
}
.calendar-table tbody .season td{
    background-color: #212327;
    text-align: center;
    color: white;
}
.calendar-table tbody tr td{
    background-color: rgba(33, 35, 39, 0);
}
.calendar-table tbody tr{
    background-color: rgb(255, 255, 255);
}
.calendar-table tbody tr:nth-of-type(odd) {
    background-color: rgb(236, 236, 236);
}
.calender-list .table tbody tr th a h4{
    font-size: 1.35rem;
}
* {
    outline: 0;
    font-family: sans-serif
}
body {
    background-color: #fafafa
}
span.msg,
span.choose {
    color: #555;
    padding: 5px 0 10px;
    display: inherit
}

/*Styling Selectbox*/
.filter-dropdown {
    width: 75%;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 2px rgb(204, 204, 204);
    position: relative;
    font-size: 14px;
    color: #474747;
    height: 100%;
    text-align: left;
    margin-right: 1%;
}
.filter-dropdown .select {
    cursor: pointer;
    display: block;
    padding: 10px
}
.filter-dropdown .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}
.filter-dropdown:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}
.filter-dropdown:active {
    background-color: #f8f8f8;
}
.filter-dropdown.active:hover,
.filter-dropdown.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8
}
.filter-dropdown.active .select > i {
    transform: rotate(-90deg)
}
.filter-dropdown .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 325px;
    overflow-y: auto;
    z-index: 9;
}
.filter-dropdown .dropdown-menu li {
    padding: 0 10px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.filter-dropdown .dropdown-menu {
    padding: 0;
    list-style: none;
    animation: rotateY 800ms ease-in-out forwards;
    transform-origin: top center;
}
.filter-dropdown .dropdown-menu li:hover {
    background-color: #f2f2f2
}
.filter li label{
    margin: 0;
}
.filter-dropdown .dropdown-menu li:active {
    background-color: #e2e2e2
}
.filter-dropdown .dropdown-menu label{
    width: 88%;
    margin: 0;
    height:40px;
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.filter{
    display: flex;
    justify-content: center;
    margin: 16px;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 1150px) {
    .filter-button {
        display: flex;
    }
    .calendar-user-page .calendars{
        padding: 10px;
        margin-right: 5px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header {
        display: block;
    }
    .calendar .header .calendars a h3{
        font-size: 18px;
    }
    .filter-button h3{
        font-size: 18px;
    }
    .calendar .header .fu-logo {
        background-color: #e7e7e7;
        width: 100%;
        height: max-content;
    }
    .calendar .header .fu-logo > div:last-child {
        display: flex;
        align-items: center;
        height: 40px;
    }

    .fu-title {
        padding: 16px 0;
    }
    .fu-title h5{
        color: #212327;
    }
    .calendar-user-page .calendar-user-page-inner .sidebar {
        background: white;
        left: 0;
        border-right: 1px solid white;
        width: 100%;
        height: 100vh;
        border: 1px solid #ccc;
        position: fixed;
        border-radius: 0;
        margin-top: 0;
        display: none;
        z-index: 9999999999;
    }

    .sidebar-close {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .calendar .header-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .calendar-user-page .calendar-user-page-content .calendar .calendar-inner {
        margin: 0 2%;
        margin-top: 70px;
    }
    .fu-logo.main a img{
        max-height: none;
        max-width: 50px;
    }
    .calendar .header .fu-logo #mobil-logo{
        display: block;
        width: 60%;
    }
    .calendar .header .fu-logo img:first-child{
        display: none;
    }
    .calendar .header .fu-logo div:nth-child(2) a{
        display: flex;align-items: center;justify-content: center;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year h4{
        width: auto;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left{
        width: auto;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year{
        width: 60%;
        justify-content: center;
        order: 2;
        position: absolute;
        margin-left: -6px;
        z-index: 9;
    }
    .header-right-bottom{
        display: flex;
        justify-content: space-between;
        order: 1;
        position: absolute;
        width: 100%;
        height: 57px;
        background-color: #212327;
        margin-left: 0px;
    }
    .copyright p{
        width: auto !important;
    }
    .calendar .header .fu-logo div a{
        margin-right: -15px;
    }
    .fu-title h5{
        font-family: 'Ubuntu', sans-serif!important;
    }

}
@media only screen and (max-width: 700px) {

    .calendar-user-page .calendar-user-page-content .calendar .header .month-year{
        width: 80%;
    }
    .filter-button h3{
        display: none;
    }
    .calendar .header .calendars a h3{
        display: none;
    }
}
@media only screen and (max-width: 530px) {
    .header-right-bottom{
        height: 49px;
    }
    .calendar .header .calendars a i{
        margin-top: 5px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .calendar-inner {
        margin-top: 60px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button i i{
        font-size: 12px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button i{
        font-size: 12px;
    }
    .filter-button{
        font-size: 10px;
        margin-top: 3px;
    }
    .calendar .header .calendars a i{
        font-size: 18px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year button{
        font-size: 13px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button{
        font-size: 13px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year h4{
        font-size: 12px;
    }
    .header-inner.inner-page .fu-title{
        font-size: 4vw;
    }
}
@media only screen and (max-width: 400px) {
    .fu-title h5{
        margin-top: 9px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button i i{
        font-size: 9px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button i{
        font-size: 9px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year button{
        font-size: 9px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year h4{
        font-size: 9px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year button {
        padding: 5px 10px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year button:first-child{
        margin-top: 4px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button{
        padding: 2px 10px;
    }
    .calendar-user-page .calendar-user-page-content .calendar .header .month-year .buttons-left button:first-child{
        margin-top: 0px
    }
}
@media only screen and (max-width: 750px) {
    .calender-list table{
        width: 90%;
    }
}
@keyframes rightani{
    from{
        right: -50%;
        display: none;
    }
    to{
        right: 0%;
        display: block;
    }
}

.label-dropp.red,
.label-dropp.blue,
.label-dropp.green,
.label-dropp.brown,
.label-dropp.black,
.label-dropp.pink,
.label-dropp.gray,
.label-dropp.orange,
.label-dropp.yellow,
.label-dropp.purple,
.label-dropp.cyan,
.label-dropp.purple_resmi{
    position: relative;
}

.label-dropp.green::before{
     background-color: #12974d;
     position: absolute;
     top: 50%;
     right: -10px;
     transform: translateY(-50%);
     width: 15px;
     height: 15px;
     content: "";
     border-radius: 50%;
 }

.label-dropp.blue::before{
    background-color: #002867;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}

.label-dropp.red::before{
    background-color: #a23c3c;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.brown::before{
    background-color: #ff4c4c;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.black::before{
    background-color: #282828;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.pink::before{
    background-color: #ff8f9e;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.gray::before{
    background-color: gray;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.orange::before{
    background-color: #ff5100;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.yellow::before{
    background-color: #ffd100;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.purple::before{
    background-color: purple;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.cyan::before{
    background-color: #afafaf;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}
.label-dropp.purple_resmi::before{
    background-color: #532995;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    content: "";
    border-radius: 50%;
}

.modal-mobile{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-mobile .modal-mobile-inner{
    width: 70%;
    min-width: 240px;
    border-radius: 15px;
    background-color: white;
    padding: 3%;
    display: none;
    position: relative;
}

.modal-mobile .modal-mobile-inner .modal-mobile-close{
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50%;
    border: 2px solid black;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: 300ms all;
}

.modal-mobile .modal-mobile-inner .modal-mobile-close:hover{
    transform: rotate(135deg);
}

.modal-mobile .modal-mobile-inner ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-mobile .modal-mobile-inner p{
    margin-bottom: 0;
}

#sidebar{
    padding-top: 15px;
}

#list-view2,
#list-view{
    font-size: 20px;
    margin-left: 30px;
    margin-right: 10px;
}

#list-view{
    font-size: 23px;
}

label[for="list-view"],
label[for="list-view2"]{
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.category.active{
    min-width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event.active-color{
    background-color: #eeeeee3d;
}

.active-display-none{
    display: none !important;
}

.day_num.full-day.active{
    display: flex !important;
    max-height: none!important;
    border: 1px solid;
    width: 100%;
}

.day_num.full-day .event.active{
    display: flex;
}

.day_num.full-day .event.active > div:nth-child(n+1){
    display: flex;
    align-items: center;
    padding-left: 5px;
    text-align: left;
}

.day_num >span >span{
    display: none !important;
}

.day_num >span >span.active{
    display: inline-flex !important;
}


@media only screen and (max-width: 768px){
    .calendar-table {
        font-size: 8px;
    }
    .calender-list table thead th h3{
        font-size: 18px;
    }
    /*.calendar .days .day_num .event:hover{*/
    /*    background-color: transparent!important;*/
    /*    color: inherit!important;*/
    /*    transition: 1ms all !important;*/
    /*}*/

    /*.calendar .days .day_num .event:hover *{*/
    /*    background-color: transparent!important;*/
    /*    color: inherit!important;*/
    /*    transition: 1ms all !important;*/
    /*}*/

    .calendar-inner .days{
        min-width: auto !important;
    }
    .calendar-user-page .calendar-user-page-content .calendar .calendar-inner{
        overflow: hidden;
    }
    .calendar .days .day_name{
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        font-size: 90%;
    }

    .calendar .days .day_num .event .title,
    .calendar .days .day_num .event .content{
        display: none;
    }

    .calendar .days .day_num{
        padding: 1%;
    }

    .calendar .days .day_num span{
        font-size: 10px;
    }

    .calendar-user-page .calendar-user-page-content .calendar .days .day_num.ignore{
        font-size: 10px;
    }

    .calendar .days .day_num .event .category {
        font-size: 12px;
        text-align: left;
        margin: 0;
    }

    .calendar .days .day_name{
        border-bottom: 1px solid #bbb;
    }

    .calendar .days .day_num .event.purple_resmi{
        border-radius: 3px;
        font-size: 10px;
    }
}

@media only screen and (max-width: 540px){
    .calendar .days .day_num span,
    .calendar-user-page .calendar-user-page-content .calendar .days .day_num.ignore{
        font-size: 8px;
    }

    .calendar .days .day_num .event{
        padding: 0;
    }

    .calendar .days .day_name{
        font-size: 70%;
    }

    .calendar .days .day_num .event .category {
        font-size: 10px;
    }

    .calendar .days .day_num .event.purple_resmi{
        font-size: 8px;
    }
}

@media only screen and (max-width: 400px){
    .calendar .days .day_name{
        font-size: 60%;
        font-weight: 700;
    }

    .calendar .days .day_num .event .category {
        font-size: 8px;
    }

    .calendar .days .day_num .event.purple_resmi{
        font-size: 6px;
    }
}
