/* book slideShow */

.main__header__bookSlider {
    height: 430px;
    background-color: #b5dddf;
    position: relative;
    padding-bottom: 20px;
}

.main__header__newsSlider {
    min-height: 430px;
}

.main__bookSlider__content {
    height: 80%;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main__bookSlider__content--active {
    display: flex;
}

.main__bookSlider__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main__bookSlider__image {
    width: 170px;
    height: 270px;
}

.main__bookSlider__buttons {
    position: absolute;
    top: 180px;
    border: none;
    padding: 20px;
    outline: none;
    font-size: 36px;
    color: white;
    background-color: transparent;
    transition: all .3s linear;
}

.main__bookSlider__buttons:hover {
    color: black;
}

.main__bookSlider__buttons--after {
    right: 10px;
}

.main__bookSlider__buttons--before {
    left: 10px;
}

.main__bookSlider__compilations__link {
    color: grey;
    font-size: 24px;
    transition: all .3s linear;
    transform: rotate(180deg);
}

.main__bookSlider__text{
    width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main__bookSlider__compilations__link:hover {
    color: black;
}

.main__bookSlider__dots {
    position: absolute;
    bottom: 20px;
    right: 0;
}

.main__bookSlider__dot {
    border: 1px solid lightgrey;
    outline: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;
    transition: all .2s linear;
}

.main__bookSlider__dot:hover {
    border: 2px solid #333;
}

.main__bookSlider__dot--active {
    background-color: gray;
}

.main__bookSlider__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
}

.main__bookSlider__link:hover {
    color: initial;
}


/* news slideShow */

.main__header__newsSlider {
    background-image: url("/newAssets/images/newsSliderBack.png");
}

.main__newsSlider__active__image {
    width: 100%;
    height: 220px;
}

.main__newsSlider__active__link {
    position: relative;
}

.main__newsSlider__active__info {
    position: absolute;
    bottom: -80px;
    color: white;
    font-size: 14px;
    padding: 10px 20px 10px 10px;
    background-color: #333;
    opacity: .8;
}

.main__newsSlider__item__image {
    width: 100%;
    height: 111px;
}

.main__newsSlider__item--active {
    border: 2px solid #ccae7c;
}

.main__newsSlider__item {
    cursor: pointer;
}