:root {
    --lightblue: #00b9f0;
    --blue: #012e6f;
    --white: #fff;
    --gray1: #333;

}

.posterImage {
    /* width: 100%;
    height: 100%; */
    object-fit: fill;
}

.modal-content {
    background-color: transparent;
    border: none;
}


/* tabs */

.group::after,
.tabBlock-tabs::after {
    clear: both;
    content: "";
    display: table;
}


p,
ol,
ul {
    margin-bottom: 1.25rem;
    margin-top: 0;
}

ol,
ul {
    padding: 0;
    margin-left: 1.25rem;
}

.unstyledList,
.tabBlock-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tabBlock {
    margin: 0 0 2.5rem;
}

.tabBlock-tab {
    background-color: #fff;
    border-color: #d8d8d8;
    border-left-style: solid;
    border-top: solid;
    border-width: 2px;
    color: var(--lightblue);
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    float: left;
    padding: 0.625rem 1.25rem;
    position: relative;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.tabBlock-tab:last-of-type {
    border-right-style: solid;
}

.tabBlock-tab::before,
.tabBlock-tab::after {
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.tabBlock-tab::before {
    background-color: var(--lightblue);
    left: -2px;
    right: -2px;
    top: -2px;
}

.tabBlock-tab::after {
    background-color: transparent;
    bottom: -2px;
    left: 0;
    right: 0;
}

@media screen and (min-width: 700px) {
    .tabBlock-tab {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.tabBlock-tab.is-active {
    position: relative;
    color: var(--blue);
    z-index: 1;
}

.tabBlock-tab.is-active::before {
    background-color: var(--blue);
}

.tabBlock-tab.is-active::after {
    background-color: #fff;
}

.tabBlock-content {
    background-color: #fff;
    border: 2px solid #d8d8d8;
    padding: 1.25rem;
}

.tabBlock-pane> :last-child {
    margin-bottom: 0;
}

/* end */


.div-sticky-class {
    position: -webkit-sticky;
    position: sticky;
    top: 35px;
    padding-top: 40px;
    margin-top: 10px;
    font-size: 20px;
}


/* slick css */


span.control_prev,
span.control_next {
    position: absolute;
    top: 40%;
    z-index: 999;
    display: block;
    padding: 4% 3%;
    width: auto;
    height: auto;
    background: #dadada;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.5;
    cursor: pointer;
}

span.control_prev:hover,

span.control_next:hover {
    opacity: 0.3;
    -webkit-transition: all 0.2s ease;
}

span.control_prev {
    border-radius: 0 2px 2px 0;
}

span.control_next {
    right: 0;
    border-radius: 2px 0 0 2px;
}

/* end
 */