@font-face {
    src: url("../fonts//Roboto-Regular.ttf") format("truetype"), url("../fonts//Roboto-Bold.ttf") format("truetype"), url("../fonts//Roboto-Black.ttf") format("truetype"), url("../fonts//Roboto-BlackItalic.ttf") format("truetype"), url("../fonts//Roboto-BoldItalic.ttf") format("truetype"), url("../fonts//Roboto-Italic.ttf") format("truetype"), url("../fonts//Roboto-Light.ttf") format("truetype"), url("../fonts//Roboto-LightItalic.ttf") format("truetype"), url("../fonts//Roboto-Medium.ttf") format("truetype"), url("../fonts//Roboto-MediumItalic.ttf") format("truetype"), url("../fonts//Roboto-Thin.ttf") format("truetype"), url("../fonts//Roboto-ThinItalic.ttf") format("truetype");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    --bg: #F4F4F4;
    --bg-panel: #EBEBEB;
    --color-primary: #3FC0F0;
    --color-success: #93DBA1;
    --color-warning: #F85510;
    --color-error: #FF4747;
    --color-text: #333333;
    display: flex;
    /* font-size estava a 10px*/
    font-size: 12px;
    min-height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    justify-content: center;
    margin: 0;
    padding: 0;
}

    html[data-theme='dark'] {
        --bg: #393838;
        --bg-panel: #323232;
        --color-primary: #5694F0;
        --color-success: #93DBA1;
        --color-warning: #F85510;
        --color-error: #FF4747;
        --color-text: #FFFFFF;
    }

select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

[data-theme='dark'] select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

[data-theme='dark'] input {
    color-scheme: dark;
}

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

input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.switchLabel {
    cursor: pointer;
    text-indent: -9999px;
    width: 45px;
    height: 20px;
    background: grey;
    float: right;
    border-radius: 100px;
    position: relative;
}

    .switchLabel:after {
        content: '';
        position: absolute;
        top: 2px;
        left: 3px;
        width: 15px;
        height: 15px;
        background: #fff;
        border-radius: 90px;
        transition: 0.3s;
    }

input:checked + .switchLabel {
    background: var(--color-primary);
}

    input:checked + .switchLabel:after {
        left: calc(100% - 5px);
        transform: translateX(-100%);
    }

.switchLabel:active:after {
    width: 45px;
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
    transition: all 750ms !important;
    transition-delay: 0 !important;
}

.plugin-header-name {
    color: var(--color-text);
}

.ticketTitle {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    font-family: Roboto;
}

.header-content {
    /*position: absolute;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.3rem 4rem;
    position: fixed;
    top: 0;
    background-color: var(--bg);
    z-index: 1;
    /*float: right;*/
    /*right: 0px;*/
}

.header-usefull-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: auto;
}

.vl {
    border-left: 3px solid var(--bg-panel);
    height: 57px;
    margin-right: 1rem;
}

.header-usefull-area > ul > li {
    list-style-type: none;
    font-size: 1.7rem;
    color: var(--color-text) !important;
}

#burger-menu-icon {
    color: var(--color-text);
}

.header-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    position: absolute;
    right: 10rem;
    text-align: end;
}

@media only screen and (min-width: 720px) {
    .header-nav {
        position: unset;
        right: 0;
        flex-direction: row;
        background-color: var(--bg);
    }

    .navbar-toggler {
        display: none;
    }

    .collapse:not(.show) {
        display: block;
    }
}

.HidePhone {
    display: flex;
}

@media only screen and (max-width: 672px) {
    .plugin-header-name {
        display: none;
    }

    .header-nav {
        right: 22rem;
        text-align: left;
        background-color: var(--bg-panel)
    }

    .header-usefull-area {
        width: 100%;
        justify-content: space-around
    }
}

@media only screen and (max-width: 1070px) {

    .modal-header-content > h1 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 670px) {
    .modal-header-content {
        flex-direction: column;
    }
}


.nav-link {
    color: var(--color-text) !important;
}

.user-image {
    height: 4rem;
    width: 4rem;
    margin-top: 1rem;
    border-radius: 50%;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-panel);
    min-width: 160px;
    width: 17rem;
    height: auto;
    border-radius: 0.6rem;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 4;
    right: 0;
}

.user-dropdown:hover .user-dropdown-content {
    display: block;
}

