.welcome-section {
    background-image: url('../assets/img/illustrations/users-with-social.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-box {
    border: 0.15rem solid #FF6B00;
    padding: 3rem 0.5rem;
    text-align: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
}

.note-list {
    background-color: #f2f2f3;
    border-radius: 9px;
    color: #a8aaae;
    padding: 15px;
}

.note-list.active {
    background-color: #FFF0E5;
    border: 1px solid #FF6B00;
}

.user-image {
    height: 39px;
    width: 39px;
    border-radius: 50%;
}

.fc-event-main p {
    color: #FFFFFF !important;
    margin-bottom: 0;
}

.icon-btn-input {
    position: absolute;
    right: 35px;
    bottom: 9px;
}

.bg-primary-gradient {
    background: linear-gradient(51deg, #FF6B00, #FFA467);
}

.platform-img {
    width: auto;
    height: 51px;
    margin-bottom: 13px;
}

.platform-side-img {
    height: 1.9rem;
    width: 1.9rem;
}

.platform-user-img {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
}

.tippy-box[data-theme~='custom-light'] {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.tippy-box[data-theme~='custom-light'] .tippy-arrow {
    color: #ffffff;
}

#card-element {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
}

.print-text p {
    margin-bottom: 0;
}

.text-pencil {
    border: 1px solid #ccc;
    padding: 20px;
    line-height: 1.6;
    cursor: url('../assets/img/pencil-drawing.png') 0 16, auto;
}

.highlighted {
    color: #FF6B00;
}

.text-purple {
    color: #ac61ef !important;
}

.bg-label-purple{
    background-color: #faf6fe !important;
    color: #ac61ef !important;
}

.border-purple {
    border: 1px solid #ac61ef !important;
}

.fs-13 {
    font-size: 13px;
}

.fs-15 {
    font-size: 15px;
}

.fs-17 {
    font-size: 17px;
}

.create-banner {
    background-image: url(../assets/img/banner.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 0.5rem;
    padding: 1.9rem;
}

.create-banner h3 {
    color: white;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.create-banner p {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.list-item-cursor {
    cursor: move;
}

.ui-sortable-placeholder {
    background: #f2f2f2;
    border: 1px dashed #ccc;
    height: 40px;
    visibility: visible !important;
}

.typing-dots span {
    animation: blink 1.4s infinite both;
    display: inline-block;
    font-weight: bold;
    font-size: 3rem;
    line-height: 1;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.share-icon {
    height: 3rem;
    width: 3rem;
    border: 1px solid;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    background-color: #FF6B00;
    color: #FFFFFF;
}

.share-icon:hover {
    color: #FF6B00;
    background-color: #FFFFFF;
    transition: 0.5s;
}

.paragraph-indent {
    text-indent: 3em;
    line-height: 1.6;
}


@keyframes blink {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

@media print {
    body {
        background-color: transparent !important;
    }

    .fs-h5 {
        font-size: 13px !important;
        color: black !important;
    }

    .fs-p {
        font-size: 11px !important;
        color: black !important;
    }

    .content-service p{
        font-size: 11px !important;
        color: black !important;
    }

    .table th {
        padding: 5px !important;
        font-size: 11px !important;
        color: black !important;
    }

    .table td {
        padding: 5px !important;
        font-size: 9px !important;
        color: black !important;
    }

    .print-text p {
        font-size: 11px !important;
        color: black !important;
        margin-bottom: 0;
    }
}