:root {
    --primary-color: #0957df;
    --white: #ffffff;
    --black: #1b1b1f;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
a,
a:hover {
    text-decoration: none;
}

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}
ul,
p {
    margin: 0;
    padding: 0;
    /* list-style: none; */
}

/* disabled link */
[aria-current="page"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

body {
    padding-top: 70px;
}

#chat-root {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
}
#chat-root .chat {
    position: relative;
}
#chat-root .chat .chat-open-img {
    cursor: pointer;
}
#chat-root .chat .chat-open {
    display: none;
    position: absolute;
    width: 312px;
    border-radius: 10px;
    background-color: #ebebeb;
    bottom: 95px;
    right: 0;
}
#chat-root .chat .chat-open .chat-title {
    /*background-color: white;*/
    display: flex;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding-bottom: 10px;
    background-color: #ebebeb;
    border-bottom: 1px solid #fff;
}
#chat-root .chat .chat-open .chat-title .chat-text {
    margin: auto;
}
#chat-root .chat .chat-open .chat-title .chat-text span {
    color: black;
    font-weight: 700;
    font-size: 17px;
    display: block;
    text-align: center;
    margin-left: 20px;
    margin-top: 5px;
}
#chat-root .chat .chat-open .chat-title .close {
    margin-right: 10px;
    margin-top: 5px;
    cursor: pointer;
}
#chat-root .chat .chat-open .chat-room {
    padding: 20px 20px;
}
#chat-root .chat .chat-open .chat-room .chat-auto {
    display: flex;
    justify-content: space-between;
}
#chat-root .chat .chat-open .chat-room .chat-auto img {
    width: 38px;
}
#chat-root .chat .chat-open .chat-room .chat-auto .text-chat-auto {
    background-color: white;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    margin-left: 8px;
}
#chat-root .chat .chat-open .chat-room .setting {
    border-radius: 4px;
    padding: 0 15px 20px 15px;
    background-color: white;
    margin-top: 25px;
}
#chat-root .chat .chat-open .chat-room .setting .input {
    width: 100%;
    padding: 8px 10px;
    margin-top: 10px;
    display: inline-block;
    border: 1px solid #0957DE;
    box-sizing: border-box;
    outline: 0;
    resize: none;
}
#chat-root .chat .chat-open .chat-room .chat-send {
    display: flex;
    justify-content: center;
}
#chat-root .chat .chat-open .chat-room .chat-send .send {
    background: linear-gradient(to left, #0957DE, #9E4EE9);
    border-radius: 40px;
    width: 135px;
    height: 45px;
    margin: auto;
    margin-top: 20px;
    border: none;
    color: white;
}


#phone-root {
    position: fixed;
    top: 30%;
    left: 0;
    z-index: 100;
    background-color: #0957DF;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#phone-root img {
    width: 41px;
}

#phone-root .phone {
    display: block;
    /*margin: 45px 10px 20px 10px;*/
    margin: 20px 10px 20px 10px;
}

#phone-root .zalo {
    display: block;
    display: none;
    margin: 20px 10px 45px 10px;
}

.single-comment-form {
    display: none;
}

#download-root {
    position: fixed;
    bottom: 35px;
    left: 2px;
    z-index: 100;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

/*#download-root .android:hover {*/
/*    margin-top: -18px;*/
/*}*/

#download-root .ios:hover div {
    /*background-image: url('../../../images/icon/qr-ios.png');*/
    background-image: url('../../../images/appstore.png');
    width: 230px;
    height: 64px;
}

#download-root .android:hover div {
    background-image: url('../../../images/google-store.png');
    width: 230px;
    height: 64px;
}

#download-root .ios div {
    background-image: url('../../../images/icon/ic-ios.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 66px;
    height: 65px;
    transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
}

#download-root .android div {
    background-image: url('../../../images/icon/ic-android.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 66px;
    height: 65px;
    transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
}
.scroll-top{
    position: fixed;
    width: 75px;
    z-index: 999;
    bottom: 20px;
    right: 24px;
    height: 56px;
    cursor: pointer;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}
.loader.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-height: 778px) {
    #chat-root {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    #chat-root, #phone-root, .scroll-top {
        display: none;
    }

    body {
        padding-top: 57px;
    }
}

h2.title-h2 {
    font-size: 45px;
    line-height: 54px;
    color: #0957DF;
    font-weight: 500;
}
