/* 1. Main Layout */


/* Top, Content, Footer in place */

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    position: relative;
}

.main-container {
    min-height: 100vh;
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 52px;
    /* height of your footer */
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}


/*Header*/

header.topHeader {
    background-color: black;
    width: 100%;
    height: 112px;
}


/*Footer*/

footer {
    background-color: #686D71;
    padding: 17px;
    color: white;
    font-size: 12px;
}


/*Main Container*/

.main-container {
    background-image: url("/lib/images/backgrounds/bg_1.png");
    background-repeat: no-repeat;
    background-size: cover;
}


/* Margins */

.mb-m {
    margin-bottom: 70px
}

.mb-s {
    margin-bottom: 20px
}

.mr-m {
    margin-right: 46px
}


/*Box sizes*/

.w-s {
    max-width: 570px;
    margin: auto;
}

.w-m {
    max-width: 710px;
    text-align: center;
    margin: auto;
}

.w-90 {
    margin: auto;
    width: 90%;
}


/* Alignment */

.center {
    text-align: center
}


/* Typo, Text & Links */

*,
h5.modal-title {
    font-family: Verdana, Helvetica, Arial, sans-serif
}

a {
    text-decoration: underline
}

a.small {
    color: black !important;
    font-size: 10px
}

strong,
b {
    font-weight: 800
}


/*Forms*/

input[type="text"].simple,
input[type="password"],
input[type="number"],
select.custom-select.simple {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #979797;
    color: #686D71;
    font-size: 16px;
    font-family: inherit;
    border-radius: 0 !important;
}

input[type="text"].ng-invalid,
input[type="password"].ng-invalid {}

.input-group-separator {
    margin-bottom: 20px;
    height: 15px;
}

.invalid-feedback {
    background-color: #C4183C;
    color: white;
    margin-top: 0;
    font-size: 10px;
    font-family: inherit;
    padding-left: 10px;
    display: block;
    height: 15px;
}

fieldset {
    width: 80%;
    max-width: 570px;
}


/*Botones*/

.btn-primary {
    background-color: #ED0000;
}

.btn-primary:hover {
    background-color: #000;
}

.btn {
    border: none;
    font-family: inherit;
}

.cursorPointer {
    cursor: pointer;
}

.cursorPointer:hover {
    color: #ED0000
}

.btn-secondary {
    background-color: #E3E5E6;
    border-color: #E3E5E6;
    color: #3B4651;
}

.btn-light {
    border: 2px solid #E3E5E6;
    border-radius: 33px;
    background-color: transparent;
    color: #BFC2C4;
}


/*Scrns*/

.main-container.scrn_login section {
    margin-top: 36px
}

.main-container.dashboard {
    padding-bottom: 0;
}


/*Titles*/

.general section h1 {
    font-size: 24px;
    color: #4A4A4A;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
}

.general section {
    padding: 60px;
}

section h3 {
    font-size: 24px;
    color: #4A4A4A;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}


/*Alertas*/

.alert {
    position: absolute;
    width: 100%;
    display: none;
    z-index: 1;
}

.modal-header,
.modal-footer {
    border: none !important;
}

h5.modal-title {
    font-size: 18px;
    font-weight: bold;
}

.modal-body {
    color: black;
    padding: 0.5rem 2.1875rem;
}


/* Screen Messages */

section.screenMessage {
    text-align: center;
    color: #686D71;
    padding-top: 50px;
}

@media screen and (min-height: 550px) {
    section.screenMessage {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        padding-top: 0;
    }
}

section.screenMessage h1 {
    font-size: 40px;
    color: inherit;
    font-family: inherit;
    font-weight: normal;
    text-transform: none;
}

section.screenMessage p {
    font-size: 14px;
    color: inherit;
    font-family: inherit;
}


/* Bar Messages */

.topMessage {
    background-color: #E3E5E6;
    color: black;
    font-size: 12px;
    font-family: inherit;
    padding: 17px;
}


/* Admin Panel */


/* Sidebar - Left Bar */


/*Normal*/

.wrapper {
    display: flex;
    width: 100%;
    display: flex;
    height: 100%;
    padding-bottom: 50px;
}

.wrapper_content {
    width: 100%;
}

#sidebar {
    width: 300px;
    background: #212529;
    color: #fff;
    transition: all 0.3s;
    flex: 1 1 auto;
    min-height: calc(100vh - 164px);
}

