@font-face {
    font-family: "Comfortaa";
    src: url("../fonts/Comfortaa.ttf");
}

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

@font-face {
    font-family: "Comfortaa-Regular";
    src: url("../fonts/Comfortaa-Regular.ttf");
}


body{
    /*font-family: "Roboto", "Helvetica", "Arial", sans-serif;*/
    font-family: "Comfortaa-Regular" !important;
    font-size: 85% !important;
}

.fs-7 {font-size: 0.95rem!important;}
.fs-8 {font-size: 0.9rem!important;}
.fs-9 {font-size: 0.85rem!important;}
.fs-10 {font-size: 0.8rem!important;}
.fs-11 {font-size: 0.75rem!important;}
.fs-12 {font-size: 0.7rem!important;}
.fs-13 {font-size: 0.65rem!important;}
.fs-14 {font-size: 0.6rem!important;}
.fs-15 {font-size: 0.55rem!important;}
.fs-16 {font-size: 0.5rem!important;}
.fs-17 {font-size: 0.45rem!important;}
.fs-18 {font-size: 0.4rem!important;}
.fs-19 {font-size: 0.35rem!important;}
.fs-20 {font-size: 0.3rem!important;}

#GDPRForm{
    position:fixed;
    background-color: black;
    color:antiquewhite;
    width:100%;
    height:45px;
    bottom:0px;
    left:0px;
    z-index:99;
    padding:10px 6px 10px 10px;
    text-align: center;
    opacity: 0.8;
}

.cpointer {
    cursor: pointer;
}

.min-height {
    min-height: 570px;
}

.front-end .mobile-header-bottom{
    color: white !important;
    text-decoration: none !important;
}

.front-end {
    background-color: white!important;
}

html .front-end .text-decoration-underline {
    text-decoration: underline !important;
}

.red-colour {
    color: #8C000D;
}

.blue-colour {
    color: #203452;
}

#news-body a {
    color: revert !important;
}

.text-white {
    color: #ffffff;
}

.font-40 {
    font-size: 40px;
}

.font-45 {
    font-size: 45px;
}

.font-28 {
    font-size: 28px;
}

.font-24 {
    font-size: 24px;
}

.font-22 {
    font-size: 22px;
}

.font-20 {
    font-size: 20px;
}

.font-18 {
    font-size: 18px;
}

.font-16 {
    font-size: 16px;
}

.font-14 {
    font-size: 14px;
}

.mb-30 {
    margin-bottom: 30px;
}

.align-self-center {
    align-self: center;
}

.border-radius {
    border-radius: 5px;
}

.border-radius-10 {
    border-radius: 10px !important;
}

.color-grey {
    color: grey;
}

.front-end .text-black {
    color: #000000 !important;
}

.front-end .text-default-black {
    color: #212529 !important;
}

/* General styling to remove the default appearance */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 206px;
    height: 8px;
    background: transparent; /* Remove the default filled track */
}

/* Styling for WebKit browsers (Chrome, Safari, Edge) */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #ddd; /* Color of the track */
    border-radius: 5px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #333; /* Color of the thumb */
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    top: -4px; /* Adjust thumb vertical position */
}

/* Styling for Firefox */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
}

input[type=range]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

/* Styling for Internet Explorer */
input[type=range]::-ms-track {
    width: 100%;
    height: 8px;
    background: transparent; /* Remove filled color */
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: transparent; /* Remove the filled part on the left */
}

input[type=range]::-ms-fill-upper {
    background: transparent; /* Remove the filled part on the right */
}

input[type=range]::-ms-thumb {
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

.mt-6 {
    margin-top: 3.5rem !important;
}

.column-index-default {
    display: flex;
    flex-direction: column;
}

#main-footer-mobile {
    overflow-x: hidden;
}


@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}


/*      ADMIN       */

.truncate-overflow-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-overflow-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-overflow-6 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.u-nav-v4-1.u-nav-primary .nav-link.active {
    border-color: #1455a2 #ccc #fff;
    color: #000000;
}

.u-nav-v4-1.u-nav-primary .nav-link {
    color: #999;
}

.g-brd-primary {
   border-color: #1455a2 !important;
}

.u-nav-v4-1 {
    border-bottom-color: #ccc;
}

.selected {
    background-color: #fafad2;
}

.input-number {
    background-color: #ffffff;
    border-radius: 8px;
    width: 14%;
    border: 1px solid #000000
}

/*.nav-item:hover>.collapse{*/
/*    display: block;*/
/*}*/

/*.select2-selection {*/
/*    height: 30px !important;*/
/*}*/

.select2-selection__choice {
    margin-bottom: 17px !important;
    margin-top: 3px !important;
}

#wrapper-admin:after, #wrapper-admin:before {
    position: inherit;
}

.sidenav-wrapper {
    border-radius: 5px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 90;
    background: #203452;
}

.sidenav-program {
    position: fixed;
    bottom: 10px;
    right: 0;
    background: #DCDCDC;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px;
    z-index: 99;
}

.sidenav-row {
    position: relative;
    margin-right: 8px;
}

.sidenav-separator {
    height: 1px;
    background-color: whitesmoke;
    width: 70%;
    margin: auto;
}

