:root {
  --calendar-color: #505A68;
}

body {
    margin: 0px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-color: var(--calendar-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
    color: #FFF;
}


/*HEADER*/ 

#header {
    width: -webkit-calc(100vw - 50px);
    width: -moz-calc(100vw - 50px);
    width: calc(100vw - 50px);
    height: 110px;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    background-color: var(--calendar-color);
}

#header-shadow {
    width: -webkit-calc(100vw - 50px);
    width: -moz-calc(100vw - 50px);
    width: calc(100vw - 50px);
    height: 100px;
    position: fixed;
    top: 10px;
    right: 0;
    z-index: -1;
    box-shadow: 0 0 8px 6px rgba(0,0,0,0.05);
    border-radius: 100%;
}

#logo {
    margin-top: 24px;
}

#logo img {
    width: 180px;
}

#logo img:hover {
    cursor: pointer;
}

/*SHARE*/

#share {
    position: fixed;
    top: 0;
    right: 0;
    margin: 20px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 53px;
}

#share svg {
    width: 23px;
    height: 23px;
}

.share-tooltip {
    position: absolute;
    color: var(--main-color);
    font-family: font_light;
    font-size: 9px;
    visibility: hidden;
}

#share svg:hover + .share-tooltip{
    visibility: visible;
}

/*ABOUT*/

#about {
    position: fixed;
    top: 24px;
    right: 168px;
    z-index: 2;
    font-family: font_light;
    color: var(--main-color);
    font-size: 13px;
}

#about:hover {
    text-decoration: underline;
}

/*LANGUAGE*/

#language {
    position: fixed;
    top: 24px;
    right: 100px;
    z-index: 2;
    font-family: font_light;
    color: #FFF;
    font-size: 13px;
    display: flex;
    flex-direction: row;
}

.language {
    color: var(--main-color);
}

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


/*FILTERS*/

.filters-box {
    width: 50px;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: #626A76;
    display: flex;
    justify-content: center;
    transition: width 0.7s;
    cursor: pointer;
    z-index: 2;
}

.filters-box-expand {
    width: 210px;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: #626A76;
    cursor: default;
}

.filters {
    width: 22px;
    position: absolute;
    top: calc(50% - 16px);
    transition: all 0.7s;
}

.filters-expand {
    width: 22px;
    position: absolute;
    top: 7vh;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

.categories {
    visibility: hidden;
}

.categories-expand {
    height: 75vh;
    width: 210px;
    position: absolute;
    bottom: 10vh;
    visibility: visible;
    align-items: center;
    display: grid;
    justify-content: center;
    grid-template-rows: 7% 7% 7% 7% 7% 5.5% 7% 7% 7% 7% 7% 7%;
    grid-gap: 1.6%;
}

.tag {
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    font-family: font_light;
    font-size: 14px;
    text-align: center;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    color: #FFFFFF;
    cursor: pointer;
    border: solid 1px rgba(255, 255, 255, 0);
}

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

.tag2 {
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    font-family: font_light;
    font-size: 14px;
    text-align: center;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    cursor: pointer;
    border: solid 1px rgba(255, 255, 255, 1); 
}

.line-categories {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 1px;
    background-color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 2vh;
    margin-top: 2vh;
}

.close {
    visibility: hidden;
}

.close-expand {
    stroke-width: 2px;
    width: 16px;
    position: absolute;
    bottom: 4vh;
    cursor: pointer;
    visibility: visible;
}

.close-expand:hover {
    transform: scale(1.2);
    transition: all 0.1s;
}

/*FILTERS MOBILE*/

.filters-box-mobile {
    width: 100vw;
    height: 50px;
    position: fixed;
    bottom: 0;
    background-color: #626A76;
    display: flex;
    justify-content: center;
    z-index: 2;
    display: none;
}

.filters-box-expand-mobile {
    width: 100vw;
    height: -webkit-calc(100vh - 160px);
    height: -moz-calc(100vh - 160px);
    height: calc(100vh - 160px);
    position: fixed;
    bottom: 0;
    background-color: #626A76;
    cursor: default;
    display: none;
}

.filters-mobile {
    width: 22px;
    position: absolute;
    left: calc(50% - 16px);
    bottom: 8px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    cursor: pointer;
}

.filters-expand-mobile {
    display: none;
}

.categories-mobile {
    visibility: hidden;
}

.categories-expand-mobile {
    height: -webkit-calc(100vh - 195px);
    height: -moz-calc(100vh - 195px);
    height: calc(100vh - 195px);
    width: 100vw;
    position: absolute;
    top: 20px;
    visibility: visible;
    align-items: center;
    display: grid;
    justify-content: center;
    grid-template-rows: 6.5% 6.5% 6.5% 6.5% 6.5% 5% 6.5% 6.5% 6.5% 6.5% 6.5% 6.5% 6.5%;
    grid-gap: 1.5%;
}

.close-mobile {
    visibility: hidden;
}

.close-expand-mobile {
    stroke-width: 2px;
    width: 16px;
    position: absolute;
    left: 28px;
    bottom: 18px;
    cursor: pointer;
    visibility: visible;
}

.close-expand-mobile:hover {
    transform: scale(1.2);
    transition: all 0.1s;
}

.footer-mobile {
    width: 281px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
    margin-bottom: 50px;
    display: none;
}

.footer-mobile img {
    height: 33px;
    margin: 10px;
    margin-left: 5px;
    margin-bottom: 5px;
    margin-top: 8px;
}


/*CALENDAR*/

.container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    /*background-color: orange;*/
}

