* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}





button {
    /* background: none; */
    border: none;
    cursor: pointer;
    overflow: hidden;
}
body {
    /* background: #999; */
}
.component-wrap {
    width: fit-content;
    height: fit-content;
    background: #999;
    padding: 100px 100px;
    border-radius: 30px;

    margin: 40px 0;

    border: 1px solid black;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 40px;
}














/*

    btn circle

*/

.btn-circle-wrap {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.btn-circle:hover {
    
}




/*

    btn rectangle

*/


.btn-rectangle-1 {
    width: 246px;
    height: 60px;

    border-radius: 10px;
    
    color: #fff;
    font-size: 20px;
    font-weight: 800;

}

@media screen and (max-width:640px) {
    .btn-rectangle-1 {
        width: 130px;
        height: 32px;

        border-radius: 8px;

        font-size: 10px;
    }
}

.btn-rectangle-2 {
    width: 246px;
    height: 60px;

    border-radius: 10px;

}

@media screen and (max-width:640px) {
    .btn-rectangle-2 {
        width: 130px;
        height: 32px;

        border-radius: 8px;
    }
}





.npc-chat-rectangle {
    width: 690px;
    /* height: 106px; */

    background: #fff;
    
    border-radius: 13px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;
    font-weight: 800;

    padding: 36px 52px;
    box-sizing: border-box;
    word-break: keep-all;
    text-align: center;

    line-height: 37px;

    position: relative;

    margin: 0 auto;
}


@media screen and (max-width:768px) {
    .npc-chat-rectangle {
        width: 80%;

    
        font-size: 16px;
        padding: 26px 30px;

    
        line-height: 27px;
    
    }
}


@media screen and (max-width:640px) {
    .npc-chat-rectangle {
        width: 300px;

    
        font-size: 13px;
        padding: 26px 30px;

    
        line-height: 20px;
    
    }
}

.npc-chat-point-top {
    width: 0;
    height: 0;

    border-top: 35px solid none;
    border-left: 35px solid none;
    border-right: 30px solid #fff;
    border-bottom: 40px solid transparent;

    border-radius: 0px 30px 0px 0px;

    position: absolute;

    top: -24px;
    left: 0;
    right: 0;

    margin: auto;
}

@media screen and (max-width:640px) {
    .npc-chat-point-top {
        border-top: 25px solid none;
        border-left: 25px solid none;
        border-right: 20px solid #fff;
        border-bottom: 30px solid transparent;
    
        border-radius: 0px 20px 0px 0px;
    
        top: -16px;
    }
}



.npc-chat-point-right {
    width: 0;
    height: 0;

    border-top: 35px solid none;
    border-left: 40px solid transparent;
    border-right: 30px solid none;
    border-bottom: 30px solid #fff;

    border-radius: 0px 0px 30px 0px;

    position: absolute;

    top: 0px;
    right: -24px;
    bottom: 0;

    margin: auto;
}









/*

    color option

*/

.btn-bg-color-blue {
    background: #1C228C;
}
.btn-bg-color-blue:hover {
    background: #8386BA;
}

.btn-bg-color-black {
    background: rgba(70, 70, 70, 0.72);
}
.btn-bg-color-black:hover {
    background: rgba(19, 19, 19, 0.72);
}