select {
    display: none;
}

.w-20 {
    width: 20%;
}
.w-10 {
    width: 10%;
}

.w-40 {
    width: 40%;
}
.bd-pink-500 {
    color: #fff;
    background-color: #d63384;
}
.block{
    display: block;
}

.bd-blue-800 {
    color: #fff;
    background-color: #052c65;
}
.bd-green-700 {
    color: #fff;
    background-color: #0f5132;
}
.bd-cyan-900 {
    color: #fff;
    background-color: #032830;
}
.loader img{
    width: 100px;
}
@media (max-width: 576px) {
    .w-20 {
        width: 100%;
    }
    .w-10 {
    width: 100%;
    }
    .w-40 {
        width: 100%;
    }
    .w-50 {
        width: 100% !important;
    }
}

.nav {
    --color: #000;
    background: none;
    width: 100px;
    height: 56px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    bottom: 10px;
}

.nav svg {
    height: 56px;
    fill: none;
    stroke: var(--color);
    stroke-width: 7px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav svg use:nth-of-type(1) {
    opacity: 1;
    stroke-dashoffset: 221;
    stroke-dasharray: 46 249;
    transition: stroke-dashoffset 0.12s linear 0.2s, stroke-dasharray 0.12s linear 0.2s, opacity 0s linear 0.2s;
}

.nav svg use:nth-of-type(2) {
    animation: stroke-animation-reverse 1.2s ease-out forwards;
}

.nav input {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
}

.nav input:checked + svg use:nth-of-type(1) {
    stroke-dashoffset: 175;
    stroke-dasharray: 0 295;
    opacity: 0;
    transition: stroke-dashoffset 0.07s linear 0.07s, stroke-dasharray 0.07s linear 0.07s, opacity 0s linear 0.14s;
}

.nav input:checked + svg use:nth-of-type(2) {
    animation: stroke-animation 1.2s ease-out forwards;
}

@keyframes stroke-animation {
    0% {
        stroke-dashoffset: 295;
        stroke-dasharray: 25 270;
    }
    50% {
        stroke-dashoffset: 68;
        stroke-dasharray: 59 236;
    }
    65% {
        stroke-dashoffset: 59;
        stroke-dasharray: 59 236;
    }
    100% {
        stroke-dashoffset: 68;
        stroke-dasharray: 59 236;
    }
}

@keyframes stroke-animation-reverse {
    0% {
        stroke-dashoffset: 68;
        stroke-dasharray: 59 236;
    }
    50% {
        stroke-dashoffset: 290;
        stroke-dasharray: 25 270;
    }
    65% {
        stroke-dashoffset: 295;
        stroke-dasharray: 25 270;
    }
    100% {
        stroke-dashoffset: 290;
        stroke-dasharray: 25 270;
    }
}

@keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -120px 60px;
    }
}

.modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 1.6rem 3rem;
    border: 3px solid black;
    border-radius: 5px;
    background: white;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.message {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
    margin-top: 0;
}

.mbtn {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    background: white;
    padding: 0.3rem 3.4rem;
    border: 3px solid black;
    margin-right: 2.6rem;
    box-shadow: 0 0 0 black;
    transition: all 0.2s;
}

.mbtn:last-child {
    margin: 0;
}

.mbtn:hover {
    box-shadow: 0.4rem 0.4rem 0 black;
    transform: translate(-0.4rem, -0.4rem);
}

.mbtn:active {
    box-shadow: 0 0 0 black;
    transform: translate(0, 0);
}

.options {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.options .mbtn {
   margin: 10px 0;
   text-decoration: none;
}
.options .mbtn:hover {
    color: black;
}
a {
    color: black;
}