﻿/*:root {*/
/*    --spacing: 8px;*/
/*    --spacing-1: var(--spacing);*/
/*    --spacing-1-5: calc(var(--spacing)*1.5);*/
/*    --spacing-2: calc(var(--spacing)*2);*/
/*    --spacing-3: calc(var(--spacing)*3);*/
/*    --spacing-4: calc(var(--spacing)*4);*/
/*    --spacing-5: calc(var(--spacing)*5);*/
/*    --spacing-6: calc(var(--spacing)*6);*/
/*    --spacing-6-5: calc(var(--spacing)*6.5);*/
/*}*/
.container-login {
    height: 100vh !important;
}

h2,h3 {
    color: rgb(255,99,49);
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.4;
    white-space: nowrap;
}

h4 {
    color: white;
    text-align: center;
}

.subtitulo {
    text-align: center;
    font-size: 12px;
    color: white;
}

.card {
    border-radius: 10px;
    /*box-shadow: 5px 5px rgba(255,99,49,0.8);*/
}

.btn-login {
    background-color: rgb(255,99,49);
}

.btn-login:active {
    background-color: rgb(255,70,49);
}

.btn-login:disabled {
    background: rgba(255,99,49,0.6) !important;
}

.btn-login:hover {
    background-color: rgb(255,115,49);
}

section {
    margin-top: 20px;
}

.bmd-label-floating.login-label {
    color: rgb(255,99,49) !important;
    font-size: 14px !important;
}

.form-control:focus {
    color: rgba(255,255,255,0.5);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgb(255,99,49) !important;
    outline: 0;
    box-shadow: none, 0 0 0 0.2rem rgb(255,99,49) !important;
}

.form-control, .is-focused .form-control {
    background-image: linear-gradient(to top, rgb(255,99,49) 2px, rgba(0, 0, 0, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}

.bmd-form-group:not(.has-success):not(.has-danger):not(.is-focused) [class^='bmd-label'].bmd-label-floating, .bmd-form-group:not(.has-success):not(.has-danger):not(.is-focused) [class*=' bmd-label'].bmd-label-floating {
    color: #AAAAAA !important;
}

.form-check .form-check-input:checked + .form-check-sign .check {
    background: rgb(255,99,49);
}

.contactar-admin {
    color: rgb(255,99,49);
}

.contactar-admin:hover {
    color: rgba(255,255,255,0.5);
}

/*  CARD FLIPPING   */
.card-flip {
    -webkit-perspective: 1000px;
    perspective: 1000px;
    height: 100% !important;
    width:  100%;
}

.card-flip.flipped .flip, .card-flip.hover .flip {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip {
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
    height: 100%;
}

.front,
.back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    left: 0;
    right: auto;
    width: calc(100% - 10px);
}

.front {
    z-index: 2;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.custom-overflow {
    overflow-y: hidden;
}

.login-card {
    background-color: rgba(8,37,53,0.5);
    /* background: linear-gradient(rgba(8,37,53,0.5), rgba(8,37,53,0.95)); */
}

.bg-login, .bg-login:hover, .bg-login:active {
    background: rgb(255,99,49) !important;
}

.bg-login.disabled {
    background: rgba(255,99,49,0.6) !important;
}

.bg-login:active, .bg-login.active, .open > .bg-login.dropdown-toggle, .show > .bg-login.dropdown-toggle, .bg-login.btn-default:active, .bg-login.btn-default.active, .open > .bg-login.btn-default.dropdown-toggle, .show > .bg-login.btn-default.dropdown-toggle {
    color: #fff;
    background-color: rgb(255,99,49);
    border-color: #7a7a7a;
    box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12);
}

/* Change Autocomplete styles in Chrome*/
@-webkit-keyframes autofill {
    to {
        color: rgba(255,255,255,0.5);
        border-color: #7a7a7a;
        background: transparent;
        border-bottom: solid 1px white;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

/*.dropdown-menu .dropdown-item, .dropdown-menu li > a:hover {
    background-color: #FF6c36;
    opacity: 0.8;
    color: white;
}

.dropdown-menu .dropdown-item, .dropdown-menu li.selected > a {
    background-color: #082535;
    color: white;
}*/

.dropdown-toggle::after {
    display: none;
}

.caret {
    position: relative;
}

.caret:before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    border-top: 6px solid white;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.caret:not(.sidebar):after {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    border-top: 4px solid #ff6c36;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.disabled .caret {
    display: none;
}

.dropdown-item.active {
    background-color: #FF6c36 !important;
    color: white;
}

.dropdown-item:hover {
    background-color: #FF6c36 !important;
    opacity: 0.8;
}

div.filter-option-inner-inner {
    color: white;
}

.caret {
    transition: transform ease 0.2s;
    text-align: center;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: visible !important;
}

.bootstrap-select .dropdown-toggle .filter-option-inner {
    overflow: hidden;
}

a.recuperar-contrasena {
    color: #AAAAAA;
}

.ca139301f {
    width: 100%;
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    color: #999999;
    padding: 24px 0 0;
    padding: 8px 0 0 0;
    /*padding: var(--spacing-1) 0 0 0*/
}

.ca139301f:after,.ca139301f:before {
    content: "";
    border-bottom: 1px solid #999999;
    /*border-bottom: 1px solid #AAAAAA;*/
    /*border-bottom: 1px solid var(--border-default-color);*/
    flex: 1 0 auto;
    height: 1em;
    margin: 0
}

.ca139301f span {
    text-align: center;
    flex: 0.2 0 auto;
    margin: 0
}

.btn-passwordless {
    background-color: transparent;
    border: 1px solid #999999;
}

.notyf__message {
    color: #fff;
}

.notyf__icon .text-dark {
    color: #fff !important;
}