.user-dropdown-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0.7rem 0;
}

    .user-dropdown-item > span {
        font-weight: normal;
        font-size: 1.4rem;
        color: var(--color-text);
    }

.Profile-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-text);
}


.lang-picker {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}


.lang-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 1rem;
    padding: 0rem 0.2rem;
    transition: 0.3s;
}

.lang-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 69%;
    cursor: pointer;
    transition: border-bottom 300ms ease;
}

.lang-item:hover {
    border-bottom: 2px solid var(--color-primary);
}

.modal-content {
    background-color: var(--bg) !important;
    color: var(--color-text) !important;
}

.btn-close {
    color: var(--color-text) !important;
}

.lang-label {
    color: var(--color-text);
}

.lang-checker {
    color: var(--color-primary);
    background-color: var(--bg);
    border-radius: 50%;
    font-size: 1.2rem;
}

#container-lang {
    overflow: hidden;
    width: 100%;
    height: 0px;
    transition: height 600ms ease-out;
}

.lang-expanded {
    /*height: 120px!important;*/
    height: 84px !important;
}

.item-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.7rem;
    font-size: 1.4rem;
}

    .item-icons > span {
        font-size: 1.4rem;
        color: var(--color-text);
        cursor: pointer;
    }

        .item-icons > span:hover {
            color: var(--color-primary);
        }

/* CSS DO MODAL / SIDEBAR */

h1 {
    font-size: 3.8rem;
    line-height: 1.1em;
}

p {
    opacity: 0.6;
    font-size: 1.8rem;
    line-height: 1.7em;
    text-align: justify;
}

.wrapper {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 250rem;
    z-index: 0;
    padding-top: 10rem;
    transform-style: preserve-3d;
}



    .wrapper.active main {
        filter: blur(5px);
        overflow: hidden;
    }

    .wrapper.active .sidebar {
        animation: open 400ms forwards;
    }

    .wrapper.active .modal {
        animation: open 400ms forwards;
    }

    .wrapper.active .menu .content {
        background: purple;
    }

    .wrapper.active .menu .sidebar {
        animation: close 400ms forwards;
    }

    .wrapper .modal {
        min-height: 50rem;
        position: fixed;
        top: 44rem;
        padding: 1rem;
        z-index: 5;
        background-color: var(--bg-panel);
        border-radius: 1.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        animation: close 400ms forwards;
        width: 59%;
        height: 500px;
        z-index: 2;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

.modal-page {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.modal-header-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.modal-header-content {
    padding: 0 2rem;
    margin-top: 2rem;
    width: 100%;
    z-index: 99;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--color-text);
}

.modal-page-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    overflow-y: auto;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    padding: 0 3rem;
    margin-top: 1rem;
    color: var(--color-text);
}



.form-container {
    width: 46%;
    height: 100%;
    position: relative;
    display: flex;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 3rem;
    margin-top: 1rem;
    color: var(--color-text);
    border-right: solid 2px var(--bg-panel);
    min-height: 13rem;
}

.users-container {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 4rem;
    color: var(--color-text);
}

.form-control, .form-select {
    background-color: var(--bg) !important;
    color: var(--color-text) !important;
}

.details-container {
    width: 50%;
    height: auto;
    position: relative;
    display: flex;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 0 3rem;
    margin-top: 1rem;
    color: var(--color-text);
}

.key-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 7rem;
}

.buttons-container-row {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0 3rem;
    margin-top: 1rem;
    color: var(--color-text);
}

.btn-primary {
    background-color: var(--color-primary) !important;
    border: none !important;
}

.btn-danger {
    background-color: var(--color-error) !important;
    border: none !important;
}

.btn-success {
    background-color: var(--color-success) !important;
    border: none !important;
}

.btn-warning {
    background-color: var(--color-warning) !important;
    color: #fff;
    border: none !important;
}

    .btn-warning:hover {
        color: #fff;
    }

.sidebar {
    min-height: 50rem;
    position: fixed;
    top: 44rem;
    left: 15%;
    padding: 1rem;
    z-index: 1;
    background-color: var(--color-primary);
    border-radius: 4rem;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: close 400ms forwards;
    z-index: 2;
}

.wrapper .sidebar nav {
    width: 100%;
    display: flex;
    flex-direction: column;
}

    .wrapper .sidebar nav a {
        width: 100%;
        color: white;
        padding: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        cursor: pointer;
    }

        .wrapper .sidebar nav a:hover {
            transform: scale(1.07);
        }

        .wrapper .sidebar nav a img {
            height: 2rem;
            width: 2rem;
        }

