/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    -webkit-overflow-scrolling: touch;
}
body {

}

.alert-box {
    border-radius: 19px;
    padding: 35px 50px;
    box-shadow: 0 2px 40px rgba(0,0,0,.1);
    background: #fff;
    width: 100%;
    max-width: 620px;
    position: fixed;
    z-index: 3;
}

.alert-box.regular-alert.with-border {
    border: 1px solid #AEEBFF;
}

.alert-box.success-alert.with-border {
    border: 1px solid #B4E7C6;
}

.alert-box.warning-alert.with-border {
    border: 1px solid #FFDDA9;
}

.alert-box.error-alert.with-border {
    border: 1px solid #FFD6CF;
}

.alert-box.top-left {
    top: 50px;
    left: 50px;
}

.alert-box.top-right {
    top: 50px;
    right: 50px;
}

.alert-box.bottom-left {
    bottom: 50px;
    left: 50px;
}

.alert-box.bottom-right {
    bottom: 50px;
    right: 50px;
}





.alert-box-wrapper {
    position: relative;
}

.alert-box-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: -35px;
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
}

.alert-box.regular-alert .alert-box-wrapper:before {
    background-image: url("../images/Info-Blue.svg");
}

.alert-box.success-alert .alert-box-wrapper:before {
    background-image: url("../images/Info-Green.svg");
}

.alert-box.warning-alert .alert-box-wrapper:before {
    background-image: url("../images/Info-Yellow.svg");
}

.alert-box.error-alert .alert-box-wrapper:before {
    background-image: url("../images/Info-Red.svg");
}

.close-button {
    position: absolute;
    top: 5px;
    right: -25px;
    width: 13px;
    background: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
}

.alert-icon {
    position: absolute;
    top: 0;
    left: -35px;
}

.alert-box-wrapper h2, .alert-box-wrapper p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.alert-box-wrapper h2 {
    font-family: "Circular-Std-Medium";
    margin-bottom: 12px;
}

.alert-box-wrapper p + p {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .alert-box {
        padding: 25px 35px;
        max-width: 500px;
    }
    .alert-box-wrapper:before {
        top: 3px;
        left: -25px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 767px) {
    .alert-box {
        left: 20px !important;
        right: 20px !important;
        width: calc(100% - 40px);
    }

    .alert-box.top-left {
        top: 20px;
    }

    .alert-box.top-right {
        top: 20px;
    }

    .alert-box.bottom-left {
        bottom: 20px;
    }

    .alert-box.bottom-right {
        bottom: 20px;
    }


}