/* County Marquees update */
.featherlight .featherlight-content{
    overflow: visible;
    border:none;
    padding:0;
    margin-left: 80px;
    margin-right: 80px;
}
.featherlight-iframe .featherlight-content {
    position: relative;
    width: 80vw;
    max-width: 80vw;
    /*padding-top: 56.25%;*/
    padding-top: calc(80vw / 1.777);
    border:none;
    background: none;
}
.featherlight-iframe .featherlight-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.featherlight .featherlight-close-icon {
    top: -25px;
    right: -25px;
    background: unset;
    color:#FFFFFF;
}

.featherlight-content .featherlight-previous,
.featherlight-content .featherlight-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    margin: 0;
    display: inline-block;
    font-size: 0;
    padding: 0;
    height: 56px;
    width: 56px;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    border-color: var(--steel-light-1);
    background-color: var(--steel-light-1);
    cursor: pointer;
    transition: ease all 0.3s;
}

.featherlight-content .featherlight-previous:hover,
.featherlight-content .featherlight-next:hover {
    border-color: var(--steel-light-2);
    background-color: var(--steel-light-2);
    background-image: url('slider/assets/black-arrow.svg');
}
.featherlight-content .featherlight-previous:focus,
.featherlight-content .featherlight-next:focus {
    outline: none;
}

.featherlight-content .featherlight-previous {
    left: 15%;
    right: unset;
    background-image: url('slider/assets/arrow.svg');
    transform: scaleX(-1) translateY(-50%);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.featherlight-content .featherlight-next {
    left: unset;
    right: 15%;
    background-image: url('slider/assets/arrow.svg');
}
.featherlight .featherlight-image {
    margin: 0 auto;
}
@media(max-width: 1366.98px){
    .featherlight-content .featherlight-next {
        right: 2%;
    }
    .featherlight-content .featherlight-previous {
        left: 2%;
    }
}
@media(max-width: 1199.98px){
    .featherlight-content .featherlight-next {
        right: 10px;
    }
    .featherlight-content .featherlight-previous {
        left: 10px;
    }
}
@media(max-width: 575px) {
    .featherlight .featherlight-content{
        margin-left: 30px;
        margin-right: 30px;
    }
    .featherlight-content .featherlight-previous,
    .featherlight-content .featherlight-next {
        width:26px;
        height: 26px;
    }
}