/* 
Z-Index
Fade-menu: 2
Fade-confirm: 2
Menu: 3
Quits: 3
*/


/* Largura da barra de rolagem */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    /* também afeta rolagem horizontal, se houver */
}

/* Fundo da área da barra (transparente) */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Parte da barra que você arrasta */
::-webkit-scrollbar-thumb {
    background-color: #303030;
    border-radius: 10px;
}

/* Opcional: ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
    background-color: #505050;
}

* {
    margin: 0;
    user-select: none;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #252525;
    min-height: 110vh;
    color: white;
    overflow-x: hidden
}

.content-geral {
    width: 800px;
    min-height: 110vh;
    background-color: #1e1e1e;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 25px;
    padding: 10px 20px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.bar-right {
    display: flex;
    gap: 30px;
}

.fa-bell {
    color: #ffffff99;
}

.logo {
    transform: translateY(-75px);
    border-radius: 100%;
    margin-right: auto;
    margin-left: 50px;
}

.li-links {
    display: flex;
    justify-content: end;
    transform: translateY(-140px);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
}

.link {
    width: 50px;
    height: 50px;
    background-color: #303030;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.link i {
    color: #7b7b79;
    font-size: 23px;
}

.link:hover {
    transform: scale(1.1);
}

.link img {
    width: 30px;
    height: 30px;
}

.li-left {
    display: flex;
    gap: 10px;
}

.li-right {
    display: flex;
    gap: 10px;
}

.infos-barbearia {
    width: 90%;
    transform: translateY(-100px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 50px;
    margin-right: auto;
    position: relative;
}

.infos-barbearia h1 {
    font-size: 20px;
}

.infos-barbearia p {
    color: #ffffff99;
    font-size: 15px;
}

.history-agendaments {
    width: 90%;
    background-color: #303030;
    padding: 28px 18px;
    right: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-left: 4px solid #F2994A;
    box-sizing: border-box;
}

.history-agendaments:hover {
    transform: scale(1.1);
}

.history-agendaments i {
    color: #ffffff99;
}

.categoria {
    text-align: start;
    margin-right: auto;
    margin-left: 50px;
    transform: translateY(-50px);
    width: 80%;
}

.categoria p {
    font-size: 20px;
    transform: translateY(-25px);
}

.cats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category {
    background-color: #303030;
    width: 98%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    transition: 0.5s;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category p {
    transform: translateY(0px);
    font-size: 20px;
}

.category img {
    width: 60px;
}

.category:hover {
    transform: scale(1.03);
}

.banner {
    max-height: 300px;
    border-radius: 10px;
}

/* ADM - Party */