.wrapper main {
    width: 100vw;
    z-index: 2;
    /*height: 100vh;*/
    transition: 800ms all;
}

    .wrapper main .page {
        color: var(--color-text);
        transition: 250ms all;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }

        .wrapper main .page article {
            width: 90%;
            max-width: 65rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

.wrapper .menu {
    position: absolute;
    top: 2rem;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, 0);
    border: none;
    background: transparent;
    width: 1.5rem;
    height: 2rem;
    cursor: pointer;
}

    .wrapper .menu .content {
        position: absolute;
        top: 0;
        right: 0;
        width: 1.2rem;
        height: 2rem;
        background-color: #0c1016;
        border-radius: 0.2rem;
        transition: 250ms all;
    }

    .wrapper .menu .sidebar {
        position: absolute;
        top: 50%;
        left: 0;
        width: 0.5rem;
        height: 1.5rem;
        background-color: var(--color-primary);
        border-radius: 0.2rem;
        animation: open 400ms forwards;
    }

.product-image {
    width: 43%;
}

.user-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--bg);
    padding: 1rem 0.9rem;
    width: 30rem;
    margin: 0.7rem;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.user-info {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
}

    .user-info > .user-foto {
        height: 4rem;
        width: 4rem;
        border-radius: 50%;
    }

.user-form {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-top: 1.7rem;
    /*margin-bottom: 1rem;*/
}

@media only screen and (max-width: 1046px) {
    .sidebar {
        height: 15%;
        top: 36rem;
        left: 3%;
        border-radius: 1rem;
    }

    .wrapper .modal {
        width: 80%;
        height: 50%;
        left: -16%;
        top: 36rem;
    }

    .modal-page-content {
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .form-container, .details-container {
        width: 100%;
        padding: 0;
        align-items: center;
        justify-content: center;
        height: auto;
    }
}

@media only screen and (max-width: 610px) {
    .sidebar {
        height: 15%;
        top: 36rem;
        left: 2%;
        padding: 0;
        border-radius: 1rem;
    }

    .wrapper .modal {
        width: 79%;
        height: 50%;
        left: -15%;
        top: 35rem;
    }
}


.fontPagination{
    font-size:inherit;
}

@media only screen and (max-width: 566px) {
    .sidebar {
        top: unset;
        left: unset;
        min-height: 3rem !important;
        height: 4rem !important;
        width: 58%;
        top: 63rem !important;
        left: 0;
        padding: 0;
        border-radius: 1rem;
    }

    .HidePhone {
        display: none;
    }

    .fontPagination {
        font-size: 9px;
    }

    .wrapper > .sidebar > nav {
        flex-direction: row;
    }

    .wrapper .modal {
        width: 85%;
        /*height: 74%;*/
        left: -22%;
    }
}

@media only screen and (max-width: 376px) {
    .sidebar {
        top: unset;
        left: unset;
        min-height: 3rem !important;
        height: 3rem !important;
        width: 60%;
        bottom: 18px !important;
        left: 0;
        padding: 0;
        border-radius: 1rem;
    }

    .modal-header-content {
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .wrapper > .sidebar > nav {
        flex-direction: row;
    }

    .wrapper .modal {
        width: 83% !important;
        /*height: 75% !important;*/
        left: -20% !important;
    }
}

@media only screen and (max-width: 471px) {
    .modal-header-content > h1 {
        text-align: center;
    }

    .modal-header-content {
        flex-direction: column
    }

        .modal-header-content > span {
            margin-top: -7rem;
        }
}

@keyframes open {
    0% {
        opacity: 0;
        transform: translate3d(-135%, -50%, 0);
    }

    50% {
        z-index: 1;
        transform: translate3d(-135%, -50%, 0);
    }

    100% {
        opacity: 1;
        z-index: 5;
        transform: translate3d(35%, -50%, 25rem);
    }
}

@keyframes close {
    0% {
        opacity: 1;
        z-index: 5;
        transform: translate3d(35%, -50%, 25rem);
    }

    50% {
        z-index: 1;
        transform: translate3d(-135%, -50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate3d(-135%, -50%, 0);
    }
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*margin-top: 7rem;*/
    /*padding-bottom: 10rem;*/
    color: var(--color-text);
}

.inner-div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
}

.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .loading > img {
        animation: pulse 2s infinite;
    }

    .loading > svg {
        animation: pulse 2s infinite;
    }

.error-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

    .error-content > p {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

@keyframes pulse {
    0% {
        transform: scale(0.85);
        /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);*/
    }

    70% {
        transform: scale(1);
        /*box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);*/
    }

    100% {
        transform: scale(0.85);
        /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);*/
    }
}

.error-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 1.7rem;
}

