/* Glider CSS */

.section-glider.section-inner {
    max-width: 100% !important;
}

.glider-wpr {
    overflow: hidden;
    padding: 0;
    margin: 64px 0 64px 0;
}

@media (max-width: 639px) {
    .glider-wpr {
        margin: 48px 0 48px 0;
    }
}

.glider-wpr .glider-skip {
    font-size: 1.4rem;
    position: absolute;
    left: -999em;
    background-color: #fafafb;
    border: 1px solid #fff;
    box-shadow: inset 0 0 0 1px #c4c8cc;
    padding: 8px 16px;
}

.glider-wpr .glider-skip:focus {
    position: absolute;
    left: 0;
    padding: 8px 16px;
}

.glider-wpr .glider-track {
    overflow-x: scroll !important;
    display: flex;
    /*    margin: 0 -16px;*/
    margin: 0;
    padding: 0 0 30px 0;
}

.glider-wpr .glider-track>div {
    margin: 0 16px;
}

.glider-wpr .glider-track>div:last-child {
    margin-right: 0;
}

.glider-wpr .glider-track>div:first-child {
    margin-left: 0;
}

.glider-wpr .glider-item {
    min-width: 570px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 639px) {
    .glider-wpr .glider-item {
        min-width: calc(100% - 32px);
    }
}

@media screen and (min-width: 1200px) {
    .glider-item:first-of-type {
        margin-left: calc((100% - 1200px)/2) !important;
    }

    .glider-item:last-of-type {
        margin-right: calc((100% - 1200px)/2) !important;
    }
}

@media screen and (max-width: 1200px) {
    .glider-item:first-of-type {
        margin-left: 16px !important;
    }

    .glider-item:last-of-type {
        margin-right: 16px !important;
    }
}

/* custom glider scrollbar */
.glider-wpr .glider-track {
    scrollbar-width: none;
}

.glider-wpr .glider-track::-webkit-scrollbar {
    display: none;
}

.glider-wpr .glider-scrollbar {
    height: 30px;
    cursor: pointer;
    position: relative;
}

@media screen and (min-width: 1200px) {
    .glider-wpr .glider-scrollbar {
        width: 1200px;
        margin-left: calc((100% - 1200px)/2);
        margin-right: calc((100% - 1200px)/2);
    }
}

@media screen and (max-width: 1200px) {
    .glider-wpr .glider-scrollbar {
        width: calc(100% - 16px);
        margin-left: 16px;
        margin-right: 0px;
    }
}

.glider-wpr .glider-scrollbar-track {
    background-color: #D6D6D6;
    height: 3px;
    width: 100%;
    top: 13.5px;
    position: absolute;
}

.glider-wpr .glider-scrollbar-thumb {
    position: absolute;
    top: -13.5px;
    height: 30px;
    width: 30%;
    cursor: grab;
}

.glider-wpr .glider-scrollbar-thumb:after {
    content: "";
    background-color: #006AC3;
    position: absolute;
    top: 13.5px;
    height: 3px;
    width: 100%;
}