/*@import "reset.css";*/


.chatbot {
    position: fixed;
    bottom: 100px;
    right: 0;
    cursor: pointer;
    z-index: 1;
    width: 152px;
}

.chatbot img{width: 100%;}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#close-button{
    background-color: #ea5514;
    border: 0px solid black;
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 5px;
}

#modal {
    display: none;
    position: fixed;
    width: 20%;
    height: 50%;
    max-width: 500px;
    max-height: 700px;
    z-index: 9998;
    /*overflow: auto;*/
    bottom: 30px;
    right: 10px;
    animation: fadeIn 1s ease-in-out;

}

#modal-iframe {
    width: 100%;
    height: 100%;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(196, 60, 60, 0.986);
    padding: 20px;
    color: #ffffff;
}

.modal.active {
    display: block;
}


@media screen and (max-width: 1200px) {
    #modal {
        display: none;
        position: fixed;
        width: 30%;
        height: 40%;
        max-width: 500px;
        max-height: 500px;

    }
}


/* 모바일화면 */

@media screen and (max-width: 768px) {
    #modal {
        display: none;
        position: fixed;
        width: 45%;
        height: 40%;
        max-width: 1000px;
        max-height: 500px;

    }
}

@media screen and (max-width: 500px) {
    #modal {
        display: none;
        position: fixed;
        width: 45%;
        height: 40%;
        max-width: 1000px;
        max-height: 500px;

    }
    .chatbot {
        width: 100px;
    }
}
