/* BEGIN Light */

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-900.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-900italic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}


@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-700italic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-500italic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}


@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-300italic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-italic.ttf") format("truetype");
    font-style: italic;
}

@font-face {
    font-family: 'Rubik';
    src: url("/Styles/fonts/Rubik/Rubik-regular.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'Rubik','Calibri' !important;
    font-weight: 300 !important;
    background-image: url(/Images/login_back.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0% center;
    overflow: hidden;
}

input[datapassword="password"] {
    font-family: 'text-security-disc';
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}


.container-fluid {
    height: 100%;
}

.topMargin {
    margin-top: 100px;
}

form {
    padding: 0px 15px;
}

.tileBlack {
    font-size: 24px;
    color: #fff;
    padding: 15px 12px;
    background-color: rgba(0,0,0,0.45);
    height: 150px;
    border-radius: 3px;
}

.tileWhite {
    font-size: 24px;
    color: #fff;
    padding: 15px 12px;
    background-color: rgba(255,255,255,0.4);
    height: 150px;
    border-radius: 3px;
}

.loader {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(55,116,166,0.8);
    /*-webkit-animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    -moz-animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    -o-animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    animation-fill-mode: forwards;*/
}

@keyframes moveUp {
    from {
        right: -650px;
    }

    to {
        right: 0;
    }
}

.loginDiv {
    width: 100%;
    opacity: 0;
    position: absolute;
    bottom: 45%;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.letters {
    -webkit-animation: letterOpacity 1s linear 1;
    -moz-animation: letterOpacity 1s linear 1;
    -o-animation: letterOpacity 1s linear 1;
    animation: letterOpacity 1s linear 1;
    animation-fill-mode: forwards;
}


@-webkit-keyframes letterOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes letterOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes letterOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes letterOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.rippleButton {
    width: calc(100% - 6em);
    height: 45px;
    border-radius: 20px;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid transparent;
    color: #fff;
    font-size: 18px;
    -webkit-transition: width 0.2s; /* Safari */
    transition: width 0.2s;
    margin-top: 50px;
}

    .rippleButton.active {
        width: 45px;
        height: 45px;
        border-radius: 30px;
        color: transparent;
        -webkit-animation: fillPage 1s linear 1;
        -moz-animation: fillPage 1s linear 1;
        -o-animation: fillPage 1s linear 1;
        animation: fillPage 1s linear 1;
        animation-fill-mode: forwards;
        animation-delay: 2s;
        background-color: rgba(64,64,64,1);
    }


@-webkit-keyframes fillPage {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(300);
    }
}

@-moz-keyframes fillPage {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(300);
    }
}

@-o-keyframes fillPage {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(300);
    }
}

@keyframes fillPage {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(300);
    }
}


.logoImage {
    margin-top: 50px;
}

/*   Textbox styles    */


input {
    font-size: 150%;
}

.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: calc(100% - 6em);
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding-top: 2.8em;
    padding-bottom: 0.2em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    -webkit-appearance: none; /* for box shadows to show on iOS */
}

    .input__field:focus {
        outline: none;
    }

.input__label {
    display: inline-block;
    float: right;
    padding: 0.2em 1em;
    width: 40%;
    color: #e1e1e1;
    font-weight: 300;
    font-size: 100.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.input--hoshi {
    overflow: hidden;
    position: relative;
}

.input__field--hoshi {
    margin-top: 0.3em;
    width: 100%;
    background: transparent;
    color: #fff !important;
    border-bottom: 1px solid #eee;
}

.input__label--hoshi {
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 2.2em 0.25em;
    width: 100%;
    height: calc(100% - 3.5em);
    text-align: left;
    pointer-events: none;
}

.input__label-content--hoshi {
    position: absolute;
    top: 2px;
    left: 0px;
}

.input__label--hoshi::before,
.input__label--hoshi::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    /*border-bottom: 1px solid #e1e1e1;*/
}

input.error .input__label--hoshi::before,
input.error .input__label--hoshi::after {
    border-bottom: 1px solid red;
}



.input__label--hoshi::after {
    margin-top: 2px;
    /*border-bottom: 2px solid #e1e1e1;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;*/
}

.input__label--hoshi-color-1::after {
    border-color: #e1e1e1;
}

.input__label--hoshi-color-2::after {
    border-color: #e1e1e1;
}


.input__field--hoshi:focus + .input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
    /*-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);*/
}

/*.input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
    -webkit-animation: anim-1 0.3s forwards;
    animation: anim-1 0.3s forwards;
}*/

@-webkit-keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -40%, 0);
        transform: translate3d(-1em, -40%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
}

@keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -140%, 0);
        transform: translate3d(-1em, -140%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -140%, 0);
        transform: translate3d(0, -140%, 0);
    }
}

.loginFooter {
    position: fixed;
    bottom: 5px;
    right: 5px;
    left: 5px;
    color: #000;
    font-size: 14px;
    width: 99%;
    font-style: italic;
    font-weight: 400;
}

.loginFields {
    margin-top: 10%;
}

.noPadding {
    padding: 0;
}

.validation-summary-errors {
    padding: 10px;
    background-color: rgba(255,0,0,0.4);
    width: 100%;
    border: 1px solid #fff;
}

    .validation-summary-errors ul {
        list-style: none;
        margin-bottom: 0 !important;
    }

        .validation-summary-errors ul li {
            font-size: 18px;
            color: white;
            word-break: keep-all;
            word-wrap: normal;
        }

@media (min-width: 300px) and (max-width: 1400px) {
    .logoImage {
        width: 250px;
        max-height: 140px;
    }
}

@media (min-width: 1400px) {
    .logoImage {
        width: 250px;
        max-height: 140px;
    }
}



/* Error Pages Styles */

.errorPageInfo {
    padding: 30px 20px;
    width: 80%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 30%;
    background-color: rgba(174,51,54,0.8);
    -webkit-animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    -moz-animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    -o-animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    animation: moveUp 1s cubic-bezier(0.075, 0.82, 0.165, 1) 1;
    animation-fill-mode: forwards;
}

.infoIcon {
    font-weight: 300;
    font-size: 80px;
    color: #fff;
}

p, a, a:hover, label {
    color: #fff;
}

a {
    text-decoration: underline;
}

.font200 {
    font-size: 200%;
}

.nobold {
    font-weight: 300;
}

.reset-password-container .form-group label {
    width: 100%;
    text-align: left;
    color: #e1e1e1;
    font-weight: 300;
    font-size: 130.25%;
}

.reset-password-container .form-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #bdbdbd;
    width: 100%;
    color: #fff;
    height: 2.1rem;
    font-size: 1rem;
    box-sizing: content-box;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}

.reset-password-container .form-group .field-validation-error {
    color: rgba(255, 255, 255, 0.65);
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.reset-password-header {
    margin-bottom: 25px;
    border: 1px solid #fff;
    /*background: rgba(255, 255, 255, 0.12156862745098039);*/
    color: #fff;
    padding: 10px;
    font-size: 16px;
}

.footerBrowser {
    text-align: left;
    padding-left: 10px;
}

.copyRight {
    padding-right: 10px !important;
    text-align: right;
}

.showpassword {
    position: absolute;
    top: 40px;
    right: 0;
    display: block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    right: -13px;
}

.passwordEye {
    height: 23px;
}

#pw-plain-text::-ms-clear {
    display: none;
}

.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}
