.tabcontent {
    display: none;
}

.floated-chat-btn {
    z-index: 100;
    position: fixed;
    /* bottom: 10px; */
    top: 5px;
    right: 10px;
    background: #4a90e2;
    /* -webkit-box-shadow: 0 2px 20px 0 rgba(255, 48, 48, 0.693); */
    /* box-shadow: 0 2px 20px 0 rgba(255, 48, 48,0.75); */
    border-radius: 75px;
    color: #fff;
    padding: 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    font-size: 1.08rem;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    height: 52px;
    width: 52px;
}

.floated-chat-btn:hover {
    background: #097CFF;
    -webkit-box-shadow: 0 2px 20px 0 rgba(46, 130, 255, 0.75);
    box-shadow: 0 2px 20px 0 rgba(46, 130, 255, 0.75);
}

.floated-chat-btn:target {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -ms-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(0px);
    }
    60% {
        -webkit-transform: translateY(0px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(0px);
    }
    60% {
        -moz-transform: translateY(0px);
    }
}

@-ms-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -ms-transform: translateY(0);
    }
    40% {
        -ms-transform: translateY(0px);
    }
    60% {
        -ms-transform: translateY(0px);
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-30px);
    }
    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(0px);
    }
    60% {
        transform: translateY(0px);
    }
}

.floated-chat-w {
    z-index: 9999;
    position: fixed;
    /* bottom: 70px; */
    top: 0px;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.floated-chat-w.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.iframe {
    /* border: 2px solid black; */
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
    overflow: hidden;
    width: 360px;
    height: 420px;
    box-shadow: 0 7px 16px rgba(46, 46, 46, .15);
}

.iframe iframe {
    width: 100%;
    height: 100%;
}

#chatheadertitreg {
    margin-left: 45px;
    letter-spacing: 0.0625em;
}

.chat-keluar-button {
    font-weight: 600;
    padding: 10px 10px;
    /* border: 0px; */
    border: 1px solid red;
    color: white;
    background: red;
    /* margin: 0 0 10px 0; */
    border-radius: 30px;
    /* letter-spacing: 2px; */
}

.chat-keluar-button:hover {
    border-radius: 30px;
    border: 1px solid red;
    color: red;
    background: white;
    outline: none;
}

.chat-survey {
    font-size: ;
}

.checker:checked+.modal {
    display: flex;
}

.modal {
    z-index: 99;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* text-align: center; */
    background-color: rgba(0, 0, 0, .4);
}

.modal-body {
    width: 90%;
    height: 90%;
    background-color: #fff;
    border-radius: 4px;
    padding: 15px;
}

.modal-content {
    padding: 15px;
}

.modal-footer {
    overflow: hidden;
}

.modal__close {
    position: absolute;
    right: 25px;
    top: 30px;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
}

.modal__close:after, .modal__close:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 1.5em;
    background: #ccc;
    display: block;
    transform: rotate(45deg);
    left: 50%;
    margin: -3px 0 0 -1px;
    top: 0;
}

.modal__close:hover:after, .modal__close:hover:before {
    background: #aaa;
}

.modal__close:before {
    transform: rotate(-45deg);
}