﻿.info-div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    display: none;
}
.sticky {
    position: sticky;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: rgba(130, 130, 130, 0.5);
    font-size: 50px;
    text-align: center;
    line-height: 100px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}



.visible-div > div{
    text-align: left;
}

.visible-div > div > p{
    font-size: 16px;
    line-height: 21px;
}

.custom-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 3px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #000;
    background-color: #FFC61B;
    border-color: #FFC61B;
}
.custom-btn:hover {
    color: #fff;
}

@media (max-width: 998px) {
    .visible-div {
        width: 90%;
        padding: 30px 10px 0 10px;
        border: 1px solid black;
        border-radius: 4px;
        background-color: white;
        position: absolute;
        margin: 10px 5% 0 5%;
    }

    .close-button {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 30px;
        color: black;
    }
}

@media (min-width: 998px) {
    .visible-div {
        width: 70%;
        padding: 30px 20px;
        border: 1px solid black;
        border-radius: 4px;
        background-color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%)
    }

    .close-button {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 30px;
        color: black;
    }
}

@media (min-width: 1600px) {
    .visible-div {
        padding: 100px 200px;
        text-align: center;
        border: 1px solid black;
        border-radius: 4px;
        background-color: white;
        position: absolute;
        width: 50%;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%)
    }
}