.sidenav-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 11px;
    line-height: 13px;
    text-transform: uppercase;
    z-index: 2;
    cursor: pointer;
    color: #000000;
}

/*.sidenav-button:hover {*/
    /*background: rgb(154, 2, 2);*/
    /*color: #000000 !important;*/
    /*text-decoration: none;*/
    /*outline: 0 !important;*/
/*}*/

.sidenav-span-description {
    max-width: 85%;
    display: block;
    font-size: 10px;
}

.sidenav-icon {
    font-size: 32px;
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.carousel-control:hover {
    background-color: #00000079;
}

/*.main-carousel .carousel-item {*/
/*    height: 600px;*/
/*}*/

.main-carousel .carousel-item .background-slider, .main-carousel .carousel-item .background-slider-banner {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    /*object-fit: scale-down;*/
}

.canvas-container {
    margin: 0 auto !important;
}



@media only screen and (min-width: 992px) {
    .modal-custom-xl {
        max-width: 1618px !important;
    }
}

.ui-state-highlight {
    border: 0 !important;
}

.ui-state-highlight a {
    background: #363636 !important;
    color: #fff !important;
}

/*          CLIENT        */

.breadcrumb-wrapper .breadcrumb-items {
    color: #191C28 !important;
}

.breadcrumb-wrapper .breadcrumb-items-white {
    color: #191C28 !important;
}

.breadcrumb-wrapper-text-white {
    color: #ffffff;
}

.name-breadcrumb {
    color: #8D8C8C !important;
}

.breadcrumb-wrapper span {
    color: #8D8C8C !important;;
}

.box-shadow-default {
    box-shadow: 0 0 13px rgb(0 0 0 / 7%);
    border-radius: 5px;
}

/*          HEADER           */

.flags {
    width: 24px;
}

.header-background {
    background-color: #23282E;
    height: 140px;
}

.profile {
    color: white;
    margin-top: 30px;
}

.search-box {
    background-color: #334D76;
    border-radius: 5px;
}

.search-container {
    /*width: 210px !important;*/
    background: transparent !important;
    border: none !important;
}

.search-input {
    width: 200px !important;
}

.search-button {
    background-color: #203452 !important;
    border: none !important;
}

.search-box-result {
    text-decoration: none;
    font-size: 0.875rem !important;
    text-transform: none !important;
    font-weight: normal !important;
    background-color: #203452;
    min-height: 30px;
    z-index: 999;
    display: none;
}

.search-box-result div:hover {
    background-color: #203452 ;
}

.search-box-result a {
    text-decoration: none;
}

.search-box-result a:hover {
    color: #203452 ;
}

.dropdown .dropdown-menu.show{
    transform: scale(1);
}

.mobile-navigation .dropdown-menu .dropdown-item {
    white-space: normal;
}

.custom-language-btn {
    color: #ffffff !important;
    -moz-box-shadow: none;
    -goog-ms-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;

}

.custom-language-btn:focus, .language-margin .dropdown .custom-language-btn:focus{
    color: #ffffff;
    background-color: #203452 !important;
    border-color: #203452 !important;
    box-shadow: none !important;
}

.custom-language-btn:hover{
    color: #fff;
}

.language-class .dropdown-menu {
    min-width: 5rem;
    background-color: #203452;
}

.language-class .dropdown-item:active, .language-class .dropdown-item:focus, .language-class .dropdown-item:hover {
    background-color: #334D76 !important;
}

#navbarNavDesktop, .nav-desktop-wrapper,.nav-desktop-wrapper .navbar  {
    background-color: #203452 !important;
}

#navbarNavMobile, .nav-mobile-wrapper,.nav-mobile-wrapper .navbar {
    background-color: #23282E !important;
}

.nav-wrapper a {
    font-size: 18px;
    font-weight: bold;
}

.navbar-label {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.margin-header-mobile {
    margin-top: 17px;
}

.dark-red {
    background: #5F040C;
}

.dark-red-button {
    width: 200px;
    background-color: #ffffff !important;
    border-radius: 10px;
    color: #5F040C !important;
    border: 1px solid #5F040C !important;
}

.dark-blue-button {
    width: 200px;
    background-color: #ffffff !important;
    border-radius: 10px;
    color: #203452 !important;
    border: 1px solid #203452 !important;
}

.dark-red-filled-button {
    width: 200px;
    background-color: #5F040C !important;
    border-radius: 10px;
    color: white !important;
}

.dark-blue-filled-button {
    width: 200px;
    background-color: #203452 !important;
    border-radius: 10px;
    color: white !important;
}

.search-mobile {
    padding: 11px;
}

.profile-mobile a {
    padding: 10px 10px 7px 7px;

}

.mobile-navigation{
    border-radius: 5px;
}

#navbarNavMobile {
    width: 290px;
}

.auto-margin-right {
    margin-right: auto !important;
}

.desktop-name {
    padding:9px;
    line-height: 35px;
}

.desktop-header-margin-name {
    margin-top: 4px;
}

.desktop-header-margin-search {
    margin-top: 12px;
}

.logo-mobile {
    margin-left: 18px;
    margin-bottom: 10px;
}

.language-margin {
    margin-top: 20px;
}

.nav-desktop-wrapper .dropdown-menu {
    background-color: #203452 !important;
}

