@media screen and (max-width: 767px) { 
    .App { 
        
        
            background-color: rgb(195, 177, 177);
            background-image : none;
    
    }
}

.button-divider {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contents-divider {
    color: rgba(255, 255, 255, 0.3);
}

.ava-watermark {
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(202deg) brightness(106%) contrast(101%);;
}

.logo-wrap {
    display: block;
}

.App {
        
        
            background-color: rgb(195, 177, 177);
            background-image : none;
    
}

.g-wrap {
    
    
}

.motion-btn {
    background-color : #ffffff;
    color : #3B3735;
    border-color : #FFF0F0;
    border-radius : 8px;
    border-width : 2px;
    box-shadow : 0px 8px 12px 6px rgba(23, 28, 46, 0.08);;
}

.motion-btn:hover, .motion-button:active  {
    background-color : #FFE0E0;  
    border-color : #ffffff !important;
    color : #3B3735;
}

.chat-message {
    color : rgb(22, 38, 56);
    font-family : 'NanumSquareBold';
	text-shadow: 
		-1px 0px rgba(1, 1, 1, 0), 
		0px 1px rgba(1, 1, 1, 0), 
		1px 0px rgba(1, 1, 1, 0), 
		0px -1px rgba(1, 1, 1, 0);
}

.chat-button-wrapper {
    background-color : rgb(30, 43, 57);
    color : rgb(255, 255, 255);
    border-color : rgb(30, 43, 57);
    border-radius : 8px;
    border-width : 2px;
    box-shadow : 0px 8px 12px 6px rgba(23, 28, 46, 0.08);;
}

.privacy-input-wrapper {
    border-radius : 8px;
    border-color : rgb(30, 43, 57);
    border-width : 2px;
    box-shadow : 0px 8px 12px 6px rgba(23, 28, 46, 0.08);;
}

.user-input-wrapper {
    border-radius : 8px;
    border-color : rgb(30, 43, 57);
    border-width : 2px;
    box-shadow : 0px 8px 12px 6px rgba(23, 28, 46, 0.08);;
}
.user-input {
    border-bottom: 1px solid rgb(30, 43, 57);
}

.chat-button-wrapper:hover {
    border-color : rgb(27, 54, 83);
}

.chat-button {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: width ease 0.4s;
    z-index: 1;
}

.chat-button::after {
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    background: rgb(22, 38, 56);
    transition: width ease 0.4s;
}

.chat-button:hover::after {
    z-index: -1;
    width: 100%;
}

.fixed-chat-button-wrapper {
    background-color : rgba(255, 255, 255, 0.6);
    color : rgb(30, 43, 57);
    border-color : rgba(255, 255, 255, 0.2);
    border-radius : 8px;
    border-width : 2px;
    box-shadow : 0px 8px 12px 6px rgba(23, 28, 46, 0.08);;
}

.fixed-privacy-input-wrapper {
    border-radius : 8px;
    border-color : rgba(255, 255, 255, 0.2);
    border-width : 2px;
    box-shadow : 0px 8px 12px 6px rgba(23, 28, 46, 0.08);;
}
.fixed-user-input-wrapper {
    border-radius : 8px;
    border-color : rgba(255, 255, 255, 0.2);
    border-width : 2px;
    box-shadow : 0px 8px 12px 6px rgba(23, 28, 46, 0.08);;
}
.fixed-user-input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fixed-chat-button-wrapper:hover {
    border-color : rgb(255, 255, 255);
}

.fixed-chat-button {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: width ease 0.4s;
    z-index: 1;
}
.fixed-chat-button::after {
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    background: rgb(255, 255, 255);
    transition: width ease 0.4s;
}

.fixed-chat-button:hover::after {
    z-index: -1;
    width: 100%;
}

.share-button {
    position: absolute;
    width: 20px;
    padding : 8px;
    cursor : poniter;
    display : block !important;
    background-color : rgba(255, 255, 255, 0.3);
    border-radius : 20px;
}  
