:root {
    --mbo-booking-color-black: #070604;
    --mbo-booking-color-white: #ffffff;
    --mbo-booking-color-white-opacity: #ffffff26;

    --mbo-booking-color-gray-xlight: #fcfcfd;
    --mbo-booking-color-gray-light: #f7f8f9;
    --mbo-booking-color-gray: #e9eaec;
    --mbo-booking-color-gray-medium: #d8d8d8;
    --mbo-booking-color-gray-dark: #878787;
    --mbo-booking-color-gray-xdark: #3a3a3a;
  
    --mbo-booking-color-primary: #eabd1e;
    --mbo-booking-color-primary-opacity: #eabe1e34;

    --mbo-booking-color-yellow-1: #fdeb87;

    --mbo-booking-color-blue-1: #16baf7;
    --mbo-booking-color-blue-1-opacity: #16bbf7cb;
    --mbo-booking-color-blue-2: #40CEEE;
    --mbo-booking-color-blue-2-opacity: #40ceee29;

    --mbo-booking-box-shadow-default: 2px 4px 10px 0 rgba(0, 0, 0, .1);
}

.mbo-timetable{
    width: 100%;
    max-width: 1200px;
    padding: 10px;
    box-sizing: border-box;
    margin:20px auto;
    display: block;
    background-color: var(--mbo-booking-color-black);
    color: var(--mbo-booking-color-white);
}

.mbo-timetable a {
    color: var(--mbo-booking-color-blue-1);
}

.mbo-timetable a:hover,
.mbo-timetable a:focus {
    color: var(--mbo-booking-color-blue-2);
}

.mbo-timetable .mbo-filter-classes h3{
    font-weight: 700;
    margin: 30px auto 10px auto;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}

.mbo-timetable .mbo-choose-date-line{
    display: flex;
}

.mbo-timetable .mbo-choose-date-line-month{
    margin: 10px auto 10px auto;
    padding: 10px 20px;
    border-radius: 2rem;
    background-color: var(--mbo-booking-color-primary-opacity);
    width:fit-content;
    text-transform: uppercase;
}

.mbo-timetable .mbo-date-navigator{
    width:100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:20px 0px;
}

.mbo-timetable .mbo-date-navigator-day-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mbo-timetable button.mbo-date-pre, .mbo-timetable button.mbo-date-next{
    width:50px;
    height:50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*box-shadow: var(--mbo-booking-box-shadow-default);*/
    fill: var(--mbo-booking-color-white);
    background-color: var(--mbo-booking-color-blue-1);
    cursor: pointer;
    padding:0px;
    margin:0px;
    line-height: 1em;
}
.mbo-timetable button.mbo-date-pre-mobile, .mbo-timetable button.mbo-date-next-mobile{
    width:50px;
    height:50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    /*box-shadow: var(--mbo-booking-box-shadow-default);*/
    fill: var(--mbo-booking-color-white);
    background-color: var(--mbo-booking-color-blue-1);
    cursor: pointer;
    padding:0px;
    margin:0px;
    line-height: 1em;
}

.mbo-timetable button.mbo-date-pre-mobile:hover, .mbo-timetable button.mbo-date-next-mobile:hover,
.mbo-timetable button.mbo-date-pre:hover, .mbo-timetable button.mbo-date-next:hover{
    background-color: var(--mbo-booking-color-blue-2);
}

.mbo-timetable .mbo-date-navigator-day-container-mobile{
    border-radius: 28px;
    margin-left: 5px;
    margin-right: 5px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid #eabd1e80;
    background-color: var(--mbo-booking-color-primary-opacity);
    color: var(--mbo-booking-color-white);
    padding: 0px 0px 0px 20px;
    font-size: 14px;
}

.mbo-timetable .mbo-date-navigator-actual-day-mobile{
    font-size: 14px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--mbo-booking-color-primary);
    color: var(--mbo-booking-color-black); 
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left:10px;
}


.mbo-timetable a.mbo-date-navigator-day-of-month{
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:10px;
    width:50px;
    height:50px;
    border-radius: 50%;
    color: var(--mbo-booking-color-white);
    text-decoration: none;
}