.nav-desktop-wrapper .dropdown-item:active, .nav-desktop-wrapper .dropdown-item:focus, .nav-desktop-wrapper .dropdown-item:hover {
    background-color: #203452 !important;
}

.desktop-header-margin-name {
    cursor: pointer;
}

.text-modal {
    color: #666666;
    font-size: 15px;
}

#loginModal .dark-red-text, .login-container .dark-red-text {
    color: #8C000D !important;
}

#loginModal .dark-blue-text, .login-container .dark-blue-text {
    color: #203452 !important;
}

#loginModal .yellow-text, .login-container .yellow-text {
    color: #373737 !important;
}


.dark-red-colour {
    background-color: #8C000D !important;
    color: #ffffff !important;
    font-size: 20px !important;
}

.dark-blue-colour {
    background-color: #203452 !important;
    color: #ffffff !important;
    font-size: 20px !important;
}

.yellow-colour {
    background-color: #FEDD31 !important;
    color: #373737 !important;
    font-size: 17px !important;
}

/*      SLIDER      */
.red-label-slider {
    border-radius: 5px;
    background-color: #C90000;
    margin-right: 5px;
    font-size: 20px;
    padding:5px 20px 7px 20px;
}

.blue-label-slider {
    border-radius: 5px;
    background-color: #203452;
    margin-right: 5px;
    font-size: 20px;
    padding:5px 20px 7px 20px;
}

.yellow-label-slider {
    border-radius: 5px;
    background-color: #FFAA2C;
    margin-right: 5px;
    font-size: 20px;
    padding:5px 20px 5px 20px;
    color: #000000;
}

.date-slider {
    font-size: 20px;
    padding: 5px;
}

.name-slider {
    font-size: 35px;
    margin-bottom: 0;
    margin-top: 5px;
}

.view-more-button {
    border: 1px solid #ffffff !important;
    width: 160px;
    font-weight: bold !important;
    text-transform: uppercase;
}

.annotation-slider {
    font-size: 18px;
    margin-bottom: 10px;
}

.desc-slider {
    line-height: 18px;
    font-size: 14px;
}

.author-slider {
    font-size: 16px;
}

.duration-slider {
    font-size: 20px;
}

.carousel-caption {
    top: 0 !important;
}

.background-slider {
    opacity: 0.2;
    /*height: 630px;*/
}

.today-show-slider {
    object-fit: cover;
    min-height: 550px !important;
}

/*.carousel-repertoire .carousel-item {*/
/*    margin-bottom: 30px;*/
/*}*/

/*.carousel-repertoire .carousel-inner {*/
/*    background-image: linear-gradient(90deg,black,black);*/
/*}*/

.repertoire-carousel-footer {
    background-color: #222222;
    font-weight: bold;
}

.repertoire-carousel-footer .container {
    padding:22px 20px 20px 15px;
    /*min-height: 200px;*/
}

.repertoire-carousel-footer .row {
    justify-content: space-between;
}

.text-carousel-footer {
    float: left;
    color: #ffffff;
    font-size: 21px;
    margin-top: 9px;
}

.clock-svg {
    min-width: auto !important;
}

.carousel-control-prev-icon {
    background-image: url("../img/arrow-left.svg") !important;
    width: 55px !important;
    height: 55px !important;
}

.carousel-control-next-icon {
    background-image: url("../img/arrow-right.svg") !important;
    width: 55px !important;
    height: 55px !important;
}

.carousel-control-next, .carousel-control-prev {
    opacity: 1 !important;
}

.forgotten-password {
    color: #000000;
    text-decoration: underline;
}

.desc-slider-wrapper{
    max-height: 120px !important;
    overflow: hidden;
    text-overflow: ellipsis;
}



/*      SHOWS       */

.dark-grey {
    color: #333333 !important;
}

.follow-us-icons {
    display: flex;
    /*justify-content: space-between;*/
}

#desktop-shows .card-body {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.img-buy-ticket {
    margin-bottom: 3px;
}

.shows-date-small {
    color: #ffffff;
    background-color: #203452;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 55px;
}

.buy-button {
    border-radius: 5px !important;
    background-color: #203452 !important;
    color: #ffffff !important;
}

.disabled-button {
    border-radius: 5px !important;
    background-color: #B5B5B5 !important;
    color: #ffffff !important;
}

.program-text {
    font-size: 20px;
    color: #333333;
    margin: 0;
    padding:5px;
}

.program-day {
    font-size: 15px;
}

.side-calendar {
    padding-left: 14px;
    padding-right: 14px;
}

.time-program {
    align-self: center;
    font-size: 16px;
    padding-left: 6px !important;
}
.desktop-shows .view-more-button-shows {
    width:280px;
    border: 1px solid #999999 !important;
    color: #333333 !important;
    font-weight: 400;
}

.number-program {
    font-size: 29px
}

.text-program {
    color: #8C000D;
    line-height:1.3;
    align-self: center;
}

.mobile-upcoming-wrapper {
    /*background-image: url('http://127.0.0.1:8000/img/calendar-gray-bg.png')*/
    background-color: #2E3033;
}

#carouselMobile .card {
    border: 1px solid #000000;
}

