.container {
    padding: 70px 30px 0 30px;
}

.name-page {
    color: var(--text, #333333);
    text-align: left;
    font-family: var(--h-1-font-family, "Inter-Bold", sans-serif);
    font-size: var(--h-1-font-size, 36px);
    line-height: var(--h-1-line-height, 120%);
    font-weight: var(--h-1-font-weight, 700);
    position: relative;
    margin-bottom: 30px;
}

.modal_success,
.modal_error {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    z-index: 1000;
    gap: 10px;
    transition: 0.3s all;
}

.modal_error {
    border: 1px solid var(--accent);
}

.modal_success {
    border: 1px solid #7BE87B;
}

.modal_error.active,
.modal_success.active {
    top: 10px;
}

.modal_error .modal_text {
    color: #731E27;
}

.close-btn {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.button-container {
    position: relative;
    width: 100%;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
    visibility: hidden;
}

.loader.active {
    opacity: 1;
    visibility: visible;
}

.hide {
    opacity: 0 !important;
    visibility: hidden;
}

.hideHard{
    display: none !important;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid var(--accent);
}

.inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid var(--accent);
}

.inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid var(--accent);
}

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}


*::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: var(--secondary);
}

*::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 20px;
}

.red {
    background: var(--red);
}

.yellow {
    background: var(--yellow);
}

.green {
    background: var(--green);
}

.gray {
    background: var(--gray);
}

.blue {
    background: var(--blue);
}

.placeholder{
    color: var(--icon);
    font-size: 14px;
}

#modal_card .modal-content h2{
    cursor: copy;
}