@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

@font-face{
    font-family:'ipacct';
    src: url('/styles/ipacct.ttf');
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    list-style: none;
}

*:focus {
    outline: none;
}

:root {
    --ip-blue: #1d2168;
    --bg-color: #f5f3f3;
    --ip-red: #d20000;
}

body {
    background-color: var(--bg-color);
}

.hide_on_overflow {
    overflow: hidden !important;
    text-overflow: ellipsis;
}
.auto {
    margin: auto;
}
.txt_center {
    text-align: center;
}

.default_form {
    background-color: white;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.32);
    border: 1px solid lightgrey;
    padding-top: 20px;
    border-radius: 5px;
    width: 35%;
    margin: auto;
}

.default_form .label_container label {
    font-size: 1em;
    display: block;
    text-align: left;
}

.default_form input[type=text], input[type=password], select, textarea {
    width: 100%;
    margin: auto;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid var(--ip-blue);
    padding: 5px;
    background-color: white;
}

.default_form .multiselect-input {
    border: 1px solid var(--ip-blue);
}

.default_form .submit_btn {
    background-color: var(--ip-blue);
    color: white;
    width: 100%;
    font-size: 1em;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 5px;
}

.default_form .submit_btn:hover {
    background-color: #6ba8e7;
}

.default_form .label_container {
    padding: 10px 0;
    width: 80%;
    margin: auto;
}

.default_form .form_description {
    color: white;
    margin: auto;
    font-size: 4em;
    width: 40%;
    border-radius: 100%;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default_form .form_description img {
    max-width: 100%;
}

.default_form .error_container {
    background-color: #ff636d;
    color: white;
    width: 80%;
    margin: 10px auto 0 auto;
    border-radius: 5px;
    font-size: 1.2em;
    padding: 5px;
}

.rm_error_span {
    cursor: pointer;
}

/*TABLE STYLES*/
.default_table {
    border-collapse: collapse;
    table-layout: fixed;
    margin: 30px auto;
    background-color: white;
}

.default_table thead {
    background-color: var(--ip-blue);
    color: white;
    font-size: 1.1em;
    font-weight: bold;
}
.default_table th, .default_table td {
    padding: 5px;
    text-align: center;
}

.default_table td, .default_table th {
    border-right: 1px solid rgba(0, 0, 0, 0.32);
    border-bottom: 1px solid rgba(0, 0, 0, 0.32);
}

.default_table td:last-child, .default_table th:last-child {
    border-right: none;
}

.default_table .plus::before {
    display: block;
    width: 35%;
    height: 35%;
    border-radius: 100%;
    background-color: green;
    color: white;
    content: '+';
    cursor: pointer;
    margin: auto;
}

.default_table .minus::before {
    display: block;
    width: 35%;
    height: 35%;
    border-radius: 100%;
    background-color: var(--ip-red);
    color: white;
    content: '-';
    cursor: pointer;
    margin: auto;
}

.default_table .edit_btn {
    background-color: var(--ip-blue);
    color: white;
    border: none;
    padding: 5px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

.default_table .edit_btn:hover {
    background-color: #6ba8e7;
}

.default_table .delete_btn {
    background-color: var(--ip-red);
    color: white;
    border: none;
    padding: 5px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

.default_table .delete_btn:hover {
    background-color: #6d1717;
}

.default_table tr:nth-child(even) {
    background: radial-gradient(circle, rgba(239, 236, 236, 0.42) 0%, rgb(234, 234, 234) 28%, rgba(230, 234, 238, 0.33) 65%, rgba(233, 237, 241, 0.78) 100%);
    /*background-color: rgba(213, 213, 213, 0.32);*/
}















/*LOADERS*/
.lds-roller {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 60px auto;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ip-blue);
    margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}















@media screen and (max-width: 960px) {
    .default_form {
        width: 60%;
    }
}

@media screen and (max-width: 639px) {
    .default_form {
        width: 100%;
        box-shadow: none;
        border: none;
    }
    .form_description {
        width: 100%;
    }
    .default_table {
        width: 90%;
    }
    .default_table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .default_table tr {
        border-bottom: 5px solid var(--bg-color);
        display: block;
        width: 100%;
    }
    .default_table td {
        border-right: none;
        border-bottom: 1px solid var(--bg-color);
        display: block;
        text-align: right;
        font-size: 0.8em;
    }
    .default_table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }
    .default_table .plus::before {
        display: inline;
        padding: 0 15px;
        border-radius: 15%;
        border: 1px solid var(--bg-color);
        color: green;
        background-color: white;
        font-size: 14px;
    }
    .default_table .minus::before {
        display: inline;
        padding: 0 16px;
        border-radius: 15%;
        border: 1px solid var(--bg-color);
        color: var(--ip-red);
        background-color: white;
        font-size: 14px;
    }
    .default_table .edit_btn {
        font-size: 1em;
        padding: 1px 5px;
    }
    .default_table .delete_btn {
        font-size: 1em;
        padding: 1px 5px;
    }
}










/*FP LOADER*/

.fp_container{
    width: 100%;
    height: 100%;
    margin: auto;
    position: fixed;
    font-size: 3em;
    top: 30%;
    z-index: 9;
}
.fp_loader {
    color: #343638;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}












.configure {
    color: #6ba8e7;
}
.configure:hover {
    color: var(--ip-blue);
    text-decoration: underline;
    cursor: pointer;
}
.config_form {
    width: 45%;
    background-color: white;
    margin: auto;
    padding: 15px;
    display: grid;
    grid-template-columns: 90%;
    justify-content: space-around;
    row-gap: 10px;
}
.config_form h3 {
    text-align: center;
}
.config_form button {
    background-color: var(--ip-blue);
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}
.config_form button:hover {
    background-color: #6ba8e7;
}
.config_form h3 span {
    float: right;
    font-size: 20px;
    color: var(--ip-red);
    cursor: pointer;
}
body .config_form input {
    min-height: 40px;
    border-radius: 3px;
}
@media screen and (max-width: 639px) {
    .config_form {
        width: 100%;
    }
}










.nav_container {
    background-color: white;
    border-bottom: 1px solid darkgray;
    margin-bottom: 20px;
    height: 50px;
}
.navigation {
    height: 50px;
    margin: auto;
    width: 90%;
    display: flex;
    align-items: center;
}
.navigation a {
    background-color: white;
    text-decoration: none;
    padding: 5px 15px;
    color: var(--ip-blue);
    border-radius: 25px;
    font-weight: bold;
}
.navigation a:hover {
    color: white;
    background-color: var(--ip-blue);
}
.navigation a.router-link-active {
    color: white;
    background-color: var(--ip-blue);
}









.grey {
    background-color: #f9f9f9;
}
.online {
    color: green;
}
.offline {
    color: var(--ip-red);
}
.missing {
    color: #6c6868;
}




.global_err_container {

}

.global_err_modal {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 70vh;
}