.upcoming-mobile-text {
    color: #ffffff;
}

.mobile-upcoming-wrapper .view-more-button-shows{
    border: 1px solid #ffffff;
    font-weight: bold;
    min-width: 225px;
}

.mobile-upcoming-wrapper .buy-button{
    min-width: 215px;
}

.repertoire-carousel-wrapper {
    margin-top: 50px;
}

#carouselRepertoire .left-arrow-carousel{
    position: absolute;
    top: 96px;
    left: -100px;
}

#carouselRepertoire .right-arrow-carousel {
    position: absolute;
    top: 96px;
    right: -100px;
}


#carouselPartners .left-arrow-carousel {
    position: absolute;
    top: 43px;
    left: -100px;
}

#carouselPartners .right-arrow-carousel {
    position: absolute;
    top: 43px;
    right: -100px;
}

/*      CALENDAR        */
#gray-calendar-mobile p, #gray-calendar-mobile h2 {
    color: #000000;
}

#gray-calendar {
    background-image: url('../img/calendar-gray-bg.jpg');
}

.calendar-wrapper {
    border-radius: 15px;
    background-color: whitesmoke;
}

.premiere-td {
    color: #ffffff;
    cursor:pointer;
    background-color: #FFAA2C;
    border-radius: 50%
}

.show-td {
    color: #ffffff;
    cursor: pointer;
    background-color: #203452;
    border-radius: 50%;
}

.event-td {
    color: #ffffff;
    cursor: pointer;
    background-color: #1778BE;
    border-radius: 50%;
}

.current-day p {
    font-size: 22px;
}

.calendar-texts {
    color: whitesmoke;
}

.calendar-desc {
    font-size: 12px;
    font-style: italic;
    color: whitesmoke;
}

.premiere-div {
    background-color: #FFAA2C;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

/*      FOOTER        */

.footer-mobile .col-2{
    padding-right: 23px !important;
}

.footer-mobile .col-10 {
    padding-left: 30px !important;
}

.hr-footer {
    width: 90%;
    background-color: #373737;
}

.social-footer {
    border: 1px solid white;
    border-radius: 5px;
    padding:5px 10px 5px 10px;
}

.bulletin-register {
    display: flex;
    border-radius: 5px;
    border: white solid 2px;
    height: 40px;
    margin-bottom: 16px;
    width: 265px !important;
}

.bulletin-register input {
    width: 225px;
    background-color: #222222;
    color: #ffffff;
}

.bulletin-register button {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 2px;
    width:20%;
}

.bulletin-register button i {
    color: #ffffff;
}


/*      REGISTER        */

.register-container {
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
}

.register-container .agree-terms {
    color: #C90000 !important;
}

.btn-profile {
    background-color: #FEDD31 !important;
    color: #373737 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.btn-save {
    background-color: #373737 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.btn-logout {
    background-color: #DCDCDC !important;
    color: #373737 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.btn-delete-profile {
    background-color: #DCDCDC !important;
    color: #F4F4F4 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.your-tickets {
    background-color: #FEDD31;
    border-radius: 5px;
    color: #373737;
}

/*      TICKET OFFICE       */

#ticket-offices .col-md-12 {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
}

#ticket-offices .email-ticket {
    color: #C90000 !important;
}

#fit-container-embed .map {
    position: relative !important;
    padding-bottom: 56.25% !important; /* 16:9 */
    padding-top: 25px !important;
    height: 0 !important;
}

#fit-container-embed .map iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.twitter-share-button {
    margin-bottom: -6px !important;
}

.ticket-office-name {
    color: #203452;
}

.ticket-office-name img{
    width: 50px;
}

.working-hours {
    color: #203452;
}

/*      NEWS        */

/*.news-img {*/
/*    width: 255px !important;*/
/*    height: 185px !important;*/
/*}*/

.min-height-text {
    min-height: 400px;
}

.date-news {
    font-size: 13px;
}

.text-news {
    font-size: 14px;
}

.box-shadow-default .see-more {
    color: #203452 !important;
}

.see-more-div {
    align-self: center;
}

#news img {
    width: 255px;
    height: 185px;
}

.news-single-image img{
    float: left;
    width: 409px;
    height: 272px;

}

.all-news a {
    color: #203452 !important;
}
/*      PARTNER     */

.partner-card {
    border:none !important;
    background-color: transparent !important;
    margin-top: 25px
}

.program-img {
    border-radius: 5px;
    height: 53px;
    width:160px
}

.carousel-arrows {
    background-color: transparent !important;
    border-color: gray !important;
}

#partners-mobile img {
    width:96px;
    border-radius: 5px;
}

/*      REPERTOIRE      */

.repertoire-wrapper {
    background-repeat: no-repeat;
}

.color-repertoire-wrapper {
    background-color: #ffffff;
}

.season {
    color: #ffffff;
    background-color: #203452;
    border-radius: 5px;
    position: absolute;
    top: 315px;
    right: 70px;
    width: 110px;
    height: 55px;
    line-height: 22px;
}

.repertoire-name {
    font-size: 20px;
}

.front-end .archive-button {
    background: #EDEDED !important;
    color: #000000 !important;
}

.repertoire-page-name {
    font-size: 36px;
}

