﻿div.hideSkiplink {
    background-color: #3a4f63;
}

/* The Modal (background) */
.modal {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 55px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    border: 1px solid #888;
    font-size: 1.2rem;
    height: 100vh;
    margin: auto;
    margin-right: 0;
    overflow: auto;
    padding: 20px;
    width: 60%;
}

    /*CONFIGURACION PANELES*/
    .modal-content .button {
        border: none;
        cursor: pointer;
        font-family: "Open Sans", sans-serif;
        margin-top: 5px;
        outline: none;
        padding: 5px;
        text-align: left;
        width: 100%;
    }

    .modal-content .acomodarPanel {
        position: relative;
        width: 100%;
    }

        .modal-content .acomodarPanel .iconArrowDown {
            width: 0;
            height: 0;
            right: 0;
            border-top: 10px solid white;
            border-bottom: 10px solid transparent;
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            position: absolute;
            top: Calc(50% - 2px);
            margin-right: 5px;
        }

        .modal-content .acomodarPanel .iconArrowUp {
            width: 0;
            height: 0;
            right: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid white;
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            position: absolute;
            bottom: Calc(50% - 6px);
            margin-right: 5px;
        }

    .modal-content .button, .modal-content .active, .modal-content .button:hover {
        opacity: 0.7;
    }

    .modal-content .modal-body {
        margin-top: 5px;
    }

.modalPanelAcordeon {
    overflow: hidden;
    transition: all .2s ease-in-out;
}

/*Modal Content Table*/
.modal-content_table {
    margin-top: 5px;
    width: 100%;
}

    .modal-content_table .txtbox {
        background: transparent;
        border: 1px solid lightgray;
        font-size: 1.2rem;
        width: 100%;
    }

/*Toolbar Modal*/
.content-toolbar {
    border-bottom: 1px solid #aaaaaa;
    display: flex;
    position: relative;
    width: 100%;
}

    .content-toolbar ul {
        display: inline-flex;
        margin: 0;
        padding: 0;
    }

        .content-toolbar ul li {
            display: inline-block;
        }

.toolbar-button {
    display: flex;
    width: 100%;
}

    .toolbar-button:hover {
        background-color: #edf0f0;
        border-bottom: none;
    }

.buttonCancel {
    position: absolute;
    right: 0;
    width: 80px;
}

.toolbar-button .toolbar-button_image {
    border-width: 0px;
    margin: 0;
    width: 25px;
}

.toolbar-button .button {
    background: transparent;
    border: 0;
    color: #5d7b9d;
    cursor: pointer;
    font-size: 9pt;
    height: 25px;
    margin: 0;
    padding: 0 5px;
    position: relative;
    text-align: left;
    top: 0;
    width: calc(100% - 25px);
}

.content-header {
    align-items: center;
    display: flex;
    font-weight: bold;
    padding-top: 10px;
    width: 100%;
}

.content-header_titleCia {
    align-items: center;
    display: flex;
    width: 50%;
}

    .content-header_titleCia .imageLogoCia {
        margin-left: 10%;
        width: 70px;
    }

    .content-header_titleCia span {
        font-size: 1.5rem;
        padding-left: 10px;
    }

.content-header_activeCia {
    width: 25%;
}

    .content-header_activeCia .activeCiaTittle {
        display: inline-block;
        width: 100%;
    }

.tdInicio {
    width: 25%;
}

.tdFin {
    width: 5%;
}

.controlStyleModal {
    background: transparent;
    border: 1px solid lightgray;
    font-size: 1.2rem;
    width: 100%;
}



/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/*PANEL COMPAÑIA*/
.h3Title {
    color: black;
    padding-left: 10px;
    text-align: left;
}

.filters-Cia {
    align-items: center;
    display: flex;
    position: relative;
    width: 100%;
}

.filter-Cia_Cia, .filter-Cia_Active {
    align-items: center;
    display: flex;
    width: 50%;
}

    .filter-Cia_Cia label {
        padding-left: 10px;
        text-align: left;
        width: 50%;
    }

    .filter-Cia_Active .labelRight {
        text-align: right;
        width: 50%;
    }

    .filter-Cia_Active .switch {
        margin: 0 5px
    }

/*Toggle Button*/
.switch {
    position: relative;
    display: inline-block;
    width: 37.5px;
    height: 18px;
}

    .switch input {
        opacity: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    width: 37.5px;
    height: 18px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #5d7b9d;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/*Icons Style*/
.iconSizeMedium {
    /*margin-left: calc(50% - 10px);*/
    width: 25px;
}

.iconTest {
    background-color: #f7f3a1;
    border: 2px solid black;
    border-radius: 15%;
}

.iconInactive {
    background-color: #f7a1a1;
    border-radius: 50%;
}

.iconActive {
    background-color: #b2f7a1;
    border-radius: 50%;
}

.imageLogoCia {
    /*margin-left: calc(50% - 25px);*/
    width: 50px;
}