#sidebar ul li a {
    text-align: left;
}

#sidebar a[data-toggle="collapse"] {
    position: relative;
}

#content {
    width: 100%;
}

.scrn_statistics #content {
    height: calc(100vh - 164px);
    flex: 1 1 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.trans= {
    fill: transparent
}


/*rect:first-child{ fill:transparent} */


/* On Active & small screens */

.main-container.dashboard .topMessage {
    /*position:fixed; top:112px; width:calc(100% - 260px)*/
    position: relative;
    width: 100%
}

#sidebar.active {
    min-width: 80px;
    max-width: 80px;
    text-align: center;
}

#sidebar.active ul li a {
    padding: 20px 10px;
    text-align: center;
    font-size: 0.85em;
}

#sidebar.active .onlyOnFull {
    display: none;
    opacity: 0;
}

#sidebar.active li .icn-right::after {
    display: none;
    opacity: 0;
}

@media (max-width: 768px) {
    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
    }
    #sidebar ul li a {
        padding: 20px 10px;
        text-align: center;
        font-size: 0.85em;
    }
    #sidebar .onlyOnFull {
        display: none;
        opacity: 0;
    }
    #sidebar li .icn-right::after {
        display: none;
        opacity: 0;
    }
    .main-container.dashboard .topMessage {
        width: 100%
    }
}


/*Otros*/

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar .sidebar-header h1 {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #B5B5B5;
    text-align: center;
    letter-spacing: normal;
    border-bottom: 1px solid #414141;
    margin-left: 15px;
    margin-right: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
}


/* Items */

#sidebar,
#sidebar a {
    font-size: 14px;
    color: #B5B5B5;
    text-decoration: none;
}

#sidebar a {
    margin-left: 20px;
    display: block;
    padding-bottom: 15px;
    padding-top: 15px;
}

#sidebar li:hover,
#sidebar li.active {
    background-color: rgb(61, 65, 68);
}

#sidebar li img {
    margin-right: 20px;
}


/*Icon*/

.icn-right::before {
    display: none;
}

.icn-right::after {
    font: normal normal normal 20px/1 FontAwesome;
    content: "\f105";
    display: block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    position: absolute;
    top: 30%;
    right: 20px;
    transform: translateY(-50%);
}


/*Tables*/


/*Styles*/

table.standardStyle th {
    padding: 18px;
    background-color: #ED0000;
    color: white;
    font-size: 12px;
}

table.standardStyle td {
    padding: 18px;
    color: black;
    font-size: 12px;
    height: 71px;
}

table.standardStyle tr:nth-child(odd) {
    background-color: #E3E5E6;
}

table.standardStyle tr:nth-child(even) {
    background-color: #fff;
}

table.standardStyle .table_input {
    display: none;
}

table.standardStyle input[type="text"] {
    font-size: 11px;
    padding: 0;
    outline: none;
}

table.standardStyle input[type="text"]:focus {
    outline: none;
}


/* Pagination*/

.dataTables_wrapper {
    color: #fff !important;
    font-style: 12px !important;
    padding-bottom: 25px;
    min-height: calc(100vh - 216px);
    position: relative;
}

.dataTables_info,
.paginate_button,
.dataTables_paginate {
    font-size: 12px !important;
    color: white !important;
    padding: 0 !important;
    line-height: 27px !important;
}

