﻿/* ** Definição de fontes ** */
@font-face {
    font-family: 'Abel';
    src: url('../fonts/Abel-Regular.ttf');
}



/* ************************* */

* {
    box-sizing: border-box;
}

/* Dimensionamento por colunas */
.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

[class*="col-"] {
    float: left;
    padding: 15px;
    /*border:1px solid red;*/
}

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */


/* General stylings */
html, body {
    height: 100%;
}

body {
    font-family: 'Abel';
    color: #595959;
    background: url("../images/Loja_Background.jpg") no-repeat;
    background-position: center;
    background-size: cover;
}

.btn-default {
    color: #EAE9E9;
    background-color: #2a5f95;
    border: 0.5px solid rgba(77, 148, 255,0.45);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px rgba(77, 148, 255, 0.6);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 9pt;
    padding-top: 5px;
    width:100%;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
}

    .btn-default:hover {
        font-weight: normal;
        background-color: #4c8ccd;
        color: #EAE9E9;
        text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
        transition: all 0.15s ease-in;
        -webkit-transition: all 0.15s ease-in;
        -moz-transition: all 0.15s ease-in;
        -o-transition: all 0.15s ease-in;
        -ms-transition: all 0.15s ease-in;
    }


input {
    padding: 4px;
}

    input:disabled {
        background-color: rgba(240,240,245,0.5);
    }


    input:-webkit-autofill {
        -webkit-animation-name: autofill;
        -webkit-animation-fill-mode: both;
    }

@-webkit-keyframes autofill {
    to {
        background: transparent;
    }
}


.link {
    color: #1B8FFC;
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
}

    .link:hover {
        color: #1B8FFC;
        text-decoration: none;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
        transition: all 0.25s ease-in;
        -webkit-transition: all 0.25s ease-in;
        -moz-transition: all 0.25s ease-in;
        -o-transition: all 0.25s ease-in;
        -ms-transition: all 0.25s ease-in;
    }

    .link:focus {
        text-decoration: none;
    }

    .link:visited {
        text-decoration: none;
    }



/* Loader */
#dimScreen {
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
}

/*#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 300px;
    height: 300px;
    margin: -75px 0 0 -75px;*/
/*border: 7px solid #ebf2f9;*/
/*border-radius: 50%;
    border-top: 7px solid #2a5f95;
    width: 300px;
    height: 300px;
    -webkit-animation: spin 0.3s linear infinite;
    animation: spin 0.3s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/


.lds-spinner {
    color: #971b1e;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    /*background: #2a5f95;*/
    background: #fff;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* login form */


.page-form {
    height: auto;
    width: 33.3%;
    margin: auto;
    padding: 15px;
    overflow: hidden;
    background: rgba(255,255,255,0.85);
    text-align: center;
    border-radius: 5px;
}

    .page-form .client-logo img {
        padding: 0;
        margin: 0;
        margin: auto;
        width: 25%;
    }


.form-container {
    width: 80%;
    margin: auto;
}

    .form-container .form-group {
        margin: 5px;
        padding: 5px;
    }

        .form-container .form-group .p-0 {
            padding: 0;
        }

        .form-container .form-group .m-0 {
            margin: 0;
        }

.form-password input {
    display: inline;
}


.show_password {
    width: 35px;
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    height: 33px;
    background: none;
    border: 1px solid #ccc;
}


    .show_password:hover, .show_password.showing {
        /*color: rgba(255,255,255,0.6);*/
        color: #2a5f95;
        text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
    }

     .page-form .orion-logo img {
        padding: 0;
        margin: 0;
        margin-left: auto;
        width: 70%;
    }
     
    .page-form .orion-logo .logo_caption {
        text-align: right;
        color: #2a5f95;
        margin-top: -2.5%;
        font-weight: bold;
        font-style: italic;
        font-family: 'Tw Cen MT';
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 8pt;
    }

/*
.logo-screen {
    height: 100%;
    width: 55%;
    border-left: 0.5px solid rgba(42, 95, 149, 0.6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px rgba(42, 95, 149, 0.6);
    float: right;
}*/

.text-align-left {
    text-align: left;
}

/*Responsive resolutions*/
@media screen and (min-width: 1300px) and (max-width:1800px) {
    .page-form {
        margin-top: 5.5%;
    }
}


@media screen and (min-width: 1920px) {
    .page-form {
        margin-top: 8.5%;
    }
}
