.frame_outer {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.notEye {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.confirmContainer {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
    display: none;
}

.confirm {
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 100%;
    /* border-radius: 8px; */
    text-align: center;
    flex-direction: column;

    left: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 100;

    .content {
        margin-top: 3rem;
    }

    h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .warning {
        color: #ff1493;
        font-size: 13px;
        margin-bottom: 1.5rem;
    }

    .question {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 2rem;
        color: black;
    }

    .buttons-in-confirm {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    /* button {
        padding: 0.8rem 2rem;
        width: 18rem !important;
        font-size: 15px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
    } */

    .btn-yes {
        padding: 0.8rem 2rem;
        width: 18rem !important;
        font-size: 15px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        background-color: #ff1493;
        color: #fff;
        font-weight: bold;
        width: 30%;

        &:hover {
            opacity: 0.7;
        }
    }

    .btn-no {
        padding: 0.8rem 2rem;
        width: 18rem !important;
        font-size: 15px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        background-color: transparent;
        color: #333;
        text-decoration: underline;
        cursor: pointer;
        font-weight: bold;
        text-decoration: none;

        &:hover {
            opacity: 0.7;
            background-color: #f3dfea;
        }
    }

    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .full-screen-modal .modal-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: white;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        width: 16rem !important;
    }

    .btn-close-modal {
        background-color: #ff1493;
        color: #fff;
        font-weight: bold;
        width: 15rem !important;
        height: 2.5rem !important;
        display: flex;
        font-size: 15px;
        margin-top: 20px;
    }

    /* @media screen and (max-width: 640px) {
        .logo {
            width: 65% !important;
        }
    } */
}

.no-scroll {
    overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.full-screen-modal .modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 30rem !important;
}

.btn-close-modal {
  background-color: #ff1493;
  color: #fff;
  font-weight: bold;
  width: 15rem !important;
  height: 4rem !important;
  display: flex;
  font-size: 15px;
  margin-top: 20px;
  border-radius: 25px;
}
