﻿/* ---------------------- */
/* DEV STYLES GO HERE */
/* ---------------------- */

/* Dev Styles */

.hide {
    display: none;
}

.hidden {
    display: none !important;
    visibility: hidden;
}


/* Modal */

.modal {
    display: none;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.is-open {
        display: block;
    }

.modal-dialog {
    position: relative;
    width: 98%;
    margin: 1%;
    color: #333;
}

@media (min-width: 45em) {
    .modal-dialog {
        width: 40em;
        margin: 2em auto;
    }
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}

.modal-header {
    padding: 1em 1em 2em 1em;
    border-bottom: 1px solid #dedede;
    min-height: 45px;
}

    .modal-header .close {
        float: right;
        margin: 0;
        height: auto;
        font-size: 20px;
        font-size: 2rem;
        line-height: 1rem;
        color: #333333;
    }

.modal-title {
    margin: 0;
    line-height: 1.7;
}

.modal-body {
    position: relative;
    padding: 1.5em 1em .5em;
}

.modal-footer {
    margin-top: 1em;
    padding: 1em;
    text-align: right;
    border-top: 1px solid #dedede;
}

.modal-lg {
    background-color: rgba(150, 150, 150, 0.40);
}

@media (min-width: 65em) {
    .modal-lg .modal-dialog {
        width: 60em;
    }
}

@media (min-width: 45em) {
    .modal-sm .modal-dialog {
        width: 20em;
    }
}

.js-modal-close {
    display: none;
}

.js-modal-open {
    display: block;
    clear: both;
}

.js-popup-open {
    display: block;
    z-index: 1000;
    padding-top: 90px;
    padding-left: 5px;
    padding-right: 5px;
}

.ajax-loader-gif-frame {
    transition: left 0s .3s;
    border-radius: 1.0rem;
    background-color: rgba(255, 255, 255, 0.9);
    height: 11rem;
    width: 11rem;
    border: 1px solid rgba(100, 100, 100, 0.5);
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -5.5rem;
}

.layout-ajax-loader-overlay {
    position: absolute;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 250;
    visibility: visible;
    opacity: 1;
    transition: visibility, opacity;
    transition-duration: 0s, 0.5s;
    transition-delay: 0s, 0s;
}

.icon-ajax-loader-gif {
    background: url("../../../../../SandBox/img/loader.gif") no-repeat center;
    height: inherit;
    width: inherit;
    display: block;
}

.overlay-gif-away .ajax-loader-gif-frame {
    transition: left 0s 0s;
    left: 150%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Notification Message */
/* PC */
@media only screen and (min-width:992px) {
    div.notification-message-wrapper {
        position: relative;
    }

        div .notification-message-wrapper > div.notification-message {
            padding: 2rem 0 0 0;
            font-size: 14px;
            font-weight: 400;
            line-height: normal;
        }

            div.notification-message-wrapper >
            div.notification-message > .message-box >
            .icon {
                display: none;
            }
}

div.notification-message-wrapper >
div.notification-message > .message-box >
.icon {
    height: 2.4rem;
    width: 2.4rem;
    background-size: 3.2rem 3.2rem;
}

/* Tablet*/
@media only screen and (min-width:768px) and (max-width: 992px) {
    div.notification-message-wrapper {
        position: relative;
    }

        div.notification-message-wrapper > div.notification-message {
            padding: 0rem 0 0 0;
            font-size: 1.25rem;
        }

            div.notification-message-wrapper >
            div.notification-message > .message-box >
            .icon {
                display: none;
            }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    div .notification-message-wrapper > div.notification-message {
        font-size: 1.25rem;
    }
}

.herohead-wrapper {
    position: relative;
    padding-top: 7rem;
    background-color: #fff;
    padding-bottom: 5px;
}

.herohead {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}