.repertoire-page-author {
    font-size: 20px;
}

.timespan {
    font-weight: bold;
    font-size: 18px;
}

.repertoire-team {
    background-color: #334D76;
    /*opacity: 0.7;*/
    color: #ffffff;
    padding: 15px 50px 25px 50px;
}

.repertoire-date {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 38px;
}

.repertoire-dates-format {
    /*line-height: 25px;*/
    color: #334D76;
}

.hall-name, .program-time {
    color: #191C28;
}

.repertoire-dates-wrapper {
    background-color: #E1E1E1;
}

.youtube-mobile {

    position: relative !important;
    padding-bottom: 56.25% !important; /* 16:9 */
    padding-top: 25px !important;
    height: 0 !important;

}

.youtube-mobile iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.recommendations {
    color: #333333;
}

.archive a {
    color: #000000 !important;
}

.border-card {
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 5px;
}

.card-text-mobile {
    color: #666666;
    margin-top: 13px;
}

.mobile-repertoire-season {
    background: #8A0E00;
    border-radius: 0px 5px 5px 0px;
    width: 160px;
}

.front-end .program-button {
    background: #D62612 !important;
}


/*      PROGRAM     */
.active-month {
    background: #203452;
    border-radius: 5px;
    min-width: 56px;
    padding: 11px 9px 11px 11px;
    color: #ffffff;
    border: none;
}

.inactive-month {
    background: #E9E9E9;
    border-radius: 5px;
    min-width: 56px;
    padding: 11px;
    color: #000000 !important;
    border: none;
}

.custom-border-left {
    border-left: 12px solid #203452;
    border-radius: 5px 0 0 5px;
}

.custom-border-left-yellow {
    border-left: 12px solid #FFAA2C;
    border-radius: 5px 0 0 5px;
}

/*.custom-border-left-red {*/
/*    border-left: 12px solid #D62612;*/
/*    border-radius: 5px 0 0 5px;*/
/*}*/

.dark-red-label-program {
    border-radius: 5px;
    background-color: #890E00;
    margin-right: 5px;
    font-size: 17px;
    padding:3px 15px 3px 15px;
    color: #ffffff !important;
}

.dark-blue-label-program {
    border-radius: 5px;
    background-color: #203452;
    margin-right: 5px;
    font-size: 17px;
    padding:3px 15px 3px 15px;
    color: #ffffff !important;
}

.gray-label-program {
    border-radius: 5px;
    background-color: #222222;
    margin-right: 5px;
    font-size: 17px;
    padding:3px 15px 3px 15px;
    color: #ffffff !important;
}

.red-label-program {
    border-radius: 5px;
    background-color: #C90000;
    margin-right: 5px;
    font-size: 17px;
    padding:3px 15px 0 15px;
    color: #ffffff !important;
}

.blue-label-program {
    border-radius: 5px;
    background-color: #1778BE;
    margin-right: 5px;
    font-size: 17px;
    padding:3px 15px 0 15px;
    color: #ffffff !important;
}

.yellow-label-program {
    border-radius: 5px;
    background-color: #FFAA2C;
    margin-right: 5px;
    font-size: 17px;
    padding:3px 15px 0 15px;
}

.red-alert-program {
    background-color: #DC3545;
    color: #ffffff;
    font-weight: bold;
    padding: 7px 4px 7px 4px;
    border-radius: 6px;
    font-size: 15px;
}

.red-alert-container-program {
    position: relative;
    left: -5px
}

.program-page {
    width: 105px;
    height: 166px;
}

.program-page-big {
    /*width: 105px;*/
    height: 296px !important;
}

.front-end .black-link {
    color: #000000 !important;
}

#kid-container {
    color: #000000 !important;
}

.day-program {
    font-size: 60px;
}

.date-program {
    line-height: 25px;
}

.inactive {
    font-size: 20px;
    color: #C90000;
}

.no-tickets {
    font-size: 20px;
    color: #F58529;
}

#change_date {
    background-color: #203452;
    color: #ffffff;
}

.filters {
    border: 1px solid #333333;
    color: #333333;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 3px;
    cursor: pointer;
}

.filters-black {
    background-color: #333333;
    color: #ffffff;
}

.filter-image {
    filter: brightness(0) invert(1);
}

.red-program {
    background-color: #DC3545;
    color: #ffffff;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    font-size: 13px;
}

.upcoming-container {
    border-radius: 7px;
    border: 1px solid #808080;
    line-height: 22px;
    min-width: 60px !important;
    max-width: 60px !important;
}

.text-grayish {
    color: #333333;
}

#price-div table th{
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;

}
#price-div table td {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom: 1px solid #dee2e6;
}

#pre_reserve, #reserve, #fake_reserve {
    min-width: 220px;
    background-color: #7AA0BB;
    border: 1px solid #7AA0BB;
}

#pre_reserve:hover, #reserve:hover {
    background-color: #7f96ba;
    border: 1px solid #7f96ba;
}

.btn-group-xs > .btn, .btn-xs {
    padding: .25rem .4rem !important;
    font-size: .875rem !important;
    line-height: .5 !important;
    border-radius: .2rem !important;
}

.circle-reassessment, .circle-ticket {
    position: absolute;
}