#blazor-error-ui {
    background: var(--bg-panel);
    color: var(--color-text);
    bottom: 1.7rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: none;
    padding: 1.5rem 1.25rem 1.5rem 1.25rem;
    position: fixed;
    width: 55%;
    z-index: 1000;
    border-radius: 1rem;
    z-index: 99999999 !important;
    justify-content: center;
}

.funciona {
    z-index: 999999 !important;
}

#Generic-Error-ui {
    background: var(--bg-panel);
    color: var(--color-text);
    bottom: 1.7rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    padding: 1.5rem 1.25rem 1.5rem 1.25rem;
    position: fixed;
    width: 55%;
    z-index: 1000;
    border-radius: 1rem;
    z-index: 999999 !important;
    justify-content: center;
}

    #Generic-Error-ui > a {
        color: var(--color-error);
        text-decoration: none;
        font-weight: bold;
    }

    #Generic-Error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

#blazor-error-ui > a {
    color: var(--color-error);
    text-decoration: none;
    font-weight: bold;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

input:disabled {
    background-color: var(--bg-panel) !important;
    /*    border: none !important;
    outline: none !important;*/
    color: var(--color-text) !important;
}

.error-component {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 12rem;
    height: 5rem;
    display: flex;
    z-index: 1;
    position: relative;
    margin-bottom: 15%;
}

