/* start global */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Bebas+Neue&family=Lexend+Deca:wght@400;500&family=Marck+Script&family=Open+Sans:wght@400;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Yellowtail&display=swap');

:root {
    --main-color: #00a99d;
    --second-color: #FE8D28;
    --hover-color: #004071;
    --field-background: #E4E8F3;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    user-select: none;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend Deca', sans-serif;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.default-link {
    text-decoration: none;
    color: white;
}

.hidden {
    display: none !important;
}

.empty-block {
    height: 200px;
}

.float-left-zero {
    left: 0px;
}

.float-right-zero {
    right: 0px;
}

.action-pointer {
    cursor: pointer;
}

.app-logo {
    border-radius: 50%;
    width: 150px;
}

.text-main-color {
    color: var(--main-color) !important;
}

.text-second-color {
    color: var(--second-color);
}

.text-gray-color {
    color: var(--field-background);
}

.text-deep-gray-color {
    color: #636e72;
}

.text-navy-color {
    color: var(--hover-color);
}

.main-color {
    background-color: var(--main-color);
}

.field-background-color {
    background-color: var(--field-background);
}

.orange-color {
    background-color: #ffbe76;
}

.faded-poster {
    background-color: #81ecec;
}

.light-purple {
    background-color: #a29bfe !important;
}

.shadow-bottom {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.07);
}

#pre-loader {
    background: white;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100000;
}

#pre-loader-logo {
    width: 180px;
}

/* Main Form Components */

.action-button {
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: 10px;
    background-color: var(--main-color);
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: bold;
    width: 100%;
    border: none;
    border-radius: 0.5rem;
    text-transform: uppercase;
    transition: .3s ease-in-out all;
}

.action-button:hover {
    background-color: var(--main-color);
    color: var(--hover-color);
}

.main-rounded {
    border-radius: 13px !important;
}

.unread-badge {
    position: absolute;
    top: 17%;
    /* bottom: 0; */
    /* left: 0; */
    width: 7px;
    height: 7px;
    background: red;
    border-radius: 25px;
    /* right: 72px; */
}

