﻿* {
    -webkit-print-color-adjust: exact !important;
    /* Chrome, Safari, Edge */
    color-adjust: exact !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --font-cirvalue-day: #c0a3ff;
    --light-gray-color: #f7f7f7;
    --medium-gray-color: #ededed;
    --default-gray-color: #c6c6c6;
    --default-hover-color: #2affff;
    --default-gradient-border: linear-gradient(230deg, rgb(205 176 255) 20%, rgb(135 255 165) 30%, rgb(24 232 255) 70%, rgb(69 77 255) 80%);
    /* --input-gradient-border: linear-gradient(310deg, rgb(205 176 255) 20%, rgb(135 255 165) 30%, rgb(24 232 255) 70%, rgb(69 77 255) 80%); */
    --input-gradient-border: linear-gradient(342deg, rgb(205 176 255) 20%, rgb(135 255 165) 30%, rgb(24 232 255) 70%, rgb(69 77 255) 80%);
    --default-modal-color: rgb(27 29 53 / 80%);
    --default-input-background: #231f20;
}

@page {
    margin: 0;
    size: 215mm 340mm;
}

html,
body {
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: var(--medium-gray-color) !important;
    overflow-x: hidden;
}

html {
    margin-right: calc(-1 * (100vw - 100%));
}

input,
button {
    color: var(--medium-gray-color);
}

textarea,
input:not([type="button"]),
select {
    background-color: var(--default-input-background);
    color: var(--medium-gray-color);
    border: none;
}

::placeholder {
    font-family: "Poppins", sans-serif;
}

.button {
    width: 100%;
    padding: 12px;
    border-radius: 7px;
    background-color: black;
    font-weight: 300;
    font-family: 'Space Grotesk', sans-serif;
    border: none;
    cursor: pointer;
}

.button span {
    font-weight: 300;
}

.button:hover {
    color: var(--default-hover-color);
}

.inputs-border {
    background: var(--input-gradient-border);
    padding: 1px;
    border-radius: 7px;
}

.inputs-border:has(img),
.inputs-border :has(img) {
    padding: 3%;
}

.hover-inputs-border:hover {
    background: var(--default-hover-color);
}

.img-inpeople-default {
    width: 180px;
    margin-bottom: 42px;
    opacity: .3;
}

.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: transparent;
}

.scrollbar::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--light-gray-color);
}

.tooltip {
    position: absolute;
    padding: 6px 15px;
    max-width: 350px;
    z-index: 9999;
    font-size: 8pt;
    background-color: #2a282c;
    color: var(--light-gray-color);
    opacity: 0.9;
    text-align: center;
    border-radius: 25px;
}

.hidden {
    display: none !important;
}

.tele-info {
    text-align: left;
    background-color: #ffffff;
    border: solid 1px #aaaaaa;
}

.tele-info,
.tele-cancel {
    color: black !important;
}

.tele-success {
    text-align: center;
    color: var(--light-gray-color);
    background-color: rgb(35, 160, 50);
    border: solid 1px rgb(0, 140, 20);
    font-size: 10pt;
}

.tele-not-allowed {
    text-align: center;
    color: rgb(50, 0, 0);
    background-color: rgb(255, 85, 70);
    border: solid 1px orangered;
    font-size: 10pt;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.clickable {
    cursor: pointer;
}

.draggable {
    cursor: move;
}

.default-cursor {
    cursor: default !important;
}

.main-container-background {
    margin: 0 auto;
    background-size: cover;
    backdrop-filter: saturate(1.5) !important;
    /* background-image: linear-gradient(320deg, rgba(135, 255, 165, 1) 0%, rgba(24, 232, 255, .8) 0%, rgba(69, 77, 255, .8) 80%, rgba(205, 176, 255, 1) 160%); */
    background-color: black;
}

.line-clamp {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.pass-rule-container {
    padding: 5px;
}

.pass-rule-ok {
    text-decoration: line-through;
    color: green;
}

.pass-rule-warning {
    color: orangered;
}

.div-modal::before {
    content: "";
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
}

.div-modal {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    background: #ffffff11;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.div-modal-content {
    width: 50%;
    margin: 4% auto;
    background: #000000cc;
    padding: 16px;
    font-size: 0.9vw;
    border-radius: 15px;
}

.hidden-input {
    display: none;
}


@media only screen and (max-width: 768px) {
    .div-modal-content {
        width: 80% !important;
        font-size: 1em !important;
    }
}

@media only screen and (max-width: 550px) {
    .div-modal-content {
        width: 100% !important;
        font-size: .8em !important;
    }
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}