﻿.alert-container {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 10000;
    width: 300px;
}

.panel-overlay-wrap {
    position: relative;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.75);
    text-align: center;
    z-index: 795;
}

    .panel-overlay:before {
        content: "";
        display: inline-block;
        height: 100%;
        width: 1px;
        vertical-align: middle;
        margin-left: -5px;
    }

.panel-overlay-title {
    margin: 10px 0 5px;
}

.panel-overlay-icon {
    display: inline-block;
    vertical-align: middle;
}

.panel-overlay-content {
    display: inline-block;
    vertical-align: middle;
}

.bg-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .8;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.slider-container {
    position: relative;
    border-radius: 40px;
    background-color: #4da6ff;
    height: 40px;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container-active {
    background-color: #F5F7F5;
}

.slider {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: white;
    border-radius: inherit;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

    .slider:hover {
        background-color: #0066cc;
        color: white;
    }

    .slider:active {
        background-color: #0066cc;
        color: white;
    }


.slider-mask {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: inherit;
    border-radius: inherit;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, #0066cc 0%, #F5F7F5 100%);
}

.slider-text {
    color: white;
    font-size: 14px;
    text-align: center;
}

.slider-text-active {
    opacity: 0;
}
