@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --pico-font-family: Manrope, Montserrat, Pacifico, cursive;;
    --pico-typography-spacing-vertical: 1.5rem;
    --pico-form-element-spacing-vertical: 0.1rem;
    --pico-form-element-spacing-horizontal: 0.25rem;
}

dialog article {
    max-width: 50vw;
}
dialog article header {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}
dialog article header h1 {
    margin-bottom: 0.3em;
}
dialog table .icon {
    width: 1.9em;
    padding: 0 0.5em 0.2em 0;
}
dialog article .buttons-create {
    float: right;
}
dialog article button, .buttons-create {
    font-size: large;
    display: inline-block;
    padding: 0.5rem 2rem;
    color: #fff;
    text-align: center;
    margin: 0;
    background: linear-gradient(90deg,#43c9ff .23%,#4da4f8 0,#af50ea 97.64%);
    border-radius: 3em;
    cursor: pointer;
    transition: all .5s ease;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 4px 10px 50px rgba(114, 10, 180, 0.2)
}
dialog article button:hover {
    opacity: .75
}

button.disabled {
    opacity: .5;
    pointer-events: none
}
tr.dte-inlineAdd input, select {
    margin: 0 0 0.25em 0;
    cursor: pointer;
}
.editable input, select {
    margin: 0 0 0.25em 0;
    cursor: pointer;
}
table .DTE_Field_Error {
    color: red;
    font-size: 0.6em;
}

.container-fluid {
    padding: 0;
    margin: 0;
}

#content-container.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0;
}
.card {
    padding: 0.04em;
}
iframe {
    width: 100%;
    height: 96.8vh;
    border: none;
}
.yes {
    display: block;
}
.no {
    display: none;
}
.title {
    text-align: left;
    background-color: rgba(118, 109, 122, 0.13);
    padding: 0.2em 0 0.2em 0;
    color: #0f3888;
    font-weight: bold;
    font-size: 0.8em;
    margin: 0;
}
.title span {
    padding: 0.2em 0.5em 0.2em 1em;
}
/* Buttons Switcher Grid/List view, Settings */
#menu-container {
    display: flex;
    flex-direction: row;
    background: #0D138B;
    color: white;
    height: 3vh;
    justify-content: center;
    justify-items: center;
}
.time {
    color: red;
}
ul.menu {
    background: transparent;
    padding: 0;
}
ul.menu li {
    padding: 0.1em 0.2em 0.1em 0;
}
ul.menu li button {
    border: none;
    color: white;
    background-color: transparent;
    border-radius: .2rem;
    padding: .2rem;
    transition: box-shadow .2s ease-in-out;
}
ul.menu li button i {
    padding: 0;
    margin: 0;
}

.fade-out-in {
    opacity: 0;
    animation: fade-out .5s .5s ease-out forwards, fade-in .5s ease-in forwards;
}
@keyframes fade-in {
    100% {
        opacity: 1;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