.input-admin-place {
    background-image: none !important;
    border-radius: 10px !important;
    border: 1px solid #646464 !important;
    display: inline-block;
    width: 58px !important;
    height: 32px !important;
    text-decoration: none !important;
    outline:none !important
}

.btn-ticket-count {
    border-radius: 10px !important;
    height: 32px !important;
    width: 32px !important;
}

.input-admin-place input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.swal-reservation {
    border-radius: 32px;
}

.swal-reservation .swal2-cancel {
    color: #203452 !important;
    border:1px solid #203452 !important;
    background-color: #ffffff !important;
}

.swal-reservation .swal2-actions {
    margin: 1.25em 30px 0 !important;
    justify-content: space-around !important;
}

.swal-reservation .swal2-styled {
    padding: 0.375em 2em !important;
}


/* For Firefox */
.ticket-controls input[type=number] {
    -moz-appearance: textfield;
}

/*      TICKETS     */
.tickets-background {
    background-color: #203452;
    border-radius: 5px;
}

.front-end .buy-button-tickets {
    border-radius: 5px !important;
    background-color: #FFFFFF !important;
    width: 280px;
    color: #203452!important;
}

.front-end .call-button {
    border-radius: 5px !important;
    background-color: #203452  !important;
    width: 280px;
}

/*      DIRECTOR        */
.director-background {
    /*background-image: url(../img/director_background.jpg);*/
    /*background-repeat: no-repeat;*/
    background-color: #203452;
}

/*      ADMINISTRATION      */
.administration-name {
    color: #000000;
}

.administration-heading {
    font-size: 28px;
}

/*      TOURS       */
.tour-index {
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.tour-year {
    margin-top: auto;
}

.tour-modal .modal-header{
    border: none;
}

/*      MEDIA       */

.front-end .media-button {
    color: #000000 !important;
    background-color: #E2E2E2;
    border-radius: 5px;
    border: none;
}

.front-end .active-media-button {
    background-color: #203452;
    border-radius: 5px;
    border: none;
    color: #ffffff;
}

/*      AWARDS      */

.award-name {
    word-wrap: break-word;
}

/*      CONTACTS        */

.contact-text {
    background-color: #203452;
    border-radius: 5px;
}

.loader {
  margin: auto;
  border: 2px solid #EAF0F6;
  border-radius: 50%;
  border-top: 2px solid #222222;
  width: 20px;
  height: 20px;
  animation: spinner 4s linear infinite;
}

.loader-big {
    margin: auto;
    border: 2px solid #EAF0F6;
    border-radius: 50%;
    border-top: 2px solid #222222;
    width: 100px;
    height: 100px;
    animation: spinner 4s linear infinite;
}

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

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

    #carouselMainSlider .thumbnail-wrapper {
        height: 400px !important;
    }

}

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

    #carouselRepertoire .left-arrow-carousel {
        left: -45px !important;
        top: 110px;
    }

    #carouselRepertoire .right-arrow-carousel{
        right: -45px !important;
        top: 110px;
    }

    #carouselRepertoire .col-md-2, #carouselPartners .col-md-2  {
        padding-right: 0;
    }

    #carouselPartners .left-arrow-carousel {
        left: -45px !important;

    }

    #carouselPartners .right-arrow-carousel {
        right: -45px !important;

    }


}


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

    .date-slider {
        display: block;
    }

    .name-slider {
        font-size: 25px;
    }

    .red-label-slider, .yellow-label-slider {
        font-size: 17px;
        padding: 2px 20px 2px 20px;
    }

}


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

    #carouselRepertoire .left-arrow-carousel, #carouselPartners .left-arrow-carousel {
        left: -30px !important;
    }

    #carouselRepertoire .right-arrow-carousel, #carouselPartners .right-arrow-carousel {
        right: -30px !important;
    }


}

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

    .carousel-item .annotation-slider {
        margin-top: 5px !important;
    }

    .profile .row {
        justify-content: space-evenly;
    }
    .nav-desktop-wrapper .container{
        max-width: 100%;
    }
    .nav-desktop-wrapper .container .nav-item a{
        font-size: 14px !important;
    }

    .nav-desktop-wrapper .container .navbar{
        padding-left: 0px;
        padding-right: 0px;
    }

    .number-program {
        font-size: 19px;
    }

    .time-program {
        font-size: 12px;
    }

    .text-program {
        font-size: 14px;
    }

    .follow-us-icons img {
        width: 50px;
        height: 26px
    }

    #carouselRepertoire .right-arrow-carousel, #carouselRepertoire .left-arrow-carousel {
        top: 90px !important;
    }

    #carouselPartners .right-arrow-carousel, #carouselPartners .left-arrow-carousel {
        top: 36px !important;
    }

    #carouselPartners img {
        width: 143px !important;
    }

    .season {
        top: 255px;
        right: 49px;
    }

    .text-slider .text-slider-margin {
        margin-left: 25px !important;
    }

    .director-photo img{
        width: 235px !important;
    }

    .program-date {
        font-size: 14px;
    }

    .front-end .program-dates-wrapper {
        padding-left: 15px !important;
    }

    .day-program {
        font-size: 52px;
    }


}

@media only screen and (min-width: 1920px) {
    .today-show-slider {
        object-fit: unset;
    }
}

