.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #f5f5f7;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media only screen and (max-width: 1180px) {
    .slider-wrapper::after {
        position: absolute;
        bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .04);
        z-index: 1;
        content: "";
        width: 100%;
        height: 0;
    }
}

.slider-inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    -moz-transition: -moz-transform 0.5s ease-in-out;
    -o-transition: -o-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    width: 100%;
    min-height: 300px;
    display: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-slide.background-gradient {
    background: #f5f5f5;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#eeeeee));
    background: -webkit-linear-gradient(top, #f5f5f5, #eeeeee);
    background: -moz-linear-gradient(top, #f5f5f5, #eeeeee);
    background: -o-linear-gradient(top, #f5f5f5, #eeeeee);
    background: linear-gradient(to bottom, #f5f5f5, #eeeeee);
}

.slider-slide.background-blur {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-slide.active {
    display: block;
}

.slider-slide-inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    height: 100%;
    min-height: 300px;
    max-width: 1380px;
    margin: 0 auto;
}

.no-backdropfilter .slider-slide-inner {
    background: rgba(255, 255, 255, 0.92);
}

.slider-image-wrapper {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    width: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
}

@media only screen and (min-width:1024px) {
    .slider-image-wrapper {
        -webkit-box-pack: end;
        -moz-box-pack: end;
        box-pack: end;
        padding: 0 20px 0 0;
    }
}

.slider-image-wrapper img {
    max-width: 300px;
    width: auto;
    height: auto;
    display: block;
}

.editor-icons-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
}

.editor-icons-wrapper .editor-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #ffffff;
    margin: 0 8px;
    display: block;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-text-wrapper {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    width: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
}

@media only screen and (max-width:1024px) {
    .slider-text-wrapper {
        padding: 0 10% 0 0;
    }
}

@media only screen and (min-width:1024px) {
    .slider-text-wrapper {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        box-pack: start;
        padding: 0 20px 0 20px;
    }
}

.slider-text-content {
    max-width: 100%;
    text-align: left;
}

.slider-title {
    color: #1d1d1f;
    margin-bottom: 10px;
}

.slider-description {
    color: #1d1d1f;
    margin-bottom: 20px;
}

.slider-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    background: #0071e3;
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.slider-button:hover {
    background: #0077ed;
    text-decoration: none;
}

.slider-button:active {
    background: #0062c1;
    text-decoration: none;
}

.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    z-index: 5;
    height: 12px;
}

.slider-control-item {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    width: 24px;
    height: 12px;
    position: relative;
    cursor: pointer;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
    padding: 0;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(0, 0, 0, 0.33);
}

.slider-control-item.active .slider-dot {
    display: none;
}

.slider-progress-item {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    background: rgba(0, 0, 0, 0.05);
    display: none;
    position: relative;
    overflow: hidden;
}

.slider-control-item.active .slider-progress-item {
    display: block;
}

.slider-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: rgba(0, 0, 0, 0.05);
    -webkit-transition: width 0.3s linear;
    -moz-transition: width 0.3s linear;
    -o-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.slider-image-placeholder {
    font-size: 64px;
    color: #ccc;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    min-height: 200px;
}

@media (max-width: 720px) {
    .slider-slide-inner {
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
        min-height: auto;
    }


    .slider-image-wrapper {
        width: 100%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        box-flex: 0;
    }

    .slider-image-wrapper img {
        max-height: 160px;
    }

    .slider-text-wrapper {
        width: 100%;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        box-flex: 0;
        padding: 20px 0 30px 0;
    }

    .slider-text-content {
        text-align: center;
    }

    .slider-description {
        display: none;
    }

    .editor-icons-wrapper .editor-icon {
        width: 60px;
        height: 60px;
        margin: 0 6px;
    }

    .slider-controls {
        bottom: 12px;
        height: 10px;
    }

    .slider-control-item {
        width: 20px;
        height: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-progress-item {
        width: 20px;
        height: 3px;
    }
}

@media (max-width: 720px) {
    .slider-slide {
        min-height: auto;
    }

    .slider-slide-inner {
        min-height: auto;
    }

    .slider-image-wrapper {
        padding-top: 30px;
    }

    .slider-title {
        margin-bottom: 10px;
    }

    .slider-description {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .slider-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .editor-icons-wrapper .editor-icon {
        width: 50px;
        height: 50px;
        margin: 0 5px;
    }

    .slider-controls {
        bottom: 10px;
        height: 8px;
    }

    .slider-control-item {
        width: 16px;
        height: 8px;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }

    .slider-progress-item {
        width: 16px;
        height: 2px;
    }
}

.slider-controls {
    left: 50%;
    width: auto;
}

.no-flexbox .slider-controls {
    display: block;
    text-align: center;
    height: auto;
}

.no-flexbox .slider-control-item {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 4px;
    vertical-align: middle;
    cursor: pointer;
}

.no-flexbox .slider-dot {
    display: inline-block;
}

.no-flexbox .slider-control-item.active .slider-dot {
    display: none;
}

.no-flexbox .slider-progress-item {
    display: none;
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.no-flexbox .slider-control-item.active .slider-progress-item {
    display: inline-block;
}

.no-flexbox .slider-slide-inner {
    display: table;
    width: 100%;
}

.no-flexbox .slider-image-wrapper,
.no-flexbox .slider-text-wrapper {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

.slider-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}