.mbo-timetable .mbo-date-navigator-active-mobile{
    background-color: var(--mbo-booking-color-primary);
    color: var(--mbo-booking-color-black);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding:5px 20px;
    border-radius: 5px;
}

.mbo-timetable a.mbo-date-navigator-day-of-month:hover{
    color:var(--mbo-booking-color-white);
    background-color: var(--mbo-booking-color-primary-opacity);
}

.mbo-timetable a.mbo-date-navigator-active{
    background-color: var(--mbo-booking-color-primary);
    color: var(--mbo-booking-color-black);
}

.mbo-timetable a.mbo-date-navigator-active:hover{
    background-color: var(--mbo-booking-color-yellow-1);
    color: var(--mbo-booking-color-black);
}

.mbo-timetable .mbo-date-navigator-day-short-name{
    font-size: 16px;
    font-weight: 600;
    width:100%;
    text-align: center;
}

.mbo-timetable .mbo-date-navigator-mobile{
    display: none;
    align-items: center;
    justify-content: space-between;
    width:100%;
    margin:20px auto;
}

.mbo-timetable .mbo-timetable-filter-btn{
    background-color: var(--mbo-booking-color-primary);
    cursor: pointer;
    color: var(--mbo-booking-color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px;
    box-sizing: border-box;
    border-radius: 5px;
    user-select: none;
}

.mbo-timetable .mbo-timetable-filter-btn:hover{
    background-color: var(--mbo-booking-color-yellow-1);
}

.mbo-timetable .mbo-timetable-filter-btn svg{
    margin-right: 7px;
    margin-left: 0px;
}

.mbo-timetable .mbo-timetable-selected-day-line{
    margin:10px auto 10px auto;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    padding: 0px 0px 0px 0px;
    width: 100%;
    display: flex;
    align-items: stretch;
    line-height: 1em;
    justify-content: space-between;
}
.mbo-timetable .mbo-timetable-selected-day{
    text-align: left;
    font-style: italic;
    background-color: var(--mbo-booking-color-primary-opacity);
    width:100%;
    border-radius: 3px;
    margin-right: 10px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.mbo-timetable .mbo-timetable-filter-line-container{
    width: 100%;
    margin: 10px auto;
    display: none;
    background-color: var(--mbo-booking-color-blue-2-opacity);
    border-radius: 5px;
    padding: 10px 0px;
}

.mbo-timetable .mbo-timetable-filter-line-out {
    width:100%;
    position: relative;
    padding: 0px 75px 0px 65px;
}

.mbo-timetable .mbo-timetable-filter-arrow{
    display: flex;
    align-items:center;
    justify-content: center;
    width:fit-content;
    padding: 5px 15px;
    box-sizing: border-box;
    height: 40px;
    background-color: var(--mbo-booking-color-primary-opacity);                     
    border-radius:5px;  
    position: absolute;
    top:50%;
    translate: 0px -50%; 
    cursor: pointer;
}

.mbo-timetable .mbo-timetable-filter-arrow svg{
    fill: white;
}

.mbo-timetable .mbo-timetable-filter-arrow:hover{
    background-color: #fdeb87;
}

.mbo-timetable .mbo-timetable-filter-arrow:hover svg{
    fill: var(--mbo-booking-color-black);
}

.mbo-timetable .mbo-timetable-filter-arrow-right{
    right:15px;
}

.mbo-timetable .mbo-timetable-filter-arrow-left{
    left:15px;
}


.mbo-timetable .mbo-timetable-filter-line {
    user-select: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    margin: 0px auto;
    padding:7px 10px;
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;  /* IE, Edge */
    scrollbar-width: none;     /* Firefox */
}

.mbo-timetable .mbo-timetable-filter-line::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.mbo-timetable .mbo-timetable-filter-item{
    width: fit-content;
    padding: 10px 15px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--mbo-booking-color-white);
    cursor: pointer;
    display: flex;
    margin-right:20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1em;
    user-select: none;
    white-space: nowrap;
    position: relative;
    border: 3px solid #102629;
}

.mbo-timetable .mbo-timetable-filter-item.selected-category::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -10px;
  width: 25px;  /* állítsd a kívánt méretre */
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><circle cx="320" cy="320" r="256" fill="%23eabd1e"/><path fill="white" d="M438 209.7C427.3 201.9 412.3 204.3 404.5 215L285.1 379.2L233 327.1C223.6 317.7 208.4 317.7 199.1 327.1C189.8 336.5 189.7 351.7 199.1 361L271.1 433C276.1 438 282.9 440.5 289.9 440C296.9 439.5 303.3 435.9 307.4 430.2L443.3 243.2C451.1 232.5 448.7 217.5 438 209.7z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none; /* hogy ne akadályozza a kattintást */
}

