section.schedule{
    background:var(--fb-color);
    padding-bottom:5rem;
}
section.schedule .schedule-download{
    padding:0.5rem 1rem;
    border-radius: 10px;
    border:solid 2px var(--blue-color);
    width:auto;
    display: flex;
    background: transparent;
    align-items: center;
}
section.schedule .schedule-download svg{
    width:2.5rem;
    height:2.5rem;
    margin-right:10px;
}
section.schedule .schedule-download svg path{
    fill:var(--blue-color);
}
section.schedule .schedule-download-text{
    line-height: 1.1;
    text-align: left;
}
section.schedule .schedule-download-text b{
    font-size:1.2rem;
    display: block;
    color:var(--blue-color);
}
section.schedule .schedule-download-text small{
    color:var(--color-6);
    font-size:0.7rem;
}
section.schedule .schedule-download:hover{
    background: var(--hover-red);
    border-color: var(--hover-red);
}
section.schedule .schedule-download:hover svg path{
    fill:var(--white-color);
}
section.schedule .schedule-download:hover .schedule-download-text b,
section.schedule .schedule-download:hover .schedule-download-text small{
    color:var(--white-color);
}

section.schedule .schedule-control{
    display:inline-block;
}
section.schedule .schedule-control .schedule-control-days{
    display: inline-flex;
    background:#e3e3e4;
    border-radius:15px;
    margin-bottom:20px;
}
section.schedule .schedule-control .day{
    text-align:left;
    padding:1rem 3.5rem;
    line-height: 1.2;
    font-size:1.1rem;
    cursor:pointer;
    color:var(--blue-color);
}
section.schedule .schedule-control .day:hover{
    background:rgba(255,255,255,.3);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1);
    border-radius:15px;
}
section.schedule .schedule-control .day.active{
    border-radius:15px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.3);
    background: -moz-linear-gradient(top,  rgba(212,234,246,1) 0%, rgba(160,210,229,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    background: linear-gradient(to bottom,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4eaf6', endColorstr='#a0d2e5',GradientType=0 );
}
section.schedule .schedule-control .day b{
    display: block;
    font-size:1.3rem;
}

section.schedule .schedule-control-rooms{
    background:var(--white-color);
    margin: 20px auto;
    display: inline-flex;
    border-radius:15px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1);
}
section.schedule .room{
    padding:0.8rem 3.5rem;
    font-weight: bold;
    font-size:1.3rem;
    color:var(--blue-color);
    cursor: pointer;
}
section.schedule .room:hover{
    border-radius:15px;
    background:rgba(160,210,229,0.2);
}
section.schedule .room.active{
    border-radius:15px;
    background: -moz-linear-gradient(top,  rgba(212,234,246,1) 0%, rgba(160,210,229,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    background: linear-gradient(to bottom,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4eaf6', endColorstr='#a0d2e5',GradientType=0 );
}

section.schedule .schedule-list{
    position: relative;
    margin:2rem 0;
    text-align: center;
}
section.schedule .schedule-list:after{
    position: absolute;
    width:2px;
    height:100%;
    content:'';
    top:0;
    left:50%;
    margin-left:-1px;
    background:var(--blue-color);
    opacity:0.5;
}
section.schedule .schedule-list:before{
    position: absolute;
    width:4px;
    height:25px;
    content:'';
    bottom:0;
    left:50%;
    z-index:2;
    margin-left:-2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(251,251,251,1) 65%,rgba(251,251,251,1) 100%);
}
section.schedule .schedule-item-group{
    background:var(--white-color);
    padding:2rem 3rem;
    box-shadow: 15px 20px 35px rgba(34, 98, 124, 0.2);
    border-radius: 15px;
    position: relative;
    z-index:3;
    margin-bottom:20px;
    color:var(--blue-color);
    text-align: center;
    display: inline-block;
    max-width:800px;
    width:100%;
}
section.schedule .schedule-item-group .title{
    margin:0.5rem 0;
    font-size:1.3rem;
    font-weight: bold;
}
section.schedule .schedule-item-group .time{
    font-size:1.1rem;
}

section.schedule .schedule-item{
    display:flex;
    align-items:center;
    margin:1.5rem 0;
    position: relative;
}
section.schedule .schedule-item:after{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    width:28px;
    height:28px;
    border-radius: 15px;
    background:var(--white-color);
    box-shadow: 0px 12px 15px rgba(34, 98, 124, 0.3);
    content:'';
    z-index:3;
}
section.schedule .schedule-item:before{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    width:20px;
    height:20px;
    border-radius: 10px;
    content:'';
    z-index:4;
    background: -moz-linear-gradient(top,  rgba(212,234,246,1) 0%, rgba(160,210,229,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    background: linear-gradient(to bottom,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4eaf6', endColorstr='#a0d2e5',GradientType=0 );
}
section.schedule .schedule-item .time{
    width:50%;
    padding:0 2.5rem;
    text-align:right;
    font-size:1.1rem;
    color:var(--blue-color);
}
section.schedule .schedule-item .text{
    width:50%;
    text-align: left;
    padding:0 2.5rem;
}

section.schedule .schedule-item.reverse{
    flex-direction: row-reverse;
}
section.schedule .schedule-item.reverse .time{
    text-align: left;
}
section.schedule .schedule-item.reverse .text{
    text-align:right;
}
section.schedule .schedule-item .text .inner{
    background:var(--white-color);
    padding:1rem 1.5rem;
    box-shadow: 15px 20px 35px rgba(34, 98, 124, 0.2);
    border-radius: 15px;
    position: relative;
    z-index:3;
    color:var(--blue-color);
    text-align: left;
    display: inline-block;
}
section.schedule .schedule-item .text .inner .title{
    font-size:1.1rem;
    font-weight: bold;
}



.play-btn{
    min-width:150px;
}
.play-btn svg path{
    fill:var(--bs-danger);
}
.play-btn:hover svg path{
    fill:var(--white-color);
}

@media (max-width: 520.98px) {

    section.schedule{
        padding:30px 0;
    }

    section.schedule .schedule-control .schedule-control-days{
        display:block;
    }

    section.schedule .schedule-control .day {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    section.schedule .schedule-control .day b {
        font-size: 1rem;
    }


    section.schedule .room {
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
    }

    section.schedule .schedule-item-group {
        padding:1rem 1.5rem;
        text-align: left;
    }
    section.schedule .schedule-item-group .time {
        font-size: 0.8rem;
    }
    section.schedule .schedule-item-group .title{
        font-size:1rem;
    }

    section.schedule .schedule-item{
        display:block;
    }

    section.schedule .schedule-item .text {
        padding-right:0;
        width:100%;
        padding:0;
    }
    section.schedule .schedule-item .text .inner {
        padding:0.5rem 1rem;
    }
    section.schedule .schedule-item .text .inner .title{
        font-size:1rem;
    }
    section.schedule .schedule-item .time {
        font-size: 1rem;
        padding:0;
        width:100%;
        padding-left: 50px;
        margin-bottom: 5px;
        text-align: left;
    }
    section.schedule .schedule-item:after {
        width:22px;
        height:22px;
        left:19px;
        top:0;
        transform: none;
    }
    section.schedule .schedule-item:before {
        width:16px;
        height:16px;
        left:22px;
        top:3px;
        transform: none;
    }

    section.schedule .schedule-item .text .inner {
        display:block;
    }

    section.schedule .schedule-item.reverse {
        flex-direction: row;
    }

    section.schedule .schedule-list:after{
        left:30px;
        margin:0;
    }
    section.schedule .schedule-list:before{
        left:30px;
        margin:0;
    }
}

@media (min-width: 521px) and (max-width: 758.98px) {
    section.schedule .schedule-control .day {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    section.schedule .schedule-control .day b {
        font-size: 1rem;
    }


    section.schedule .room {
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
    }

    section.schedule .schedule-item-group {
        padding:1rem 1.5rem;
        text-align: left;
    }
    section.schedule .schedule-item-group .time {
        font-size: 0.8rem;
    }
    section.schedule .schedule-item-group .title{
        font-size:1rem;
    }
    section.schedule .schedule-item .text {
        padding-right:0;
        width:calc(100% - 101px);
    }
    section.schedule .schedule-item .text .inner {
        padding:0.5rem 1rem;
    }
    section.schedule .schedule-item .text .inner .title{
        font-size:1rem;
    }
    section.schedule .schedule-item .time {
        font-size: 0.9rem;
        padding:0;
        width:90px;
        text-align: left;
    }
    section.schedule .schedule-item:after {
        width:22px;
        height:22px;
        left:89px;
        transform: translateY(-50%);
    }
    section.schedule .schedule-item:before {
        width:16px;
        height:16px;
        left:92px;
        transform: translateY(-50%);
    }

    section.schedule .schedule-item .text .inner {
        display:block;
    }

    section.schedule .schedule-item.reverse {
        flex-direction: row;
    }

    section.schedule .schedule-list:after{
        left:100px;
        margin:0;
    }
    section.schedule .schedule-list:before{
        left:100px;
        margin:0;
    }
}

@media (min-width: 759px) and (max-width: 991.98px) {
    section.schedule .schedule-control .day {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    section.schedule .schedule-control .day b {
        font-size: 1rem;
    }


    section.schedule .room {
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
    }

    section.schedule .schedule-item-group {
        padding:1rem 1.5rem;
    }
    section.schedule .schedule-item-group .time {
        font-size: 0.8rem;
    }
    section.schedule .schedule-item-group .title{
        font-size:1rem;
    }
    section.schedule .schedule-item:not(.reverse) .text {
        padding-right:0;
    }
    section.schedule .schedule-item.reverse .text{
        padding-left:0;
    }
    section.schedule .schedule-item .text .inner {
        padding:0.5rem 1rem;
    }
    section.schedule .schedule-item .text .inner .title{
        font-size:1rem;
    }
    section.schedule .schedule-item .time {
        font-size: 1rem;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    section.schedule .schedule-control .day {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    section.schedule .schedule-control .day b {
        font-size: 1.2rem;
    }

    section.partners .partner-box-text h4{
        font-size:1.5rem;
    }
    section.partners .partner-box-text {
        font-size:1.1rem;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    section.schedule .schedule-control .day {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    section.schedule .schedule-control .day b {
        font-size: 1.2rem;
    }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    section.schedule .schedule-control .day {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    section.schedule .schedule-control .day b {
        font-size: 1.2rem;
    }
}