.subpage-sidebar-sublist-item a:before {
    right: 0;
}

.subpage-sidebar-sublist-item {
    padding-right: 20px;
}

[v-cloak] {
    display: none !important;
}

.conversion > p {
    background: #99c0e5;
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    border-bottom-right-radius: 0;
    line-height: 2.4rem;
    color: #0d4d8b;
}

.chat {
    margin-top: 3rem;
    margin-bottom: 10rem;
}

.field {
    border-top: 1px solid #e5e5e5;
    background: #f6f6f6;
    padding: 16px 15px 22px;
    margin: 30px -15px 0;
}

.reply {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
}

.reply input {
    height: 45px;
    box-sizing: border-box;
    border: solid 1px #0b4d8c;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15) inset;
    padding: 10px 20px;
    border-radius: 6px;
    width: 100%;
}

.reply button {
    background: #0d4d8b;
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    margin-top: 2px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    transition: opacity 0.15s linear;
    -webkit-transition: opacity 0.15s linear;
    -moz-transition: opacity 0.15s linear;
    -ms-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    border: 0;
    cursor: pointer;
}

.reply button svg {
    transform: scaleX(-1);
    fill: #fff;
    width: 27px;
    margin-right: 2px;
}

.loader {
    display: block;
    position: relative;
    height: 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}

.loader::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #0d4d8b;
    animation: 30s prog ease-in infinite;
    -webkit-animation: 30s prog ease-in infinite;
}

@keyframes prog {
    to {
        width: 100%;
    }
}

.loading {
    display: flex;
    flex-direction: column;
    width: 240px;
    align-items: center;
}

.loader + span {
    font-size: 12px;
    font-weight: 300;
    margin-top: 9px;
}

.loading-wrap {
    display: flex;
    margin: 5rem 0 3rem;
}

.chat-head {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 13px;
}

.v-enter-active,
.v-leave-active {
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -ms-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
}

.v-enter-from,
.v-leave-to {
    opacity: 0;
}

button:hover {
    opacity: 0.9;
}

.error {
    color: red;
    font-weight: normal;
    margin-top: 6px;
    display: block;
    margin-right: 10px;
    font-size: 11px;
}

.white-bg {
    background-color: #FFF;
    padding-bottom: 20px;
}

/* Desktop */
@media (min-width:768px) {
    .home-news-slider .col-sm-3 {
        width: 33.33% !important;
    }

    .reply button {
        width: 150px;
    }

    .reply {
        flex-direction: row;
    }

    .field {
        margin: 30px 0 0;
        padding: 16px 40px 22px;
    }

    .reply input {
        flex: 1;
    }

    .chat {
        margin-bottom: 20px;
        max-width: 900px;
    }
}

/* Mobile */
@media (max-width:768px) {
    .loading {
        margin: auto;
    }

    .btn-wrap {
        display: flex;
        justify-content: center;
    }
}

.btn.con {
    background: #43aa34;
    color: #fff;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.btn.con:hover {
    color: #fff;
    opacity: 0.9;
}

.incorrect-tag {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

.btn.di {
    background-color: #24366F;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1re, ;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin: 0 auto;
}

.btn-di-wrap {
    display: flex;
    justify-content: center;
    margin: 35px 0 !important;
}