.dataTables_wrapper .dataTables_info {
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_paginate {
    margin-right: 10px;
    position: absolute;
    bottom: 0;
    background-color: #000 !important;
    width: 100%
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: inherit !important;
}

.paginate_button {
    margin-left: 20px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button,
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: transparent !important;
    border: none !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    font-weight: bold;
}

.paginate_button.disabled {
    visibility: hidden;
}


/*Actions*/

.action_icn {
    margin-right: 40px;
    cursor: pointer
}


/*Blocked*/

.userBlocked {
    background-color: #B5B5B5;
    color: #686D71;
    text-decoration: line-through
}

.userBlocked.actionMenu {
    text-decoration: none;
}


/*Statistics*/


/*Left Filter Panel*/

.filtersPanel {
    background-color: white;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: calc(100vh - 194px);
    box-sizing: border-box;
    overflow: scroll;
}

.filtersPanel fieldset {
    margin: auto;
    margin-bottom: 23px;
    position: relative;
    width: 90%;
}

.filtersPanel .form-group {
    margin-bottom: 23px;
}

.filtersPanel fieldset div {
    position: absolute;
    top: 12px;
    left: 10px;
    font-weight: bold;
    font-size: 12px;
}

.filtersPanel select {
    font-size: 12px;
}

.filtersPanel .datepck,
.filtersPanel .datepck2 {
    font-size: 11px;
}

.filtersPanel .custom-checkbox {
    margin: auto;
    padding-bottom: .5rem!important;
    margin-top: .5rem!important;
    width: 90%;
    font-size: 16px;
    font: inherit;
    color: #686D71;
}

#comparission {
    display: none
}

label[for="compararCheck"] {
    font-size: 12px
}

circle {
    fill-opacity: 1 !important;
}

select:required,
input:required {
    box-shadow: none !important;
}

.actionIcon {
    cursor: pointer;
    font-size: 15px;
    color: black
}

.actionIcon:hover {
    color: #ED0000
}


/* ====================================================== */


/* ============ Mejoras a registro de visitas =========== */


/* ====================================================== */

.general section h1.page-title {
    font-family: Verdana;
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.page-subtitle {
    font-family: Verdana;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.btn-rectangle {
    width: 312px;
    height: 54px;
    padding: 14px 79.5px 16px 80.5px;
    background-color: #ed0000;
    font-family: Verdana;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    border-radius: 0;
}

.container-no-visitors {
    height: 80px;
    padding: 0 60px;
    background-color: #fafafa;
    border-top: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
}

.custom-btn-danger-outline {
    width: 331px;
    height: 40px;
    padding: 9px 69.6px 12px 72px;
    font-family: Verdana;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ed0000;
    border: 1px solid #ed0000;
    background: none !important;
    white-space: nowrap;
}

.custom-btn-danger-outline:hover {
    cursor: pointer;
}

.custom-btn-danger-outline:active {
    background: #ed0000 !important;
    color: white;
}

.custom-btn-muted-outline {
    width: 331px;
    height: 40px;
    padding: 9px 69.6px 12px 72px;
    font-family: Verdana;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #666;
    border: 1px solid #ccc;
    background: none !important;
    white-space: nowrap;
    pointer-events: none;
}

.ng-btn-modal-accept {
    width: 164px;
    height: 54px;
    margin: 0 3px 0 0;
    padding: 14px 68.4px 16px 67.6px;
    background-color: #ed0000;
    border-radius: 0 !important;
    font-size: 20px;
}

.ng-btn-modal-cancel {
    width: 164px;
    height: 54px;
    margin: 0 0 0 3px;
    padding: 15px 42.5px 16px 42.5px;
    background-color: #e3e5e6;
    border-radius: 0 !important;
    font-size: 20px;
}

.ng-modal-no-visitors-text {
    flex-grow: 0;
    font-family: Verdana;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #686d71;
}

@media (max-width: 768px) {
    .container-no-visitors {
        padding: 0 10px;
    }
    .general section {
        padding: 10px;
    }
    .btn-rectangle {
        width: 100%;
    }
    fieldset {
        width: auto;
        max-width: 100%;
    }
}