@media only screen and (max-width: 1630px) {
    .heading-program {
        width: 1400px;
    }
}

@media only screen and (max-width: 1150px) {
    .desc-slider-wrapper{
        max-height: 120px !important;
    }
}

@media only screen and (max-width: 1024px) {
    .front-end #repertoire-slider-mobile{
        display: block !important;
    }
    #repertoire-slider {
        display: none;
    }

    #repertoire-slider-mobile .carousel-inner img{
        width: 100%;
    }

    #carouselRepertoireMobile .carousel-control-prev {
        left: -35px;
    }

    #carouselRepertoireMobile .carousel-control-next {
        right: -35px;
    }

    .date-slider {
        font-size: 17px;
    }

}

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

    #carouselMainSlider .thumbnail-wrapper {
        height: 0 !important;
    }

    .big-img-slider {
        display: none;
    }

    .text-slider {
        width: 100% !important;
        text-align: center !important;
    }

    .carousel-caption .row {
        display: block !important;
    }
    .text-slider {
        max-width: 100% !important;
    }

    .text-carousel-footer {
        text-align: center;
    }

    .repertoire-carousel-footer a {
        margin-right: 0 !important;
    }
    .buy-ticket {
        position: relative;
        font-size: 19px;
        top: 40px;
        text-transform: uppercase;
        left: 46px;
    }

    .buy-ticket {
        position: relative;
        font-size: 19px;
        top: 4px;
        text-transform: uppercase;
        left: 170px;
    }

    .desc-slider-wrapper{
        max-height: 140px !important;
    }

}

.logo-header {
    width:50%;
}


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

    .logo-header {
        margin-top: 17px;
    }


    .ticket-office-name {
        font-size: 18px !important;
    }

    .ticket-office-name img {
        width: 50px;
    }
    .text-slider .text-slider-margin {
        margin-left: 0 !important;
    }

    .desktop-header, .nav-desktop-wrapper {
        display: none;
    }

    .mobile-header, .nav-mobile-wrapper {
        display: block !important;
    }

    .nav-mobile-wrapper .mobile-navigation {
        background-color: #203452;
    }

    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
    }
    #navbarNavMobile {
        text-align: left;
    }
    .navbar .dropdown-menu .dropdown-item {
        padding-left: 5px;
    }
    .mobile-navigation {
        max-width: 117px;
    }
    .navbar .dropdown-menu {
        background-color: #203452 !important;
    }

    .repertoire-carousel-footer .row {
        justify-content: center;
    }

    .follow-us {
        text-align: center;
    }

    .icons-follow {
        margin-bottom: 30px;
    }

    .follow-us-icons img {
         width: auto;
         height: auto;
    }

    .front-end .desktop-shows {
        margin-top: 25px !important;
        margin-bottom: 0 !important;
    }

    .mobile-upcoming-wrapper .carousel-control-prev, .mobile-upcoming-wrapper .carousel-control-next {
        margin-bottom: 130px;
    }

    .text-slider-margin {
        text-align: center !important;
    }

    #carouselPartners .right-arrow-carousel, #carouselPartners .left-arrow-carousel {
        top: 34px !important;
    }

    #carouselPartners img {
        width: 108px !important;
    }

    .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: block !important;
    }

    /*#carouselMainSlider .main-carousel {*/
    /*    height: 790px !important;*/
    /*}*/

    .repertoire-carousel-footer a {
        margin-right: 0 !important;
        /*width: 175px;*/
    }
    .buy-ticket {
        position: relative;
        font-size: 19px;
        top: 40px;
        text-transform: uppercase;
        left: 46px;
    }

    /*.repertoire-carousel-footer-banner {*/
    /*    height: 160px;*/
    /*}*/

    .director-photo img {
        width: 214px !important;
    }

    .director-photo {
        text-align: center;
    }

    .director-background {
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
    }

    .director-background .font-28{
        margin-top: 0 !important;
    }

    .front-end .director-background {
        padding: 35px;
        text-align: center !important;
    }

    .front-end .wrapper-director {
        padding-right: 0 !important;
    }

    .buy-ticket-mobile-program {
        padding-left: 38px !important;
        padding-right: 38px !important;

    }

    html .upcoming-prices-container {
        padding-left: 30px !important;
    }

}
@media only screen and (max-width: 845px) {
    #GDPRForm {
        height: 75px;
    }
}


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

    .upcoming-prices-container {
        margin-top: 20px;
    }

    .unregistered-form .form-row .form-group {
        padding-right: 0 !important;
    }

    .upcoming-prices-container {
        margin-top: 20px;
    }

    .buy-buttons-container #pre_reserve, .buy-buttons-container #reserve {
        margin-right: 0 !important;

    }

    .sidenav-wrapper, .small-sidenav {
        top: unset !important;
        right: unset !important;
        bottom: 10px !important;
        transform: unset !important;
        left: 0;
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 8px !important;
        border-bottom-right-radius: 8px !important;
    }

    .heading-news {
        font-size: 26px;
    }

    #carouselMobile .carousel-control-prev {
        left: -20px;
    }

    .repertoire-carousel-footer .container .row {
        text-align: center;
    }

    #carouselMobile .carousel-control-next {
        right: -20px;
    }

    #gray-calendar {
        display: none;
    }

    #news {
        display: none;
    }

    #partners {
        display: none;
    }

    #partners-mobile {
        display: block !important;
    }

    #news-mobile {
        display: block !important;
    }

    #ticket-offices .col-md-12 {
        margin-top: 30px;
    }

    /*#carouselMainSlider .main-carousel {*/
    /*    height: 825px !important;*/
    /*}*/

    /*.repertoire-carousel-footer-banner {*/
    /*    height: 195px;*/
    /*}*/


    .repertoire-page-img {
        margin-bottom: 20px;
    }

    .season {
        margin: auto;
        right: auto;
        top: auto;
        bottom: 30px;
        position: relative;

    }

    .repertoire-name-author {
        padding-top: 0 !important;
    }

    .repertoire-team {
        text-align: center;
    }

    .repertoire-carousel-footer span{
        margin-left: auto !important;
        width: 100%;
        padding-right: 5px;
        padding-left: 8px;
    }

    .external-links div {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .news-single-image img{
        margin-right: 3rem !important;
    }

    .see-more-div {
        text-align: right;
        padding-right: 40px !important;
        padding-bottom: 30px;
        padding-top: 20px;
    }

    .min-height-text {
        min-height: 100px;
    }

    .front-end .img-wrapper-mobile {
        float: none !important;
        text-align: center;
    }

    .front-end .buy-button-reservation {
        text-align: center !important;
    }

    .front-end .recaptcha-block-reservation {
        text-align: center !important;
    }

    .front-end .buy-button-reservation button {
        margin-left: 0 !important;
        margin-top: 10px;
    }

}


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

    .profile-mobile {
        line-height: 35px;
        margin-bottom: 10px;

    }

    .search-div {
        margin-top: 22px;
    }

    .mobile-navigation {
        margin-top: 5px;
    }

}

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

    .mobile-navigation .navbar-toggler {
        width: 120px !important;
    }

    .text-slider .text-slider-margin {
        margin-left: 10px !important;
    }



}

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

    .front-end .upcoming-prices-container{
        padding-left: 15px !important;
    }


    #carouselRepertoireMobile {
        margin-left: 70px;
        margin-right: 70px;
    }

    .name-slider {
        font-size: 27px;
    }

    #carouselRepertoireMobile .carousel-control-next, #carouselRepertoireMobile .carousel-control-prev{
        width: 40px;
    }

    #carouselRepertoireMobile .carousel-control-next {
        right: -61px;
    }

    #carouselRepertoireMobile .carousel-control-prev {
        left: -61px;
    }

    /*#carouselMainSlider .main-carousel {*/
    /*    height: 900px !important;*/
    /*}*/

    /*#carouselMainSliderMobile .main-carousel {*/
    /*    height: 900px !important;*/
    /*}*/

    /*.repertoire-carousel-footer {*/
    /*    height: 270px !important;*/
    /*}*/

    .repertoire-name-author h5,p {
        font-size: 16px;
    }

    .front-end .wrapper-director {
        padding: 15px !important;
    }

    .page-sections {
        text-align: center;
    }

}

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

    .program-button{
        margin-bottom: 30px !important;
        margin-top: 20px;
    }

}