.form-containerLogin {
    z-index: 2;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-text {
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

#domain {
    background-color: var(--bg);
    color: var(--color-text);
}

span.textbox {
    background-color: var(--bg);
    color: var(--color-text);
    border: 1px #000 solid;
    font-size: 9pt;
    padding-left: 0.3rem;
    border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
    border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem;
}

.domainInput {
    border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
    border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem;
}

span.textbox input {
    outline: none;
    border: none;
    border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
    border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem;
}

.domainInput {
    padding: 0.5rem 0.9rem;
    width: 15rem;
    margin-left: 0.4rem;
}

.remember {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.btn-primary {
    background-color: var(--color-primary); /* Green */
    border: none;
    color: white;
    width: 18.5rem;
    padding: 15px 32px;
    margin-top: 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
    border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem;
}

/*.container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }*/

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

    /*.container:hover input ~ .checkmark {
    background-color: #ccc;
}

.container input:checked ~ .checkmark {
    background-color: #176299;
}*/

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

/*.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 3px;
    height: 7px;
    border: solid var(--bg);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}*/

.switch {
    position: relative;
    display: inline-block;
    width: 49px;
    height: 24px;
    margin: 0rem 1rem;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: grey;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: var(--color-primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }


.external-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0.7rem 0rem;
}

.external-login {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.external-login-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.external-login > label {
    margin: 0.5rem 0rem;
}

.external-login > input {
    width: 90%;
}

.banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-img {
    height: 150px;
    width: 600px;
    justify-content: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-top: 30px;
}

.login-container {
    background-color: var(--bg-panel);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem 0rem;
    padding: 2rem 2rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 604px) {
    .login-container {
        width: 35rem !important
    }
}

@media only screen and (max-height: 922px) {
    .banner-container {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-height: 430px) {
    .logo {
        display: none;
    }
}

@media only screen and (max-height: 790px) {

    .banner-img {
        width: 75%
    }
}

@media only screen and (max-width: 1773px) {
    .users-container {
        justify-content: center;
    }
}

@media only screen and (max-width: 1233px) {
    .users-container {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 1159px) {
    .users-container {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 755px) {
    .users-container {
        justify-content: center;
    }
}

@media only screen and (max-width: 414px) {

    .login-container {
        background-color: transparent;
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 1rem 0rem;
        padding: 0rem;
        box-shadow: none;
    }
}

@media only screen and (max-width: 281px) {


    input {
        padding: 0.5rem 0.9rem;
        width: 12rem;
        margin-left: 0.4rem;
    }

    .btn-primary {
        width: 15rem;
    }
}

.modal-dialog {
    max-width: 51% !important;
}

.modal-content {
    min-height: 38rem;
    height: 100%;
    border-radius: 2rem;
    margin-top: 10rem;
    position: relative;
    left: -1px !important;
}

.modal-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.sidebar-modal {
    height: auto;
    min-height: 38rem;
    width: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-primary);
    border-radius: 2rem 0 0 2rem;
    z-index: 3;
}

.modal-content-inner {
    width: 100%;
    /*height: 100%;*/
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.nav-item-modal {
    margin-top: 2.7rem;
    cursor: pointer
}

.btn-close-modal {
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--color-text);
}

.modal-component-content {
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1311px) {
    .modal-dialog {
        max-width: 100% !important;
    }

    .modal-inner {
        /*        flex-direction: column !important;*/
    }

    .sidebar-modal {
        order: 2;
        height: 4rem;
        min-height: 4rem;
        width: 100%;
        flex-direction: row;
        position: absolute;
        bottom: 0;
        border-radius: 0 0 2rem 2rem;
    }

    .nav-item-modal {
        margin-left: 2.3rem;
        margin-top: 0 !important;
    }

    .form-container {
        border-right: none;
    }
}

@media only screen and (max-width: 1949px) {

    .modal-header-content > .modal-title {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 1749px) {

    .modal-header-content > .modal-title {
        font-size: 1.4rem;
    }

    .modal-component-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 1055px) {

    .modal-header-content > .modal-title {
        font-size: 1.4rem;
    }

    .modal-component-content > .form-container > w-100 {
        width: 67% !important;
    }
}

@media only screen and (max-width: 1713px) {

    .key-container {
        flex-direction: column;
    }
}

@media only screen and (max-width: 1015px) {

    .form-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 0.3rem;
    }

    .modal-component-content > .form-container > w-100 {
        width: 58% !important;
    }
}

@media only screen and (max-width: 2519px) {
    .users-container {
        padding-left: 16rem !important;
    }
}

@media only screen and (max-width: 2463px) {
    .users-container {
        padding-left: 15rem !important;
    }
}

@media only screen and (max-width: 2385px) {
    .users-container {
        padding-left: 13rem !important;
    }
}

@media only screen and (max-width: 2312px) {
    .users-container {
        padding-left: 12rem !important;
    }
}

@media only screen and (max-width: 2266px) {
    .users-container {
        padding-left: 11rem !important;
    }
}

@media only screen and (max-width: 2236px) {
    .users-container {
        padding-left: 10rem !important;
    }
}

@media only screen and (max-width: 2170px) {
    .users-container {
        padding-left: 9rem !important;
    }
}

@media only screen and (max-width: 2132px) {
    .users-container {
        padding-left: 8rem !important;
    }
}

@media only screen and (max-width: 2064px) {
    .users-container {
        padding-left: 7rem !important;
    }
}

@media only screen and (max-width: 2020px) {
    .users-container {
        padding-left: 6rem !important;
    }
}

@media only screen and (max-width: 2019px) {
    .users-container {
        padding-left: 0 !important;
    }
}

@media only screen and (max-width: 1233px) {
    .users-container {
        padding-left: 16rem !important;
    }
}

@media only screen and (max-width: 1150px) {
    .users-container {
        padding-left: 14rem !important;
    }
}

@media only screen and (max-width: 1110px) {
    .users-container {
        padding-left: 13rem !important;
    }
}

@media only screen and (max-width: 1080px) {
    .users-container {
        padding-left: 11rem !important;
    }
}

@media only screen and (max-width: 1048px) {
    .users-container {
        padding-left: 10rem !important;
    }
}

@media only screen and (max-width: 1047px) {
    .users-container {
        padding-left: 0 !important;
    }
}

@media only screen and (max-width: 471px) {
    #btn-import {
        margin-top: 2.3rem;
    }
}

/* INDEX PAGE*/
.addProjectButton {
    background: var(--color-primary);
    border-radius: 5px;
    text-align: center;
    height: auto;
}

.iFrameDiv {
    width: 102%;
    padding: 28px;
    position: absolute;
    background: var(--bg);
    height: 630px;
    left: -1%;
}

@media only screen and (max-width: 576px) {
    .addProjectButton {
        width: 65%;
        margin-top: 20px;
    }

    .iFrameDiv {
        width: 115%;
        position: absolute;
        background: var(--bg);
        height: 630px;
        left: -7.5%;
    }

    .pad {
        padding-right: 0px !important;
    }
}

.pad {
    padding-right: 9px;
}

.indexIcon {
    justify-content: center;
    display: flex;
    position: relative;
    top: 5px;
}

.iconDiv {
    width: 35px;
    height: 35px;
    color: var(--color-text);
    border-radius: 5px;
}

.iconDivFrame {
    width: 35px;
    height: 35px;
    color: var(--color-text);
    border-radius: 5px;
}

.form-control-searchBar {
    height: 29px;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: var(--bg);
    background-clip: padding-box;
    border-left: 1px solid var(--color-text);
    border-top: 1px solid var(--color-text);
    border-bottom: 1px solid var(--color-text);
    border-right: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .form-control-searchBar:focus {
        height: 29px;
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: var(--bg);
        background-clip: padding-box;
        border-left: 1px solid var(--color-text);
        border-top: 1px solid var(--color-text);
        border-bottom: 1px solid var(--color-text);
        border-right: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

.iconSearch {
    border: 1px solid var(--color-text);
    border-left: none;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    background: var(--bg);
    cursor: pointer;
}

/*Cards Index Page*/
.cardIndex {
    background: var(--bg);
    height: auto;
    box-shadow: -2px 0px 7px var(--color-text);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modalProject {
    position: relative;
    top: -19rem;
    background: var(--bg-panel);
    width: 70%;
    left: 16%;
    border-radius: 5px;
    box-shadow: -2px 0px 7px var(--color-text);
    padding: 10px;
    z-index: 1;
    height: 575px;
    overflow-y: scroll;
    overflow-x: hidden;
}


tbody > tr {
    text-align: left;
    border-bottom: 1px solid var(--color-text);
}

tr > td {
    padding: 15px;
}

tbody > tr:hover {
    background-color: var(--bg);
}

thead > tr {
    border-bottom: 2px solid var(--color-text);
}

th {
    font-size: 17px;
    font-weight: 600;
    font-family: Roboto;
    color: var(--color-text);
    background: none;
    padding: 20px;
}

.tr-hover:hover {
    background-color: var(--bg-panel);
}

.scrollbar::-webkit-scrollbar {
    width: 10px;
}

.scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--color-text);
    border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.modalTittleSettingsAdjust {
    font-size: 25px;
    font-weight: 600;
}


@media only screen and (max-width: 767.98px) {
    .modalProject {
        position: relative;
        top: -31rem;
        background: var(--bg-panel);
        width: 70%;
        left: 16%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
    }

    .cardIndex {
        display: block;
    }

    .buttonMainPageMargem {
        margin-bottom: 5px;
    }

    .modalAdjustment {
        position: fixed;
        top: 37%;
        left: 13px;
    }
}

@media only screen and (max-width: 568px) {
    .loadingAdjustment {
        width: 250px;
        position: relative;
        left: 24%;
        top: 120px;
    }
}

.loader {
    border: 16px solid var(--color-text);
    border-radius: 50%;
    border-top: 16px solid var(--color-primary);
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s 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);
    }
}

.UrlsCard {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-text);
    border-radius: 5px;
    height: 30px;
    margin-bottom: 10px;
    padding-left: 7px;
    padding-right: 7px;
}

.paragraphUrl {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.ModalUrlsProject {
    background: var(--bg-panel);
    width: 100%;
    border-radius: 5px;
    box-shadow: -2px 0px 7px var(--color-text);
    padding: 10px;
    position: relative;
    margin-top: -40%;
    left: 10px;
    height: 440px;
}

.modalAddProject {
    background: var(--bg-panel);
    border-radius: 5px;
    box-shadow: -2px 0px 7px var(--color-text);
    padding: 10px;
    z-index: 1;
    position: relative;
    margin-top: -40%;
}

@media only screen and (max-width: 1500px) {
    .modalAddProject {
        background: var(--bg-panel);
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
        position: relative;
        margin-top: -50%;
    }

    .ModalUrlsProject {
        background: var(--bg-panel);
        width: 100%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        position: relative;
        margin-top: -50%;
        left: 10px;
        height: 440px;
    }
}

@media only screen and (max-width: 1200px) {
    .modalAddProject {
        background: var(--bg-panel);
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
        position: relative;
        margin-top: -60% !important;
    }

    .ModalUrlsProject {
        background: var(--bg-panel);
        width: 100%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        position: relative;
        margin-top: -60% !important;
        left: 10px;
        height: 440px;
    }
}

@media only screen and (max-width: 992px) {
    .ModalUrlsProject {
        background: var(--bg-panel);
        width: 100%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        position: relative;
        margin-top: -70% !important;
        left: 10px;
        height: 440px;
    }

    .modalAddProject {
        background: var(--bg-panel);
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
        position: relative;
        margin-top: -70% !important;
    }

}

.tableResponsive {
    overflow-x: hidden;
}

@media only screen and (max-width: 600px) {
    .tableResponsive {
        overflow-x: scroll;
    }
}

@media only screen and (max-width: 768px) {
    .ModalUrlsProject {
        background: var(--bg-panel);
        width: 100%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        position: relative;
        margin-top: -100% !important;
        left: 10px;
        height: 440px;
    }

    .modalAddProject {
        background: var(--bg-panel);
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
        position: relative;
        margin-top: -100% !important;
    }
}

@media only screen and (max-width: 550px) {
    .modalAddProject {
        background: var(--bg-panel);
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
        position: relative;
        margin-top: -150% !important;
    }

    .ModalUrlsProject {
        background: var(--bg-panel);
        width: 100%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        position: relative;
        margin-top: -150% !important;
        left: 10px;
        height: 440px;
    }
}

@media only screen and (max-width: 465px) {
    .modalAddProject {
        background: var(--bg-panel);
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
        position: relative;
        margin-top: -180% !important;
    }

    .ModalUrlsProject {
        background: var(--bg-panel);
        width: 100%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        position: relative;
        margin-top: -180% !important;
        left: 10px;
        height: 440px;
    }
}

@media only screen and (max-width: 320px) {
    .modalAddProject {
        background: var(--bg-panel);
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        z-index: 1;
        position: relative;
        margin-top: -250% !important;
    }

    .ModalUrlsProject {
        background: var(--bg-panel);
        width: 100%;
        border-radius: 5px;
        box-shadow: -2px 0px 7px var(--color-text);
        padding: 10px;
        position: relative;
        margin-top: -250% !important;
        left: 10px;
        height: 440px;
    }
}

.labelUrls {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.horizontalBar {
    border-left: 2px solid var(--bs-gray-600);
    height: 300px;
}

.margin-Settings2 {
    margin-top: -25px;
}

@media only screen and (max-width: 767.98px) {
    .horizontalBar {
        border: none;
        height: auto;
    }

    .margin-Settings {
        margin-top: 30px;
    }

    .margin-Settings2 {
        margin-top: 30px;
    }

    .UrlsCard {
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-text);
        border-radius: 5px;
        height: auto;
        margin-bottom: 10px;
        padding-left: 7px;
        padding-right: 7px;
    }
}

.importButton {
    background: var(--color-primary);
    color: var(--color-text);
    width: 35%;
    border-radius: 5px;
    text-align: center;
    font-size: 17px;
    cursor: pointer;
}

.customSelect {
    width: 50% !important;
    height: 30px;
    border: 1px solid #999;
    font-size: 15px;
    color: var(--color-text);
    background-color: var(--bg);
    border-radius: 5px;
}

.IndividualTogglerClass {
    border-bottom: 1px solid var(--color-text);
    justify-content: space-between;
    border-radius: 7px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 15px;
    display: flex;
}

.togglerContainer {
    overflow-y: scroll !important;
    overflow: hidden;
    height: 400px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.loadingAddProject {
    font-weight: 400;
    font-size: 20px;
    color: var(--color-text);
}

    .loadingAddProject:after {
        overflow: hidden;
        display: inline-block;
        vertical-align: bottom;
        -webkit-animation: ellipsis steps(4,end) 900ms infinite;
        animation: ellipsis steps(4,end) 900ms infinite;
        content: "\2026"; /* ascii code for the ellipsis character */
        width: 0px;
    }

@keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

.loadingAdjustment {
    width: auto;
    position: relative;
    left: 55%;
    top: 120px;
}

.listyle {
    padding: 5px;
    color: var(--color-text);
    list-style: circle;
    border-radius: 10px;
}

    .listyle:hover {
        background: var(--bg);
        padding: 5px;
        color: var(--color-text);
        list-style: circle;
    }

.spanGeneralText {
    border-bottom: 1px solid var(--color-text);
    border-radius: 10px;
    width: auto;
    text-align: center;
    padding-left: 5px;
}