.round-btn {
    background: var(--main-color);
    color: #fff;
    padding: 0.5rem 0.8rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.ar-mini-round-btn-1 {
    background: var(--main-color);
    color: #fff;
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    border-radius: 0px 20px 20px 0px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.ar-mini-round-btn-2 {
    background: var(--field-background);
    color: black;
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    border-radius: 20px 0px 0px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.en-mini-round-btn-1 {
    background: var(--main-color);
    color: #fff;
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    border-radius: 20px 0px 0px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.en-mini-round-btn-2 {
    background: var(--field-background);
    color: black;
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    border-radius: 0px 20px 20px 0px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

@media only screen and (max-width: 450px) {

    .ar-mini-round-btn-1 {
        background: var(--main-color);
        color: #fff;
        padding: 0.5rem 0.6rem;
        border: none;
        outline: none;
        border-radius: 0px 20px 20px 0px;
        font-size: 0.5rem;
        font-weight: bold;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }

    .ar-mini-round-btn-2 {
        background: var(--field-background);
        color: black;
        padding: 0.5rem 0.6rem;
        border: none;
        outline: none;
        border-radius: 20px 0px 0px 20px;
        font-size: 0.5rem;
        font-weight: bold;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }

    .en-mini-round-btn-1 {
        background: var(--main-color);
        color: #fff;
        padding: 0.5rem 0.6rem;
        border: none;
        outline: none;
        border-radius: 20px 0px 0px 20px;
        font-size: 0.5rem;
        font-weight: bold;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }

    .en-mini-round-btn-2 {
        background: var(--field-background);
        color: black;
        padding: 0.5rem 0.6rem;
        border: none;
        outline: none;
        border-radius: 0px 20px 20px 0px;
        font-size: 0.5rem;
        font-weight: bold;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }
}

/*-------------------Start Sign in Form--------------------*/
.signin {
    position: absolute;
    position: fixed;
    top: 40%;
    left: 50%;
    width: 315px;
    transform: translate(-50%, -50%);
    z-index: 999;
    visibility: hidden;
    transition: all .3s ease-in-out;
    z-index: 1000;
}

.signin-show {
    top: 50%;
}

.signin .form {
    background-color: #fff;
    display: block;
    padding: 1rem;
    max-width: 400px;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border-left: 5px solid #004071;
    /* border-radius: 0.5rem; */
    box-shadow: 2px 5px 20px 3px rgba(0, 0, 0, 0.1), 0 8px 9px 2px #71aaa6;
}

.form .signin-close,
.signup-close {
    color: #fff;
    font-weight: bold;
    border-radius: 100%;
    position: absolute;
    height: 40px;
    width: 40px;
    background: var(--main-color);
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s ease-in-out;
}

.form .close:hover,
.signup-close:hover {
    color: #004071;
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #232323;
    font-family: 'Lucida Sans', sans-serif;
    margin-top: 10px;
}

.input-container {
    position: relative;
}

.input-container input,
.form button {
    outline: none;
    border: 1px solid #e5e7eb;
    margin: 5px 0;
}

.input-container input {
    background-color: #fff;
    padding: 1rem;
    padding-right: 3rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.input-container span {
    display: grid;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    place-content: center;
    font-weight: normal;
    color: var(--main-color);
}

.input-container span svg {
    color: #9CA3AF;
    width: 1rem;
    height: 1rem;
}

.signup-link {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
    /* display: flex; */
    /* justify-content: center; */
    /* align-self: center; */
    width: 100%;
}

.signup-link .btn-signup {
    padding-left: 10px;
    color: #71aaa6;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease-in-out all;
}

.signup-link .btn-signup:hover {
    color: var(--main-color);
}

@media only screen and (max-width: 450px) {
    .form {
        width: 300px;
    }

    .form-title {
        font-size: 15px;
        font-weight: 600;
    }

    .input-container input {
        padding: .7rem;
        font-size: 13px;
        width: 100%;
        line-height: 0;
    }

    .submit {
        font-size: 0.8rem;
        line-height: 10px;
        font-weight: normal;
    }

    .signup-link {
        font-size: 0.8rem;
        line-height: 1rem;
    }
}

/*-------------------Start Sign Up Form--------------------*/
.signup {
    position: absolute;
    position: fixed;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.signup-show {
    left: 50%;
}

.form-sign-up {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    padding: 1rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border-left: 5px solid #004071;
    position: relative;
    background-color: #fff;
    box-shadow: 2px 5px 20px 3px rgba(0, 0, 0, 0.1), 0 8px 9px 2px #71aaa6;
}

.title-sign-up {
    font-size: 20px;
    font-weight: 600;
    width: 300px;
    text-align: center;
    color: #232323;
    font-family: 'Lucida Sans', sans-serif;
    margin-top: 10px;
}

.btn-signin {
    text-align: center;
    font-size: 0.875rem;
}

.btn-signin a {
    color: #71aaa6;
    cursor: pointer;
    padding-left: 10px;
    text-transform: uppercase;
    transition: .3s ease-in-out all;
}

.btn-signin a:hover {
    color: var(--main-color);
}

.name-sign-up {
    display: flex;
    width: 300px;
    gap: 6px;
}

.name-sign-up label .input {
    width: calc((300px - 6px) / 2);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;

}

.form-sign-up label {
    position: relative;
}

.form-sign-up label input {
    background-color: #fff;
    color: #232323;
    width: 300px;
    padding: 20px 05px 05px 10px;
    outline: 0;
    /* border: 1px solid rgba(105, 105, 105, 0.397); */
    /* border-radius: 10px; */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-sign-up label input+span {
    color: #232323;
    position: absolute;
    left: 10px;
    top: 0px;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form-sign-up label input:placeholder-shown+span {
    color: #9CA3AF;
    /* top: 12.5px; */
    font-size: 0.9em;
    transition: .3s ease-in-out all;
}

/* 
.form-sign-up label input:focus+span,
.form-sign-up label input:valid+span {
    color: #004071;
    font-weight: normal;
    top: 0px;
    font-size: 10px;
} */
.input {
    font-size: medium;
}

#terms-check:checked {
    accent-color: var(--main-color);
    color: white;
}

.submit-sign-up {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
    background-color: var(--main-color);
}

.submit-sign-up:hover {
    color: #004071;
}

@media only screen and (max-width: 450px) {
    .title-sign-up {
        font-size: 15px;
        font-weight: 600;
    }
}

/*-------------------End Sign Up Form--------------------*/
.verification-section,
.forgot-password-section,
.reset-password-section,
.unsubscribe-section,
.payment-phone-section {
    height: 75vh;
    padding-top: 80px;
}

/* =============================================================
                 start navbar section
================================================================ */
nav {
    position: fixed;
    position: relative;
    z-index: 999;
    width: 100%;
}

nav::after {
    content: '';
    clear: both;
    display: table;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    height: 250px;
    width: 100%;
    background-color: #dae7e6;
    z-index: -1;
    transition: .4s linear;
    clip-path: ellipse(81% 49% at 81% 0%);
}

nav .logo-e {
    float: left;
    font-size: 25px;
    line-height: 70px;
    padding-left: 25px;
}

nav .logo-e img {
    width: 150px;
}

nav ul {
    float: right;
    list-style: none;
    /* margin-right: 15px; */
    position: relative;
}

nav ul li {
    float: left;
    margin: 0 5px;
    /* display: inline-block; */
}

nav ul li a {
    color: #232323;
    text-decoration: none;
    line-height: 70px;
    font-size: 17px;
    padding: 10px 8px;
    font-weight: normal;
}

nav .li-s li .arrow,
nav .li-s li .show {
    position: relative;
    margin-right: 10px;

}

nav .li-s li .arrow::after,
nav .li-s li .show::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -11px;
    width: 0px;
    height: 0px;
    border-top: 8px solid #333;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;

}

nav .li-s li .show::after {
    left: 90px;
}

nav .li-s li .arrow:hover::after,
nav .li-s li .show:hover::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -11px;
    width: 0px;
    height: 0px;
    border-top: 8px solid var(--main-color);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

nav ul li:not(:last-child) a:hover {
    color: var(--main-color);
}

nav ul ul {
    margin-right: 10px;
    overflow: hidden;
    position: absolute;
    top: 90px;
    border-top: 2px solid var(--main-color);
    background-color: #ebf7f6;
    opacity: 0;
    visibility: hidden;
    transition: top .3s;
}

nav ul li:hover>ul {
    top: 72px;
    opacity: 1;
    visibility: visible;
}

nav ul ul li {
    position: relative;
    margin: 0 20px;
    width: 150px;
    float: none;
    display: list-item;
}

nav ul ul li:not(:last-child) {
    border-bottom: 1px solid var(--main-color);
}

nav ul ul li a:hover {
    color: var(--main-color);
    box-shadow: none;
}

.show,
.icon,
.nav-mini-btn {
    display: none;
}

.li-s .download_btn {
    background: var(--main-color);
    color: #fff;
    padding: 0.5rem 0.8rem;
    margin-left: 8px;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.li-s .download_btn:hover {
    color: #004071;
}

nav .li-s .showform,
.signout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    /* margin-left: 10px; */
    cursor: pointer;
}

nav .li-s .showform:hover,
.signout-btn:hover {
    color: var(--main-color);
}

.image_flag {
    width: 35px;
    height: 35px;
}

@media only screen and (max-width: 767px) {
    nav::before {
        height: 130px;
        width: 100%;
    }

    nav .logo-e img {
        margin-top: 0px;
        width: 100px;
    }

    nav ul {
        top: 70px;
        margin-right: 0px;
        float: left;
        position: absolute;
        background-color: #dae7e6;
        transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
    }

    nav .logo-e {
        padding-left: 30px;
        width: 100%;
    }

    nav ul li,
    nav ul ul li {
        display: block;
        width: 100%;
        margin-bottom: 0;
    }

    nav .li-s>li:last-child {
        margin-bottom: 10px;
    }

    nav ul ul {
        padding-right: 40px;
        top: 70px;
        position: static;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
        border-top: none;

    }

    nav ul li a,
    nav ul ul li a {
        line-height: 38px;
        font-size: 15px;
    }

    .show {
        display: block;
        color: #232323;
        font-size: 15px;
        padding: 0 10px;
        line-height: 40px;
        cursor: pointer;
    }

    .show:hover {
        color: var(--main-color);
    }

    .icon {
        display: block;
        color: var(--main-color);
        position: absolute;
        right: 40px;
        line-height: 75px;
        font-size: 25px;
        cursor: pointer;
    }

    nav ul li a:hover {
        box-shadow: none;
    }

    nav ul ul li a:hover {
        box-shadow: none;
    }

    .show+a,
    ul {
        display: none;
    }

    [id^=btn]:checked+ul {
        display: block;
    }

    .li-s .download_btn {
        background: none;
        color: #232323;
        padding: 0;
        margin-left: 10px;
        font-size: 15px;
        font-weight: normal;
    }

    .li-s .download_btn:hover {
        color: var(--main-color);
    }

    nav .li-s .showform,
    .signout-btn {
        display: inline-flex;
        justify-content: start;
        height: 50px;
        margin-left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    nav .logo-e img {
        margin-top: 0px;
        width: 100px;
    }

    nav ul {
        margin-right: 0px;
    }

    nav ul li a {
        font-size: 15px;
        padding: 10px 3px;
    }
}

/* =============================================================
                 Start Card Styling
================================================================ */
.article-card {
    padding-top: 10px !important;
    display: flex !important;
    justify-content: start !important;
    align-items: center !important;
    border-radius: 10px;
}

.card .name {
    height: 50px;
}

.card .card-image {
    background: var(--main-color);
    width: 148px;
    height: 148px;
    border-radius: 50%;
}

.card .card-image img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid whitesmoke;
}

.card .card-content {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card .card-content h2 {
    font-size: 20px;
}

.card .card-content h4 {
    font-size: 15px;
}

.card .card-content h6 {
    font-size: 14px;
}

.card .card-content .description {
    font-size: 16px;
    color: #666;
}

.card-content .read-more {
    padding: 8px;
    width: 100px;
    border: none;
    background-color: var(--main-color);
    /* color: #004071 !important; */
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.card-content .read-more:hover>a {
    color: #004071;
}

@media only screen and (max-width: 450px) {
    .articles .title {
        font-size: 18px;
    }

    .articles .slide-content .card h2 {
        font-size: 17px;
        font-weight: bold;
    }

    .articles .slide-content .card h4 {
        font-size: 11px;
    }

    .articles .slide-content .card h6 {
        font-size: 10px;
    }

    .articles .slide-content .card .card-content .description {
        font-size: 14px;
    }

    .wrapper .slide-content {
        grid-auto-columns: 100%;
    }
}

@media only screen and (min-width: 451px) and (max-width: 767px) {
    .wrapper .slide-content {
        grid-auto-columns: calc((100%/2) - 20px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .wrapper .slide-content {
        grid-auto-columns: calc((100%/3) - 12px);
    }
}

@media only screen and (min-width: 1024px) {
    .wrapper .slide-content {
        grid-auto-columns: calc((100%/4) - 12px);
    }
}

/* =============================================================
                Start Go To Top
================================================================ */
.arrow-to-top {
    /* transform: rotate(90deg); */
    bottom: 45px;
    right: 10px;
    position: fixed;
    background: var(--main-color);
    opacity: .6;
    color: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    justify-content: center;
    display: none;
    align-items: center;
    cursor: pointer;
}

.arrow-to-top:hover {
    color: #004071;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .arrow-to-top {
        height: 30px;
        width: 30px;
    }

    .arrow-to-top .material-symbols-outlined {
        font-size: 20px;
    }
}

/* =============================================================
                Start footer section
================================================================ */
.footer {
    /* width: auto; */
    bottom: 0;

    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.footer .footer-content {
    background-color: #fff;
    padding: 60px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    gap: 20px;
}

.footer .footer-content h4 {
    font-size: 19px;
}

.footer-content .find-us h4 {
    padding-bottom: 5px;
}

.footer .footer-content .social-icons .svg-inline--fa {
    color: #9CA3AF;
    cursor: pointer;
    margin: 0 5px;
    padding: 0px 2px;
    height: 20px;
}

.footer .footer-content .find-us .social-icons [data-icon='facebook']:hover {
    color: #1877F2;
}

.footer .footer-content .find-us .social-icons [data-icon='instagram']:hover {
    border-radius: 4px;
    color: #fff;
    padding: 0 2px;
    background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}

.footer .footer-content .find-us .social-icons [data-icon='twitter']:hover {
    color: #00acee;
}

.footer-content .quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-content .quick-links a {
    color: #9CA3AF;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.footer-content .quick-links a:hover {
    color: #004071;
    scale: 1.1;
}

.footer-content .address {
    color: #9CA3AF;
}

.footer-content .address p {
    margin-bottom: 0;
}

.footer-content .address h4 {
    color: black;
}

.footer-content .contact-us span,
.footer-content .contact-us svg {
    color: #9CA3AF;
}

.footer .copyright {
    background-color: #232323;
    color: #bbb;
    width: 100%;
    text-align: center;
    font-size: 15px;
    /* margin-top: 5px; */
    padding: 8px;
}

.footer .copyright span {
    color: var(--main-color);
    cursor: pointer;
}

.footer .copyright span:hover {
    color: #0461a8;
}

@media only screen and (max-width: 450px) {
    .footer .footer-content {
        display: block;
        text-align: center;
    }

    .footer .footer-content h4 {
        font-size: 14px;
    }

    .footer-content .find-us,
    .footer-content .address {
        padding-bottom: 20px;
    }

    .footer-content .quick-links {
        padding-bottom: 20px;
        align-items: center;
    }

    .footer-content .quick-links a,
    .footer-content .address p,
    .footer-content .contact-us span,
    .footer .copyright {
        font-size: 13px;
    }

}

@media only screen and (min-width: 451px) and (max-width: 767px) {
    .footer .footer-content {
        display: block;
        text-align: center;
        padding: 40px 0px;
    }

    .footer .footer-content h4 {
        font-size: 16px;
    }

    .footer .footer-content .social-icons .svg-inline--fa {
        height: 18px;
    }

    .footer-content .quick-links {
        align-items: center;
    }

    .footer-content .find-us,
    .footer-content .quick-links,
    .footer-content .address {
        padding-bottom: 20px;
    }

}

/* =============================================================
                Loading Widget
================================================================ */
.dot-flashing {
    position: relative;
    width: 1rem;
    height: 0.5rem;
    border-radius: 3em;
    background-color: var(--main-color);
    color: var(--main-color);
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: -20px;
    width: 1rem;
    height: 0.5rem;
    border-radius: 3em;
    background-color: var(--main-color);
    color: var(--main-color);
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 20px;
    width: 1rem;
    height: 0.5rem;
    border-radius: 3em;
    background-color: var(--main-color);
    color: var(--main-color);
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: var(--main-color);
    }

    50%,
    100% {
        background-color: rgba(152, 128, 255, 0.2);
    }
}

/* //////////////// Profile Page */
#profile-img {
    padding: 2px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--main-color);
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

/* Doctors real-time consultations panel /////////////////////////////////*/
#doctor-shift-mini-panel {
    width: 25%;
    /* height: 100px; */
    background-color: var(--main-color);
    position: fixed;
    top: 100px;
    left: 100px;
    cursor: move;
    border-radius: 10px;
    z-index: 110000;
}

.drag {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.consult-button {
    padding: 0.7em 1em;
    border-radius: 10px;
    width: 100%;
    /* margin-bottom: 10px; */
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    /* font-weight: 800; */
    border: none;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border: 2px solid var(--main-color);
}

.rating-user-avatar {
    width: 60px;
    height: 60px;
    border: 1px solid var(--main-color);
}

.chat-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid #d4e1e9;
}

/* ////////////////////// Image Preview ///////////// */
#image-full-screen-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

#image-full-screen-preview img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

#exit-full-screen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    /* background-color: white; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}