* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pop-up {
    position: fixed;
    z-index: 1000;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.66);
    display: none;
}

.pop-in {
    position: relative;
    max-height: 100%;
    margin: 2rem;
}

.box {
    position: relative;
    width: 40rem;
    max-width: 100%;
    max-height: 100%;
    color: rgb(0, 0, 0);
    margin: 2rem auto;
    border-radius: 0.5rem;
    background: white;
}

.box-in {
    position: relative;
    max-height: calc(100vh - 4rem);
    padding: 1rem;
    overflow: auto;
}

.box-in h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    vertical-align: baseline;
}

.btns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}

.btns button {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    appearance: button;
    background-color: transparent;
    background-image: none;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
}

.btns button img {
    border-radius: 1.5rem;
}

.btns button h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.canc {
    /* position: absolute; */
    right: 0;
    width: 44%;
    top: 0;
    /* bottom: 0; */
    /* background-color: #181715; */
    transform: translateX(102%);
    transition: all 1s ease;
    z-index: 999;
    clear: both;
}

.canc a {
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #fff;
    position: absolute;
    right: 40px;
    top: 40px;
    overflow: hidden;
    z-index: 55;
    transform: translateZ(0);
    border: 1px solid transparent;
    transition: all .3s ease;
}

.canc a:before,
.canc a:after {
    top: 18.5px;
    left: -1px;
    content: "";
    position: absolute;
    width: 42px;
    height: 2px;
    background-color: #888;
    transition: all .3s ease;
    perspective: 30px;
}

.canc a:after {
    transform: rotate(45deg) translateZ(0);
}

.canc a:before {
    transform: rotate(-45deg) translateZ(0);
}

.not-con {
    background-color: #fff;
    display: none;
    z-index: 9999;
    position: relative !important;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 200px;
}

.not-con h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.sect {
    background-color: #fff;
    padding: 1rem;
    display: none;
    margin-top: 200px;
    border-radius: 10px;
}

.sect h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 13px;
}

.sect button {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    font-weight: 700;
    border-radius: 10px;
    width: 100%;
}

.form {
    padding: 1rem;
    border-radius: 10px;
    display: none;
    margin-top: 150px;
}

.form h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form textarea {
    width: 100%;
    display: block;
    border-radius: 0.5rem;
    border-width: 1px;
    border-color: rgb(209 213 219 / 1);
    padding: 0.5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    color: rgb(17 24 39 / 1);
    height: 130px;
    margin-bottom: 16px;
}

.form button {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    font-weight: 700;
    border-radius: 10px;
    width: 100%;
}