@media only screen and (max-width: 475px){
    .heading-repertoire{
        font-size: 26px ;
    }
    .repertoire-name-author h5, p, .mobile-repertoire-season{
        font-size: 16px ;
    }

    .name-slider {
        font-size: 26px;
    }

}

@media only screen and (max-width: 435px) {
    #GDPRForm {
        height: 100px;
    }
}

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



    .news-single-image img {
        width: 330px;
        height: 220px;

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

    .div-img-program {
        text-align: center;
        margin-bottom: 13px;
        padding-left: 0 !important;
    }

    #carouselMainSlider {
        display: none;
    }

    #carouselMainSliderMobile {
        display: block !important;
    }

    .name-slider {
        font-size: 22px;
    }

    .desc-slider-wrapper {
        max-height: 120px !important;
    }

    .buy-button-tickets, .call-button {
        width: 230px !important;
    }

    .award-name {
        font-size: 30px !important;
    }

}

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

    .search-div {
        padding-right: 0 !important;
    }

    .profile-mobile {
        padding-left: 0 !important;
        padding-right: 5px !important;
    }

    .mobile-navigation .navbar-toggler {
        width: 98px !important;
        font-size: 13px;
        height: 41px;
    }
    .mobile-navigation{
        max-width: 98px;
    }
    .navbar-label {
        font-size: 14px;
    }

    .name-slider {
        font-size: 22px;
    }

    .program-page {
        margin-left: 10px;
    }

    .dark-red-label-program {
        padding: 10px;
    }

}

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

    .row .mobile-repertoire-season {
        margin-top: 5px !important;
        font-size: 12px !important;
    }

    .repertoire-name-author h5, p {
        font-size: 14px;
    }

}

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

    .duration-slider {
        display: none;
    }

    .desc-slider-wrapper {
        max-height: 65px !important;
    }

}


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

    .news-single-image img {
        width: 290px;
        height: 190px;

    }

}

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

    #partners-mobile img {
        width: 78px !important;
    }

}
