[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: #f5f5f5;
    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: 1px solid #dbdbdb;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15) inset;
    padding: 10px 20px;
    border-radius: 3px;
    width: 100%;
    font-size: 15px;
}

.reply button {
    background: #0053a0;
    color: #fff;
    border-radius: 0;
    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;
    font-weight: bold;
    border-radius: 22px;
}

.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: #cf102d;
    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: 14px;
    font-weight: 300;
    margin-top: 9px;
}

.loading-wrap {
    display: flex;
    margin: 6rem 0 6rem;
}

.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;
}

.error {
    color: red;
    font-weight: normal;
    margin-top: 6px;
    display: block;
    margin-right: 10px;
    font-size: 11px;
}

/* Desktop */
@media (min-width:768px) {

    .reply button {
        width: 150px;
        margin-bottom: 0;
    }

    .reply {
        flex-direction: row;
    }

    .field {
        margin: 30px 0 0;
        padding: 23px 40px 25px;
    }

    .reply input {
        flex: 1;
        margin-bottom: 0;
    }

    .chat {
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {}

#product-details p {
    margin-bottom: 30px;
}

#product-details ul li {
    margin-bottom: 12px;
}

.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.btn-primary {
    background: #cf102d;
    color: #fff;
    padding: 12px 24px;
    display: inline-block;
    margin-top: 20px;
} */

/* version: 1.2 */