.width1{
    transform: translateX(25px);
}

.width2 {
    transform: translateX(105px);
}

#calendar {
    transition: transform 0.7s;
}

.calendar {
    margin-bottom: 60px;
    width: 65vw;
    display: flex;
    flex-direction: column;
    font-family: font_light;
    color: #FFFFFF;
}

ul {
    list-style-type: none;
}

.month-name {
    color: #FFF;
    font-family: font_light;
    font-size: 18px; 
    text-transform: uppercase;
    padding: 10px;
    padding-right: 14px;
    padding-left: 14px;
    position: relative;
    margin-top: 200px;
    transform: translateX(25px);
}

.border1 {
    border: 1px solid #FFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
}

.border2 {
    border: 1px solid #FFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    transform: translateX(-10px) translateY(-10px);
}

.week-days {
    /*background-color: pink;*/
    margin: 0;
    padding: 10px 0;
    margin-top: 50px;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.week-days li {
    width: 13.6%;
}

.line {
    background-color: #FFFFFF;
    width: 100%;
    height: 1px;
    opacity: 0.5;
    margin-top: 5px;
}

.calendar-numbers {
    /*background-color: blue;*/
    padding: 0;
    margin-top: 40px;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.calendar-numbers li {
    /*background-color: red;*/
    width: 13.7%;
    height: 70px;
    margin-bottom: 20px;
    margin-top: 0px;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: relative;
}

.no-number {
    cursor: default !important;
}

.inactive {
    opacity: 0.4;
    cursor: default !important;
}

.circle {
    border-radius: 50%;
    width: 40px;
    height: 40px; 
    border: solid 1px #fff;
    position: absolute; 
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    visibility: hidden;
}

.popup {
    width: 180px;
    font-size: 11px;
    line-height: 13px;
    position: absolute;    
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(40px);
    visibility: hidden;
    font-family: font_medium;
}

.popup-soon {
    width: 100%;
    font-family: font_light_italic;
    font-size: 11px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(35px);
    visibility: hidden;
}

.italic {
    font-family: font_light;
}

.calendar-numbers li:hover .circle, 
.calendar-numbers li:hover .popup, 
.calendar-numbers li:hover .popup-soon {
    visibility: visible;
}

.circle-filter {
    border-radius: 50%;
    width: 40px;
    height: 40px; 
    border: solid 1px #FFF;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    z-index: -1;
    display: none;
}

.show {
    display: block;
}


/*LINKS*/

.whitebox1 {
    width: 1px;
    height: 100vh;
    position: fixed;
    left: 0;
    transition: width 1s;
    z-index: 100;
}

.whitebox2 {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: #fff;
    z-index: 100;
}


/*FOOTER*/

.footer {
    width: 330px;
    border-top: 1px solid #FFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    transform: translateX(25px);
}

.footer img {
    height: 33px;
    margin: 15px;
}

.footer-design {
    font-family: font_light;
    color: #FFF;
    font-size: 8px;
    margin-top: 20px;
    margin-left: 7px;
    margin-right: 7px;
    text-align: center;
}

.design-bold {
    font-family: font_medium;
    font-size: 9px;
    line-height: 12px;
}


/*TYPOGRAPHY*/

@font-face {
    font-family: font_light;
    src: url(fonts/Ubuntu-Light.ttf);
}

@font-face {
    font-family: font_light_italic;
    src: url(fonts/Ubuntu-Light-Italic.ttf);
}

@font-face {
    font-family: font_bold;
    src: url(fonts/Ubuntu-Bold.ttf);
}

@font-face {
    font-family: font_medium;
    src: url(fonts/Ubuntu-Medium.ttf);
}