.mbo-timetable .mbo-timetable-filter-item.selected-category{
    border: 3px solid var(--mbo-booking-color-primary);
}

.mbo-timetable .mbo-timetable-filter-item svg{
    margin-right:10px;
    height:20px;
}

.mbo-timetable .mbo-timetable-filter-line-title{
    width:100%;
    color: var(--mbo-booking-color-white);
    font-size: 12px;
    font-weight: 400;
    padding: 0px 0px 0px 15px;
}

.mbo-timetable .mbo-timetable-actual-rows{
    min-height: 500px;
}

.mbo-timetable .mbo-timetabel-class-row{
    width:100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--mbo-booking-color-white-opacity);
    border-radius: 5px;
}

.mbo-timetable .mbo-timetable-icon-box{
    color: white;
    border-radius: 50%;
    user-select: none;
    line-height: 1em;
    box-sizing: border-box;
    padding:0;
    font-size: 20px;
    font-weight: 500;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mbo-timetable .mbo-timetabel-class-row:nth-child(even){
    background-color: var(--mbo-booking-color-blue-2-opacity);
}

.mbo-timetable .mbo-timetable-right-row-wrapper-container{
    width: calc(100% - 160px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mbo-timetable .mbo-timetable-class-row-wrapper{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 5px;
}

.mbo-timetable .mbo-timetable-class-row-wrapper-1{
    width:150px;
    justify-content: flex-start;
}
.mbo-timetable .mbo-timetable-class-row-wrapper-2{
    width:300px;
    justify-content: flex-start;
    padding: 0px 15px 0px 5px;
    box-sizing: border-box;
}
.mbo-timetable .mbo-timetable-class-row-wrapper-3{
    align-items:flex-start;
    width:300px;
    padding: 0px 15px 0px 5px;
    box-sizing: border-box;

}
.mbo-timetable .mbo-timetable-class-row-wrapper-4{
    width:fit-content;
    margin:0 5px 0 auto;
    justify-content: center;
    align-items: flex-end;
}

.mbo-timetable .mbo-timetable-class-row-start{
    display: block;
    font-weight: 700;
    margin-bottom: 0px;
    box-sizing: border-box;
    padding-bottom: 0px;
    line-height: 1.1em;
}

.mbo-timetable .mbo-timetable-location-icon{
    line-height: 1em;
    margin: 0px;
}

.mbo-timetable .mbo-timetable-location-room{
    margin: 0px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1em;
    letter-spacing: 0px;
    opacity: .7;
    margin-top:5px;
}



.mbo-timetable .mbo-timetable-class-row-min{
    display: block;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 5px;
}

.mbo-timetable .mbo-timetable-class-name{
    font-weight: 600;
}

.mbo-timetable .mbo-timetable-class-staff{
    font-size: 16px;
    line-height: 1.1em;
    cursor: pointer;
    text-decoration: none;
    margin-top:2px;
    margin-bottom:7px;
    user-select: none;
}

.mbo-timetable .mbo-timetable-class-description{
    font-size: 12px;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.1em;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

.mbo-timetable .mbo-timetable-class-description svg{
    margin-left: 4px;
    fill: currentColor;
}

a.class-done, a.class-sign-up{
    width:fit-content;
    min-width: 150px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
}

a.class-done{
    background-color: var(--mbo-booking-color-gray-xdark);
    color: var(--mbo-booking-color-gray-dark) !important;
    cursor: not-allowed;
}

a.class-done:hover{
    color: var(--mbo-booking-color-gray) !important;
}

a.class-sign-up{
    background-color: var(--mbo-booking-color-primary);
    color: var(--mbo-booking-color-black) !important;
}

a.class-sign-up:hover{
    background-color: var(--mbo-booking-color-yellow-1);
    color: var(--mbo-booking-color-black) !important;
}

a.a.class-sign-up:focus{
    color: var(--mbo-booking-color-black) !important;
}

.mbo-timetable a.mbo-not-available-pointer,
.mbo-timetable button.mbo-not-available-pointer,
.mbo-timetable .mbo-not-available-pointer {
    cursor: not-allowed;
}

.mbo-timetable .mbo-date-navigator-day-container a.mbo-not-available-pointer,
.mbo-timetable .mbo-date-navigator-day-container button.mbo-not-available-pointer,
.mbo-timetable .mbo-date-navigator-day-container .mbo-not-available-pointer {
    opacity: 0.4;
}

@media only screen and (max-width: 900px) {
    .mbo-timetable .mbo-timetable-class-row-wrapper-1{
        width:100px;
    }
    .mbo-timetable .mbo-timetable-right-row-wrapper-container {
        width: calc(100% - 100px);
    }
}


@media only screen and (max-width: 768px) {
  .mbo-timetable .mbo-date-navigator-mobile{
    display: flex;
  }
  .mbo-timetable button.mbo-date-pre-mobile, .mbo-timetable button.mbo-date-next-mobile{
    display: flex;
  }
  .mbo-timetable .mbo-date-navigator{
    display: none;
  }
  .mbo-timetable .mbo-timetable-selected-day-line{
    font-size: 12px;
  }
  .mbo-timetable .mbo-choose-date-line-month{
    display: none;
  }
  .mbo-timetable .mbo-timetable-class-row-wrapper-4{
    margin-top:15px;
    margin-left: 0px;
    margin-right: auto;
    width:100%;
  }
  .mbo-timetable .mbo-timetable-class-row-wrapper-4 a{
    width:100%;
   }
  .mbo-timetable .mbo-timetable-right-row-wrapper-container{
    flex-direction: column;
    align-items: flex-start;
  }
  .mbo-timetable .mbo-timetabel-class-row{
    align-items: flex-start;
  }
  .mbo-timetable .mbo-timetable-class-row-wrapper-3{
    margin-top:15px;
  }
}

@media only screen and (max-width: 500px) {
    .mbo-timetable-class-row-start,.mbo-timetable-class-row-min{
        justify-content: center;
        text-align: center;
    }
    .mbo-timetable .mbo-timetable-class-description{
        margin-right:auto;
        margin-left:auto;
    }

    .mbo-timetable .mbo-timetable-icon-box{
        margin: 10px auto;
    }

    .mbo-timetable .mbo-timetable-right-row-wrapper-container{
        width:100%;
    }

    .mbo-timetable .mbo-timetable-class-row-wrapper-1{
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        position: absolute;
        top:8px;
        left:0px;
        padding:10px 20px;
        box-sizing: border-box;
        width:90px;
    }

    .mbo-timetable .mbo-timetable-class-row-wrapper-2{
        width:100%;
        padding:5px;
        padding-left: 90px;
        justify-content: flex-start;
    }

    .mbo-timetable .mbo-timetable-icon-box {
        margin-left:0px;
    }
    .mbo-timetabel-class-row{
        position: relative;
    }

    .mbo-timetable .mbo-timetable-class-name, 
    .mbo-timetable .mbo-timetable-class-staff, 
    .mbo-timetable .mbo-timetable-class-description {
        text-align: left;
        margin-left: 0px;
    }

    .mbo-timetable .mbo-timetable-class-row-wrapper-3 {
        justify-content: flex-start;
        align-items: flex-start;
        width:100%;
        padding: 5px;
        display: flex;
        padding-left:90px;
    }

    .mbo-timetable .mbo-timetable-class-row-wrapper-4{
        padding:0px;
        margin-bottom: 15px;
        margin-left:0px;
    }
	
	body.mbo-modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

}

@media only screen and (max-width: 360px) {
    .mbo-timetable button.mbo-date-pre-mobile, .mbo-timetable button.mbo-date-next-mobile{
        width:45px;
        height:45px;
    }
    .mbo-timetable .mbo-date-navigator-actual-day-mobile{
        width:40px;
        height:40px;
        font-size: 12px;
    }
    .mbo-timetable .mbo-date-navigator-day-container-mobile{
        font-size: 12px;
    }
}


.mbo-timetable-layer-loader, .mbo-timetable .mbo-timetable-iframe-loader {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mbo-timetable-layer-loader .spinner, .mbo-timetable .mbo-timetable-iframe-loader .spinner {
    border: 4px solid #ddd;
    border-top: 4px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mbo-timetable-loader-layer{
    width:100vw;
    height:100%;
    position: fixed;
    bottom:0;
    left: 0;
    background-color: #0706045b;
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.mbo-timetable-loader-layer .mbo-timetable-modal-container-out{
    width:90%;
    max-width: 600px;
    box-sizing: border-box;
    padding: 30px 0px 0px 0px;
	position:relative;
	border-radius:3px;
	background-color: var(--mbo-booking-color-gray-light);
}

.mbo-timetable-loader-layer .mbo-timetable-modal-container{
    width:100%;
    max-width: 600px;
    box-sizing: border-box;
    border-radius: 7px;
    padding:20px;
    background-color: var(--mbo-booking-color-gray-light);
    position: relative;
    color: var(--mbo-booking-color-black);
    max-height: 400px;
    overflow-y: scroll;
}

.mbo-timetable-loader-layer .close-timetable-modal{
    position: absolute;
    right: 2px;
    top: 3px;
    fill: var(--mbo-booking-color-black);
    cursor: pointer;
    user-select: none;
}

.mbo-timetable-loader-layer .mbo-timetable-modal-container a{
   color: var(--mbo-booking-color-blue-1) !important;
}

.mbo-timetable-loader-layer .mbo-timetable-modal-container a:hover{
    color: var(--mbo-booking-color-blue-2) !important;
}

.mbo-timetable-loader-layer .close-timetable-modal-iframe{
    fill: var(--mbo-booking-color-black);
    right:2px;
    top:3px;
}

.mbo-timetable-loader-layer .close-timetable-modal:hover{
    fill: red;
}

.mbo-timetable-loader-layer .close-timetable-modal-iframe:hover{
    fill: red;
}


.mbo-timetable-modal-title{
    display: flex;
    width:100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.mbo-timetable-modal-title-wrapper{
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.mbo-timetable-modal-title-wrapper h5 {
    width:100%;
    box-sizing: border-box;
    padding: 0px 35px 0px 0px;
    margin-bottom:0px;
    font-weight: 600;
	color: var(--mbo-booking-color-black)  !important;
}
.mbo-timetable-modal-title-wrapper div {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-weight: 400;
}

@media only screen and (max-width: 500px) {
	.mbo-timetable-loader-layer .mbo-timetable-modal-container-out{
		width:100%;
		height:100%;
		padding-top:30px;
		padding-bottom:0px;
		background-color: var(--mbo-booking-color-gray-light);
		border-radius:0px;
	}
	
	.mbo-timetable .mbo-timetable-loader-layer .close-timetable-modal-iframe,
    .mbo-timetable-loader-layer .close-timetable-modal{
        top:3px;
		fill: var(--mbo-booking-color-black);
    }
	
    .mbo-timetable-loader-layer .mbo-timetable-modal-container{
        width:100%;
        max-height: 100%;
		height: 100%;
        border-radius: 0px;
    }
	
	.mbo-timetable .mbo-timetable-filter-line-out {
        padding: 0px;
    }

    .mbo-timetable .mbo-timetable-filter-arrow{
        display: none;
    }
	
}

    .chooseClubTimetableModalRowCont{
        width:100%;
		padding:0;
		margin:0;
		overflow:hidden;
    }

    .chooseClubTimetableModalRow{
        width:100%;
		box-sizing:border-box;
		padding:0px 10px;
		display:flex; 
		align-items:center; 
		justify-content: space-between;
    }


    .chooseClubTimetableModalBtn{
        border-bottom:2px solid #e9e9e9;
		box-sizing:border-box; 
		padding:20px 0px;
		text-decoration:none;
		display:flex;
		align-items:center;
		justify-content:space-between;
		width:100%;
		transition: .3s;
    }

    .chooseClubTimetableModalBtn:hover{
        transform: translateX(5px);
    }