.content-admin {
    width: 800px;
    height: 110vh;
    background-color: #1e1e1e;
    margin-left: auto;
    margin-right: auto;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acesso-rapido {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acess {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.acesso-rapido p {
    font-size: 25px;
    margin: 20px;
}

.point {
    width: 150px;
    height: 150px;
    background-color: #272727;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.point img {
    width: 100px;
    height: 100px;
}

.point p {
    transform: translateY(-7px);
    margin: 0;
    font-size: 18px;
}

.point i {
    font-size: 70px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resize-celular {
    display: none;
}

.point:hover {
    transform: scale(1.05);
}

.menu-left {
    background-color: #1e1e1e;
    z-index: 3;
    width: 350px;
    height: 110vh;
    position: fixed;
    top: 0;
    left: -100%;
    transition: 0.8s;
}

.linear-menu {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.linear-menu p {
    font-size: 20px;
}

.linear-menu i {
    font-size: 25px;
    cursor: pointer;
    transition: 0.5s;
}

.linear-menu i:hover {
    color: #F2994A;
}

.linear-menu-user {
    display: flex;
    margin: 20px;
    align-items: center;
    gap: 20px;
}

.linear-menu-user img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 2.5px solid #F2994A;
}

.linear-menu-user p {
    width: fit-content;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}

.menu-links {
    margin: 20px;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    gap: 15px;
}

.menu-linked {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.menu-linked i {
    color: white;
    width: 20px;
    transition: 0.5s;
    font-size: 15px !important;
}

.menu-linked:hover {
    color: #F2994A;
    transform: scale(1.03);
}

.menu-linked:hover>i {
    color: #F2994A;
    transform: scale(1.03);
}

.menu-linked:hover>.fa-right-to-bracket {
    transform: rotate(180deg);
}

.fade-menu {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    transition: 0.5s;
    opacity: 0;
    display: none;
}

.fa-bars {
    transition: 0.5s;
    cursor: pointer;
}

.bar-left .fa-bars:hover {
    color: #F2994A;
    transform: scale(1.03);
}

.fa-bell {
    transition: 0.5s;
    cursor: pointer;
}

.bar-right .fa-bell:hover {
    color: #F2994A;
    transform: scale(1.03);
}

.fa-gear {
    transition: 0.5s;
    cursor: pointer;
}

.bar-right .fa-gear:hover {
    color: #F2994A;
    transform: scale(1.03);
}

.menu-right {
    background-color: #1e1e1e;
    z-index: 3;
    width: 350px;
    height: 110vh;
    position: fixed;
    top: 0;
    right: -100%;
    transition: 0.8s;
}

.not-avs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff99;
    gap: 20px;
}

.not-avs2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    align-items: start;
    width: 80%;
    justify-content: center;
    flex-direction: column;
    color: #ffffff99;
    gap: 20px;
}

.not-avs i {
    font-size: 100px;
}

.menu-right-gear {
    background-color: #1e1e1e;
    z-index: 3;
    width: 350px;
    height: 110vh;
    position: fixed;
    top: 0;
    right: -100%;
    transition: 0.8s;
}

.fade-confirm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    transition: 0.5s;
    display: none;
    opacity: 0;
}

.confirm-quit {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #171717;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 300px;
    transition: 0.5s;
}

.confirm-quit h1 {
    font-size: 25px;
}

.options {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
}

.y {
    background-color: #F2994A;
    padding: 10px 50px;
    color: black;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.n {
    background-color: #303030;
    padding: 10px 50px;
    color: white;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.y:hover {
    transform: scale(1.05);
    box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.2);
}

.n:hover {
    transform: scale(1.05);
    box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.2);
}

.confirm-quit.active {
    transform: translate(-50%, -50%) scale(1);
    animation: 0.8s quick-show ease-in-out;
}

@keyframes quick-show {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    25% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.8);
    }

    75% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (min-width: 600px) {
    .history-agendaments {
        display: none;
    }
}

@media (max-width: 800px) {
    .content-geral {
        width: 100%;
    }

    .content-admin {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .banner {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .banner {
        max-height: 200px;
    }
}

@media (max-width: 600px) {
    .banner {
        max-height: 250px;
    }

    .li-links {
        justify-content: space-between;
    }

    .hist {
        display: none;
    }

    .logo {
        margin-left: auto;
    }

    .infos-barbearia {
        margin-left: 25px;
    }

    .categoria {
        margin-left: 25px;
        width: 90%;
        box-sizing: border-box;
    }

    .category {
        width: 85%;
    }

    .infos-barbearia {
        text-align: center;
        justify-content: center;
    }

    .resize-pc {
        display: none;
    }
}

@media (max-width: 450px) {
    .link {
        width: 50px;
        height: 50px;
    }

    .link img {
        width: 30px;
        height: 30px;
    }

    .banner {
        max-height: 200px;
    }

    .li-links {
        width: 95%;
        gap: 5px;
    }

    .li-right {
        gap: 5px;
    }

    .li-left {
        gap: 5px;
    }
}

.clock-base {
    width: 700px;
    height: 600px;
    background-color: #202020;
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 4;
}

.fade-ui {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    transition: 0.5s;
    display: none;
    opacity: 0;
    z-index: 3;
}

.fit-close-ui {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.fit-close-ui i {
    transition: 0.5s;
    cursor: pointer;
}

.fit-close-ui i:hover {
    transform: scale(1.3);
    color: #F2994A;
}

.fit-days-ui {
    display: flex;
    flex-direction: column;
}

.set-config {
    display: flex;
    align-items: center;
}

.set-config hr {
    width: 2px;
    border: 0;
    background-color: #303030;
    height: 30px;
    margin: 0px 10px;
}

input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #303030;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    color: white;
}

input:focus {
    outline: none;
}

.base-input-ui {
    position: relative;
    margin: 20px 0;
    width: 50%;
}

.base-input-ui input {
    width: 100%;
    padding: 12px 10px 12px 10px;
    font-size: 16px;
    border: 2px solid #404040;
    border-radius: 4px;
    background: #272727;
    color: white;
}

.base-input-ui label {
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 16px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #202020;
    /* mesma cor do fundo do input */
    padding: 0 5px;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.base-input-ui input:focus+label,
.base-input-ui input:not(:placeholder-shown)+label {
    top: -0.5px;
    left: 8px;
    font-size: 12px;
    color: #f2994a;
}

.check-input {
    font-size: 15px;
    background-color: #101010;
    padding: 10px;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    color: #F2994A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
}

.week-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linear-desactive {
    width: 70%;
    height: 0px;
    border-top: 1px dashed #ffffff99;
    transform: translateY(1px);
    opacity: 0;    
}

.btn-proximo {
    width: 100%;
    position: absolute;
    bottom: 0px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 20px;
    color: black;
    background-color: #F2994A;
    transform: translateX(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    cursor: pointer;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(70%) brightness(90%) saturate(0%);
    opacity: 1;
}

input[type="time"] {
    cursor: pointer;
}

/* Animação do brilho/reflexo */
@keyframes shimmer {
    0% {
        background-position: -150% 0;
    }

    100% {
        background-position: 150% 0;
    }
}

/* Estilo do reflexo - só quando ativado */
.reflexo-ativo {
    position: relative;
    overflow: hidden;
    cursor: wait;
    background: #444;
    background: linear-gradient(90deg, #444 25%, #eee 50%, #444 75%);
    background-size: 200% 100%;
    animation: shimmer 5s linear forwards;
}

/* Desfoque no container */
.blur-ativo>* {
    filter: blur(3px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.3s ease;
}

.loading-dots {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* centraliza certinho */
    display: flex;
    gap: 12px;
    align-items: flex-end;
    justify-content: center;
    background-color: #1e1e1e;
    border-radius: 16px;
    padding: 40px 30px;
    width: 300px;
    height: fit-content;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    box-sizing: border-box;
}

.loading-dots span {
    width: 30px;
    height: 30px;
    background: #ff7b00;
    border-radius: 50%;
    animation: bounce 0.8s infinite ease-in-out;
    opacity: 0.4;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-18px);
        opacity: 1;
    }
}

.loading-dots.show {
    display: flex;
    animation: chargop 1s ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}

.loading-dots.close {
    display: flex;
    animation: chargcl 0.8s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
}

@keyframes chargop {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    25% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.8);
    }

    75% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes chargcl {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    25% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
    }

    75% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

.fade-charging {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    transition: 0.5s;
    opacity: 0;
    display: none;
    z-index: 5;
}

.ex-clocks {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    width: 620px;
    height: 560px;
    background-color: #1b1b1b;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 20px;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.6);
    z-index: 999;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
    overflow-y: auto;
    transition: 0.5s;
}

.card-times {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 0;
    box-sizing: border-box;
    border-radius: 8px;
    flex-direction: column;
    align-items: start;
    position: relative;
    border: 1px solid #ffffff10;
    overflow: hidden;
}

.card-day {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.card-day p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.chevron-day {
    transition: all 0.3s ease;
    color: #ffffff99;
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.card-times.expanded .card-day {
    align-items: flex-start;
}

.card-times.expanded .chevron-day {
    top: auto;
    bottom: 15px;
    transform: rotate(180deg) translateY(0);
}

.chevron-day.rotated {
    transform: translateY(-50%) rotate(180deg);
}

.card-times.expanded .chevron-day.rotated {
    transform: rotate(180deg) translateY(0);
}

.infos-base-time {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 15px;
    box-sizing: border-box;
}

.infos-base-time.expanded {
    max-height: 300px;
    padding: 0 15px 15px 15px;
}

.ds {
    opacity: 0.6;
}

.ds .card-day p {
    color: #ffffff99;
}

.container-horarios {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.time-group {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 10px 16px;
    gap: 12px;
    flex: 0 0 auto;
}

.time-separator {
    width: 1px;
    height: 35px;
    background-color: #4a4a4a;
    margin: 0 4px;
}

.time-slot {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    min-width: 50px;
}

.time-label {
    font-size: 10px;
    color: #ff9d5c;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.time-value {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 620px) {
    .ex-clocks {
        width: 100%;
        box-sizing: border-box;
    }

    .infos-time {
        width: 100%;
    }
}

.infos-time p {
    margin: 0;
}

.edit-time {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ffffff66;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 2;
}

.edit-time:hover {
    color: #F2994A;
    transform: translateY(-50%) scale(1.1);
}

.ds p {
    display: inline-block;
    white-space: nowrap;
}

.linear-desactive {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #ffffff33, transparent);
    margin: 0 10px;
}

.closed-label {
    font-size: 13px;
    color: #ffffff66;
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

button {
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    border: 0;
    background-color: #303030;
    color: white;
}

#date-name-ui {
    text-transform: capitalize;
}

@media (max-width: 700px) {
    .clock-base {
        width: 100%;
    }

    .week-day {
        gap: 20px;
    }

    .fit-days-ui span {
        font-size: 13px;
    }

    .base-input-ui {
        width: 40%;
    }
}

.card-notfy {
    width: 100%;
    background-color: #242424;
    display: flex;
    align-items: stretch;
    /* Altera para stretch para ocupar toda altura */
    padding: 10px;
    box-sizing: border-box;
    gap: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.card-notfy img {
    border-radius: 5px;
}

.hav-avs {
    width: 90%;
    margin: 0px auto;
}

.right-notfy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.right-notfy span {
    color: #ffffff99;
}

.ui-pacote-confirm {
    max-width: 600px;
    width: 100%;
    height: 600px;
    box-sizing: border-box;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    bottom: -100%;
    background-color: #202020;
    transition: 0.5s;
}



.li-inf {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0px auto;
    justify-content: space-between;
}

.btn-confirm {
    width: 100%;
    border-radius: 50px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f2994a;
    color: #1e1e1e;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    cursor: pointer;
}

.btn-cancel {
    width: 100%;
    border-radius: 50px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #303030;
    color: #ffffff99;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
}

.accept-conclued {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px;
    width: 320px;
    gap: 20px;
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #202020;
    border-radius: 20px;
    font-size: 25px;
    display: none;
    opacity: 0;
    transition: 0.5s;
}

.accept-conclued i {
    color: #ff7b00;
}

.accept-conclued.show {
    display: flex;
    opacity: 1;
    animation: 1s open-accept ease-in-out;
}

@keyframes open-accept {
    from {
        display: flex;
        opacity: 0;
        transform: translate(-50%, -70%);
    }

    to {
        display: flex;
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}