/*Base CSS */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
@font-face {
    font-family: Tajawal ExtrBold;
    src: url(../fonts/Tajawal-ExtraBold.ttf);
}

@font-face {
    font-family: Tajawal Black;
    src: url(../fonts/Tajawal-Black.ttf);
}

@font-face {
    font-family: Tajawal Bold;
    src: url(../fonts/Tajawal-Bold.ttf);
}

@font-face {
    font-family: Tajawal Medium;
    src: url(../fonts/Tajawal-Medium.ttf);
}

@font-face {
    font-family: Tajawal Regular;
    src: url(../fonts/Tajawal-Regular.ttf);
}

@font-face {
    font-family: Tajawal Light;
    src: url(../fonts/Tajawal-Light.ttf);
}

:focus,
button:focus {
    outline: 0;
}

video {
    object-fit: contain !important;
}

button {
    background-color: transparent;
    border: none;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

a,
button,
input[type="submit"] {
    cursor: pointer;
}

a {
    color: #1c223a;
    text-transform: inherit;
    text-decoration: none;
}

a:hover,
a :focus {
    color: #373d46;
    text-decoration: none;
}

a:focus {
    outline: 0 solid;
}

img {
    max-width: 100%;
    height: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    line-height: 64px;
    font-weight: 700;
}

body {
    color: #565656;
    font-weight: 600;
    font-family: "Cairo", sans-serif;
    line-height: 1;
    overflow-x: hidden !important;
    background-color: #e5e5e5;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
}

p {
    line-height: 1.7;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/*Proloader START CSS*/

.proloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
}

.loader_34 {
    /* Preloader */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.loader_34 .ytp-spinner {
    /* Spinner Container */
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.loader_34 .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}

.loader_34 .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1)
        infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite
        both;
}

.loader_34 .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.loader_34 .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.loader_34 .ytp-spinner-left {
    /* Position inside Container*/
    right: 50%;
}

.loader_34 .ytp-spinner-right {
    /* Position inside Container*/
    left: 50%;
}

.loader_34 .ytp-spinner-circle {
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: var(--theme) var(--theme) transparent;
    border-radius: 50%;
    border-width: 6px;
}

.loader_34 .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: transparent;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
        infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
        infinite both;
}

.loader_34 .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: transparent;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
        infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */

@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes ytp-spinner-linspin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
    }

    25% {
        -webkit-transform: rotate(270deg);
    }

    37.5% {
        -webkit-transform: rotate(405deg);
    }

    50% {
        -webkit-transform: rotate(540deg);
    }

    62.5% {
        -webkit-transform: rotate(675deg);
    }

    75% {
        -webkit-transform: rotate(810deg);
    }

    87.5% {
        -webkit-transform: rotate(945deg);
    }

    to {
        -webkit-transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    87.5% {
        transform: rotate(945deg);
    }

    to {
        transform: rotate(1080deg);
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
    }

    50% {
        -webkit-transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(130deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(130deg);
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
    }

    50% {
        -webkit-transform: rotate(5deg);
    }

    to {
        -webkit-transform: rotate(-130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }

    to {
        transform: rotate(-130deg);
    }
}

.text-blue {
    color: var(--theme);
}

.btn:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.btn.v1 {
    display: block;
    width: 100%;
    color: #fff;
    background: var(--theme);
    font-size: 12px;
    line-height: 15px;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 7px 10px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn.v1:hover {
    color: var(--theme);
    background: transparent;
    border: 1px solid var(--theme);
}

.btn.v2 {
    color: #a5a4bf;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 18px;
    padding: 12px 28px;
    border: none;
    transition: 0.3s;
}

.btn.v7 {
    background: #ff000d;
    color: #fff;
    border-radius: 50px;
    line-height: 1;
    font-weight: 600;
    padding: 10px 22px 12px;
}

.btn.v8 {
    background: var(--theme);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    line-height: 10px;
    padding: 14px 40px 14px;
}

.btn.v9 {
    background: #33776b;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    padding: 10px 25px 14px;
    line-height: 1;
}

.btn.v10 {
    color: #fff;
    background: var(--theme);
    font-size: 16px;
    line-height: 18px;
    padding: 6px 16px 8px;
    border: none;
    transition: 0.3s;
}

.body_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.body_overlay.open {
    visibility: visible;
    opacity: 1;
}

/*Sticky logo*/
.back-to-top {
    position: fixed;
    bottom: 45px;
    right: 35px;
    z-index: 99;
}

/* -----------------------------------------------------------------
                         9. COLOR SWITCHER
------------------------------------------------------------------*/
.color-switcher {
    display: none;
}

/*
 .color-switcher {
     background-color: #fff;
     border: 1px solid #e5e5e5;
     border-radius: 2px;
     padding: 10px;
     position: fixed;
     top: 150px;
     transition: all 0.4s ease 0s;
     width: 200px;
     z-index: 9998;
     display: none;
 }

 .hide-color-switcher {
     left: -200px;
 }

 .show-color-switcher {
     left: 0;
 }

 .color-switcher a.switcher-button {
     background: #fff;
     border: 1px solid #e5e5e5;
     border-left-color: transparent !important;
     border-radius: 2px;
     cursor: pointer;
     font-size: 22px;
     width: 45px;
     height: 45px;
     line-height: 43px;
     position: absolute;
     top: -1px;
     left: 198px;
     text-align: center;
 }

 .color-switcher .color-switcher-title h5 {
     margin-bottom: 0;
     color: #666;

 }

 .color-switcher .color-list a.color {
     cursor: pointer;
     display: inline-block;
     height: 30px;
     margin: 10px 5px 0 5px;
     width: 30px;
     border-radius: 5px;
 }

 .switcher-button i {
     color: #0cbcb7;
 }

 .red-theme {
     background-color: #f91942;
 }

 .green-theme {
     background-color: #1ec38b;
 }

 .blue-theme {
     background-color: #6ae;
 }

 .orange-theme {
     background-color: #FD901B;
 }

 .pink-theme {
     background-color: #FC69A4;
 }

 .purple-theme {
     background-color: #6449E7;
 }

 .violet-theme {
     background-color: #990099;
 }

 .aqua-theme {
     background-color: #1CBBB4;
 }

 .switcher-button i {
     -webkit-animation: rotation 2s infinite linear;
 }

 @-webkit-keyframes rotation {
     from {
         -webkit-transform: rotate(0deg);
     }

     to {
         -webkit-transform: rotate(359deg);
     }
 }

*/
/*--------------------------------
       Header CSS
---------------------------------*/
.page_wrapper {
    position: relative;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 30px;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.option-bar li {
    display: inline-block;
}
.option-bar li:first-child a:before {
    display: none;
}

.option-bar li a {
    display: inline-block;
    padding: 0 20px;
    position: relative;
}

.option-bar li a:before {
    position: absolute;
    top: 5px;
    left: -3px;
    content: "";
    background: #5B73E8;
    width: 1px;
    height: 16px;
}

.option-bar li a {
    position: relative;
}

.option-bar li a span {
    position: absolute;
    top: 3px;
    right: 26px;
    width: 9px;
    height: 9px;
    background: #ff000d;
    border-radius: 50%;
}

.option-bar li:last-child a:after {
    position: absolute;
    top: 5px;
    right: 0;
    content: "";
    background: #5B73E8;
    width: 1px;
    height: 16px;
}

.user-option {
    position: relative;
    cursor: pointer;
}

.user-option span {
    color: #626365;
    position: relative;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    margin: 0 28px 0 20px;
}

.user-option span img.arrow {
    position: absolute;
    top: 7px;
    right: -14px;
    max-width: 10px;
}

.user-option-menu {
    position: absolute;
    top: 53px;
    right: 0;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    padding: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.user-option-menu li a {
    font-size: 14px;
    line-height: 20px;
    display: block;
    padding: 10px 5px 10px 20px;
}

.user-option-menu li:nth-child(even) a {
    background: #f1f1f1;
}

/*--------------------------------
       Content CSS
---------------------------------*/
.content-wrap {
    padding: 30px 0;
    position: relative;
    margin: 57px 0 0;
}

.dash-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dash-content.v2 {
    margin: 70px 0 0;
}

.left-arrow,
.right-arrow {
    position: fixed;
    box-shadow: none;
    border: none;
    background: transparent;
}

/*-------------------------------
            Banner Area CSS
---------------------------------*/
.banner-wrap {
    margin: 0 0 20px;
}

.banner-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.banner-img img {
    width: 100%;
}

.bg-f {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ddd;
}

h6.box-title {
    font-size: 16px;
    line-height: 18px;
    color: #565656;
    margin: 0 0 17px;
}

.box-title span {
}

.box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 0 0 20px;
}

.box-v2 {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 0 0 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box-v2 .h6.box-title {
    margin: 0 0 10px;
}

/*
 .link {
     display: block;
     font-size: 12px;
     line-height: 18px;
     text-transform: uppercase;
     color: var(--theme);
 }*/
.mt-30 {
    margin-top: 30px;
}

/*-------------------------------------
            Banner Info CSS
---------------------------------------*/

.banner-info {
    background: #fff;
    position: relative;
    padding: 20px 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.profile-img {
    position: absolute;
    bottom: -42px;
    left: 22px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.profile-img img {
    width: 100%;
}

.profile-info-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-left: 170px;
}

.profile-info-left h2 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 8px;
    color: #000;
}

.profile-info-right .profile-ratings {
    position: relative;
    right: 0;
}

.profile-option ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.agent-info-text ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.agent-info-text ul li a,
.agent-contact-option ul li a,
.profile-option ul li a {
    display: inline-block;
    background: var(--theme);
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    padding: 7px 13px 6px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid transparent;
}

.profile-option ul li a:hover,
.agent-info-text ul li a:hover {
    background-color: transparent;
    color: var(--theme);
    border-color: rgba(0, 0, 0, 0.6);
}

.agent-info-text ul li a img,
.agent-contact-option ul li a img,
.profile-option ul li a img {
    margin-right: 10px;
    position: relative;
    top: -1px;
    transition: 0.3s;
}

.agent-info-text ul li a:hover img,
.profile-option ul li a:hover img {
    filter: brightness(1) invert(0.7);
}

.profile-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.profile-tag span {
    color: var(--theme);
    font-size: 12px;
    line-height: 15px;
    /*border: 0.25px solid rgba(0, 0, 0, 0.6);*/
    padding: 5px 0;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
}

.profile-ratings .rating-group {
    display: inline-flex;
}

.profile-ratings .rating__icon {
    pointer-events: none;
}

.profile-ratings .rating__input {
    position: absolute !important;
    left: -9999px !important;
}

.profile-ratings .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 16px;
}

.profile-ratings .rating__icon--star {
    color: var(--theme);
}

.profile-ratings .rating__icon--none {
    color: #c4c4c4;
}

.profile-ratings .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #c4c4c4;
}

.profile-ratings .rating-group:hover .rating__label .rating__icon--star {
    color: var(--theme);
}

.profile-ratings .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #c4c4c4;
}

.profile-info-right .profile-ratings {
    /* position: absolute;
    right: 0;
    top: 15px;
    bottom: auto;
    right: 15px; */
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    margin-bottom: 10px;
    justify-content: end;
    display: flex;
}

.social-profile li {
    display: inline-block;
    margin: 0 2px;
}

.social-profile.style2 li:last-child {
    margin-right: 0;
}

.social-profile.style2 li:first-child {
    margin-left: 0;
}

.social-profile.style2 li a {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1px solid #626365;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;
}

.social-profile.style2 li a i {
    color: #626365;
    font-size: 13px;
    font-weight: 600;
    line-height: 25px;
    transition: 0.3s;
}

.social-profile.style2 li a:hover {
    border-color: transparent;
    background: var(--theme);
    color: #fff;
}

.social-profile.style2 li a:hover i {
    color: #fff;
}

.social-profile.style2 li a:hover {
    box-shadow: 0 5px 11px rgba(0, 0, 0, 0.3);
}

/*------------------------------
        left Content CSS
 -------------------------------*/

.left-content {
    width: calc(100% - 320px);
}

.media-box.box-v2 h6.box-title {
    margin: 0 0 18px;
}

.media-box.box-v2 {
    padding: 29px 20px 28px 20px;
}

.video-slider,
.gallery-slider,
.rp-slider {
    width: calc(100% - 56px);
    left: 27px;
}

.gallery-item img {
    border-radius: 10px;
    min-height: 197px;
    object-fit: cover;
}

.mfp-close {
    width: 24px !important;
    height: 24px;
    border-radius: 50%;
    background: #e20d18 !important;
    opacity: 1;
    line-height: 20px;
    font-size: 22px;
}

.mfp-iframe-holder .mfp-iframe-scaler .mfp-close {
    top: -13px;
    right: -30px;
}

.mfp-image-holder .mfp-close {
    right: -30px;
    top: 30px !important;
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 10px;
    margin: 0 auto;
    background: #fff;
    height: 100%;
    border-radius: 10px;
}

/*-------------Profile box-------------*/
.profile-about p {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 10px;
}

.box-v2 h6.box-title {
    margin: 0 0 13px;
}

.read-more-content {
    display: none;
}

.read-more {
    display: block;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--theme);
}

/*-------------room box-------------*/

.rm-item.box-v2 {
    padding: 0 20px 0 0;
}

.rm-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rm-item-img {
    width: 230px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 100%;
    min-height: 235px;
}

.rm-item-info {
    width: calc(100% - 255px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rm-item-img img {
    width: 100%;
}

.rm-text {
    padding: 30px 0 20px;
}

.rm-text h6.box-title {
    text-transform: uppercase;
}

.rm-text p {
    font-size: 14px;
    line-height: 18px;
}

.rm-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(148, 144, 144, 0.28);
    padding: 10px 0;
}

.rm-btn-left a img {
    margin-left: -23px;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.rm-btn-left a img:first-child {
    margin: 0;
}

.rm-btn-left a span {
    width: 35px;
    height: 35px;
    background: #dfe0e4;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    border: 2px solid #fff;
    font-size: 13px;
    line-height: 30px;
    margin-left: -24px;
}

.rm-btn-right a {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    background: var(--theme);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 50px;
    display: inline-block;
    padding: 6px 11px 5px;
}

.rm-btn-right a:hover {
    color: #fff;
    border-color: var(--theme);
}

/*---------------Video Gallery---------------*/

.tutorial-item {
    position: relative;
}

.tutorial-item img {
    width: 100%;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
}

.video-play i {
    color: #fff;
    font-size: 12px;
    line-height: 35px;
    margin-left: 3px;
}

.gallery-slider .owl-dots,
.rp-slider .owl-dots,
.video-slider .owl-dots {
    display: none !important;
}

.owl-prev,
.owl-next {
    display: block;
    height: 100%;
    width: 30px;
    position: absolute;
    top: 0;
}

/* .owl-prev {
     left: -6px;
     box-shadow: 6px 1px 16px -3px rgba(0, 0, 0, 0.4);
     border-top-left-radius: 10px;
     border-bottom-left-radius: 10px;


 }

 .owl-next {
     right: -6px;
     box-shadow: -6px 1px 16px 3px rgba(0, 0, 0, 0.4);
     border-top-right-radius: 10px;
     border-bottom-right-radius: 10px;
 }*/
.owl-prev {
    left: -35px;
}

.owl-next {
    right: -35px;
}

.owl-prev i,
.owl-next i {
    color: var(--theme);
    height: 100%;
    /*background: #;*/
    /*width: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 23px;
}

.owl-prev i {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.owl-next i {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/*---------------rp box---------------*/

.rp-item-img {
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rp-item-img img {
    width: 100%;
    object-fit: cover;
}

.rp-item-img span {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 2px solid #fff;
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.rp-item-img span.active {
    background: #0ad406;
}

.rp-slider-item {
    border-radius: 10px;
}

.rp-item-info {
    background-color: #565656;
    text-align: center;
    padding: 12px 5px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: block;
    min-height: 51px;
}

.rp-item-info p,
.rp-item-info span {
    color: #fff;
    color: #949090;
}

.rp-item-info h6,
.rp-item-info p,
.rp-item-info span {
    font-size: 9px;
    line-height: 13px;
    margin: 0;
}

.rp-item-info h6 {
    color: #fff;
    font-size: 12px;
    line-height: 13px;
    margin: 0 0 3px;
}

.rp-item-info span {
    text-transform: uppercase;
    display: block;
    line-height: 15px;
}

.agent-contact-option {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rp-slider-item:hover .agent-contact-option {
    visibility: visible;
    opacity: 1;
}

.agent-contact-option ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.agent-contact-option ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 55%;
    margin: 0 auto 10px;
    padding: 8px 20px 5px;
}

.agent-contact-option ul li:last-child a {
    margin: 0 auto 0;
}

.agent-contact-option ul li a img {
    max-width: 17px;
    display: inline-block;
}
.who-to-connect .owl-theme .owl-dots {
    display: none !important;
}
@media (max-width: 480px) {
    .mobile-arrow {
        display: block;
    }
    .user-option {
        display: flex;
        align-items: center;
    }
}

/*-------------------------------
        Sidebar
-----------------------------------*/
.sidebar {
    width: 300px;
    height: 100%;
}

/*contact box*/
.contact-info li {
    position: relative;
    padding-left: 36px;
    margin: 0 0 18px 0;
}

.contact-info li:last-child {
    margin: 0 0 5px;
}

.contact-info li,
.contact-info li a,
.contact-info li p {
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: #565656;
}

.contact-info li span {
    position: absolute;
    top: -3px;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme);
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: 24px;
}

.contact-info li a {
    font-size: 14px;
}

/*----------------promo box---------------*/
.promo-box p {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 20px;
}

/*--------------Doc Box-----------*/
.dl-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(148, 144, 144, 0.5);
    padding: 15px 0;
}

.dl-item-info {
    width: 70%;
    position: relative;
    padding-left: 35px;
}

.file-progressbar p,
.dl-item-info p {
    font-size: 10px;
    line-height: 13px;
    color: var(--theme);
    text-transform: uppercase;
    margin: 0;
}

.dl-item-info img {
    position: absolute;
    top: 1px;
    left: 0;
    max-width: 20px;
}

.file-progressbar span,
.dl-item-info span {
    font-size: 10px;
    line-height: 12px;
    color: #666a73;
    display: block;
}

.dl-btn {
    width: 30%;
    text-align: right;
}

.file-time button,
.dl-btn button {
    display: inline-block;
    padding: 0;
    border: none;
    background: transparent;
    margin: 0 0 0 4px;
    line-height: 1;
}

.dl-btn button img {
    max-width: 15px;
}

.dl-item:last-child {
    border: none;
}

/*----------------Chat box---------------*/
.chat-msg-area {
    border: 0.25px solid rgba(148, 144, 144, 0.59);
    border-radius: 10px;
    padding: 10px;
}

.chat-msg-wrap.v1 {
    height: 310px;
    overflow: auto;
}

.chat-msg-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 25px;
    padding-right: 10px;
    position: relative;
}

.chat-user-name {
    font-size: 12px;
    line-height: 15px;
    text-transform: capitalize;
    margin: 0;
    color: var(--theme);
}

.chat-time {
    font-size: 10px;
    line-height: 15px;
    display: block;
    font-weight: 700;
    color: #666a73;
}

.chat-msg p {
    font-size: 12px;
    line-height: 16px;
    margin: 15px 0 0;
}

.chat-msg-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
}

.chat-field {
    position: relative;
    margin: 15px 0 0;
    overflow-x: hidden !important;
}

.chat-field input.chat_input_field {
    width: calc(100% - 37px);
    border: 1px solid var(--theme);
    border-radius: 5px;
    height: 42px;
    font-size: 12px;
    line-height: 15px;
    padding: 10px 40px 10px 10px;
}

.chat-field button.submit-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme);
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 100%;
    width: 40px;
    padding: 0;
}

.chat-footer {
    padding: 20px;
    background-color: #ffffff;
}

.chat-footer-box {
    border: 1px solid var(--theme);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-document-btn {
    margin: 0 10px;
}

.chat-footer-input {
    border: none;
    font-size: 14px;
    color: #868686;
    width: 100%;
    padding: 10px 0px 10px 10px;
    border-radius: 6px;
}

.chat-send-btn {
    background-color: var(--theme);
    padding: 15px;
}

.upload-btn-wrapper {
    position: absolute;
    top: 0;
    right: -70px;
    z-index: -1;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.upload-btn-wrapper.open {
    right: 42px;
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.upload-btn-wrapper button.upload-btn {
    border: none;
    background-color: transparent;
    padding: 0;
    line-height: 40px;
    cursor: pointer;
}

.upload-btn-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.upload-file-btn {
    margin: 0 3px;
}

.upload-option-btn {
    position: absolute;
    top: 1px;
    right: 45px;
    background: #fff;
    width: 23px;
    height: calc(100% - 2px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
}

.upload-option-btn.open {
    display: none;
}

.upload-btn-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

/*---------------------------------
          Modal CSS
---------------------------------*/
.modal-dialog {
    max-width: 650px;
}

.btn-close {
    background: #e20d18;
    opacity: 1;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    top: -17px;
    right: -40px;
}

.btn-close img {
    position: relative;
    top: -1px;
}

.modal-content {
    background-color: #e5e5e5;
}

.agent-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #fff;
    margin: 0 0 20px;
    padding: 20px;
}

.modal-body {
    padding: 0;
}

.agent-info-img {
    width: 175px;
    border-radius: 10px;
}

.agent-info-img img {
    width: 100%;
    border-radius: 10px;
}

.agent-info-text {
    width: calc(100% - 200px);
    margin-left: 22px;
    min-height: 175px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agent-info-text h4 {
    font-size: 16px;
    line-height: 18px;
    color: var(--theme);
    text-transform: capitalize;
    margin: 0;
}

.agent-info-text p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #565656;
    text-transform: capitalize;
    margin: 0;
}

.agent-info-text span {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #565656;
    display: block;
}

.agent-info-text .profile-ratings {
    position: absolute;
    top: -12px;
    right: -12px;
}

.agent-info-text .profile-ratings {
    position: absolute;
    bottom: 0;
}

.agent-info-text ul {
    position: absolute;
    bottom: 0;
    left: 0;
}

/*
 .single-date-item {
     position: relative;
 }

 .single-date-item input {
     width: 100%;
     height: 100%;
 }

 .single-date {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     text-align: center;
 }*/
.date_box_area {
    padding: 0 40px;
    background: #fff;
    position: relative;
}

.date-box-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-radius: 5px;
    padding: 20px 0;
    position: relative;
    overflow-x: auto;
    width: 100%;
}

.date-prev-btn {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.date-next-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.date-slider-wrap {
    background: #fff;
    margin: 0 0 20px;
    padding: 20px;
}

.date-slider-wrap.s2 {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 20px 6px;
}

.date-slider,
.date-slider_two {
    width: 92.2%;
    left: 4%;
    height: 66px;
}

.date-slider_two .owl-dots {
    display: none;
}

.date-box-wrap .dt_slot {
    min-width: 100px;
    margin-right: 10px;
}

.dt_slot {
    cursor: pointer;
    border: 1px solid var(--theme);
    padding: 10px 15px;
    border-radius: 5px;
}

.dt_slot h2 {
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 2px;
}

.dt_slot span {
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    display: block;
}

.dt_slot.selected {
    background: var(--theme);
    border-color: transparent;
}

.dt_slot.selected h2,
.dt_slot.selected span {
    color: #fff;
}

/*
 .single-date-item label {
     display: flex;
     border: solid 1px var(--theme);
     line-height: 40px;
     height: 57px;
     width: auto;
     border-radius: 5px;
     text-align: center;
     flex-direction: column;
     justify-content: center;
     cursor: pointer;
}
 .single-date-item  input[type=checkbox] {
     display: none;
 }

 .single-date-item input:checked + label {
     color: #fff;
     background: var(--theme);
     border-color: transparent;
}


 .single-date-item  .check {
     visibility: hidden;
 }

 .single-date-item  input:checked+label .check {
     visibility: visible;
 }

 .single-date-item  input.checkbox:checked+label:before {
     content: "";
 }*/

/*
 .single-date-item .form-group {
     display: block;
     margin-bottom: 15px;
 }

 .single-date-item .form-group input {
     padding: 0;
     height: initial;
     width: initial;
     margin-bottom: 0;
     display: none;
     cursor: pointer;
 }

 .single-date-item .form-group label {
     position: relative;
     cursor: pointer;
 }

 .single-date-item .form-group label:before {
     content: '';
     -webkit-appearance: none;
     background-color: transparent;
     border: 2px solid #0079bf;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
     padding: 10px;
     display: inline-block;
     position: relative;
     vertical-align: middle;
     cursor: pointer;
     margin-right: 5px;
 }

 .single-date-item .form-group input:checked+label:after {
     content: '';
     display: block;
     position: absolute;
     top: 2px;
     left: 9px;
     width: 6px;
     height: 14px;
     border: solid #0079bf;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }*/

.custom-checkbox {
    display: flex;
}

.custom-checkbox input {
    height: 0;
    width: 0;
    opacity: 0;
}

.custom-checkbox .form-group {
    margin: 0 12px;
    /* adjust spacing here between check boxes*/
}

.custom-checkbox .form-group label {
    display: flex;
    box-sizing: border-box;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: #fdf6e1;
    color: #7d6540;
    border: 1px solid orange;
    align-items: center;
    justify-content: center;
    font: 14px helvetica, arial, sans-serif;
    cursor: pointer;
    transition: linear 0.2s;
}

.custom-checkbox input:checked + label {
    background: orange;
    color: #fff;
    border: 1px solid #d4830d;
    text-shadow: 0 0 2px #000;
}

/*----Meet Modal----- */

.time-slot-wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: #fff;
    margin: 0 0 20px;
    padding: 20px;
}

.daytime-slot {
    width: 105px;
    border-right: 1px solid #949090;
}

.time-slot {
    width: calc(100% - 125px);
    margin-left: 20px;
}

.daytime-slot-item {
    margin: 0 0 12px;
}

.daytime-slot-item:nth-child(3) {
    margin-top: 20px;
}

.daytime-slot-item input,
.timeslot-item input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.daytime-slot-item input,
.timeslot-item input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.daytime-slot-item label,
.timeslot-item label {
    position: relative;
    cursor: pointer;
}

.daytime-slot-item label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    /*border: 2px solid #0079bf;*/
    /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);*/
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    width: 100px;
    height: 50px;
}

/* .daytime-slot-item input:checked+label:after {
     content: '';
     display: block;
     position: absolute;
     top: 2px;
     left: 9px;
     width: 6px;
     height: 14px;
     border: solid #0079bf;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }*/

.daytime-slot-text div {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.daytime-slot-item label.daytime-slot-text div span {
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    display: block;
    margin: 5px 0 0;
}

.daytime-slot-item label.daytime-slot-text div img {
    filter: grayscale(1);
    display: block;
    margin: 0 auto;
}

.daytime-slot-item.selected label.daytime-slot-text div img {
    filter: grayscale(0);
}

.daytime-slot-item.selected label.daytime-slot-text div span {
    color: var(--theme);
}

/*time-slot*/
.time-slot {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.timeslot-item {
    width: 12.5%;
    margin: 0 0.8% 0;
}

.timeslot-item label {
    height: 24px;
    width: 100%;
    height: 24px;
    border: 1px solid var(--theme);
    border-radius: 5px;
    text-align: center;
}

.timeslot-item label span {
    font-size: 14px;
    line-height: 23px;
    display: block;
}

/* .timeslot-item label:before {
     content: '';
     -webkit-appearance: none;
     background-color: transparent;
     border: 2px solid #0079bf;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
     display: inline-block;
     position: relative;
     vertical-align: middle;
     cursor: pointer;
     margin-right: 5px;
     width: 100%;
     height: 24px;
     border:1px solid var(--theme);
     border-radius: 5px;

 }
*/
.timeslot-item.selected label.timeslot-item-text {
    background-color: var(--theme);
    border-color: transparent;
}

label.timeslot-item-text.booked {
    opacity: 0.6;
    border-color: #999;
}

.timeslot-item.selected label.timeslot-item-text span {
    color: #fff;
}

.message-wrap {
    background: #fff;
    padding: 20px 20px 50px;
    clear: both;
}

.message-wrap textarea {
    width: 100%;
    resize: none;
    height: 46px;
    border: 1px solid var(--theme);
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 12px;
    line-height: 24px;
    color: #565656;
    margin: 0 0 13px;
}

.message-wrap textarea:placeholder {
    opacity: 1;
}

.message-wrap button {
    float: right;
    clear: both;
    background: var(--theme);
    color: #fff;
    border: none;
    font-size: 16px;
    line-height: 15px;
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
}

.close-meeting-popup {
    background: #fff;
    padding: 35px 0 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    margin: 20px 0 0;
}

.close-meeting-popup p {
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: var(--theme);
    margin: 25px 0 0;
}

.close-meeting-popup img {
    display: block;
    max-width: 132px;
}

/*Gallery Modal*/
#exampleModal_2 .modal-dialog {
    max-width: 512px;
}

.gal-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.gal-img {
    width: 100%;
}

.gal-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.gal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0 13px;
}

.gal-head h4 {
    font-size: 16px;
    line-height: 18px;
    margin: 0;
}

.gal-head a.btn.v1 {
    max-width: 93px;
    padding: 7px;
}

.gal-next {
    position: absolute;
    top: 50%;
    right: -38px;
    background: transparent;
    border: none;
}

.gal-info p {
    font-size: 12px;
    line-height: 16px;
}

.gal-prev {
    position: absolute;
    top: 50%;
    left: -38px;
    background: transparent;
    border: none;
}

.time-zone {
    background: #fff;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.time-zone h6 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.time-zone h6 span {
    font-size: 10px;
    line-height: 12px;
}

.nice-select.time-zone {
    display: inline-block;
    position: relative;
    float: none;
}

.nice-select.time-zone .option.focus,
.nice-select.time-zone .option.selected.focus {
    color: var(--theme);
    font-weight: 500;
    background: #fff;
}

.nice-select.time-zone .option {
    padding-left: 34px;
    padding-right: 20px;
}

.nice-select.time-zone {
    background: #e5e5e5;
    width: 215px;
    border-radius: 5px;
    border: 1px solid #666a73;
    line-height: 22px;
    font-size: 16px;
    color: #565656;
    font-weight: 600;
    padding-left: 36px;
}

.nice-select.time-zone:before {
    position: absolute;
    top: 11px;
    left: 9px;
    content: "";
    background-image: url(../img/clock-10.svg);
    width: 20px;
    z-index: 999;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.nice-select.time-zone .list {
    background: #e5e5e5;
    border: 1px solid #666a73;
}

/*----------------------------
          Exhibitor Page CSS
-------------------------------*/
.banner-slider .owl-prev {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.banner-slider .owl-next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.banner-slider .owl-dots {
    display: none;
}

.banner-slider .owl-prev,
.banner-slider .owl-next {
    width: 40px;
    height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50%;
}

.banner-slider .owl-prev i,
.banner-slider .owl-next i {
    color: #fff;
}

.exh_option-list .nav-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: none;
    background: #fff;
}

.exh_option-list {
    background: #fff;
}

.exh_option-list ul,
.tab-menu ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.exh-profile-wrap.exh_pg .profile-tag span {
    font-size: 12px;
    line-height: 15px;
    border: none;
    padding: 0;
    border-radius: 0;
}

.exh-profile-wrap.exh_pg .exh-profile.s1 .exh-profile-info .profile-tag {
    margin: 6px 0 5px;
}

.exh-profile-wrap.exh_pg .exh-profile-info h6 {
    margin: 0 0 10px;
}

.exh-profile-wrap.exh_pg .exh-profile-opt li:first-child {
    margin-left: 0;
}

.exh-profile-wrap.exh_pg .exh-profile.s1 .exh-profile-item {
    align-items: flex-end;
}

.exh-profile-wrap.exh_pg .profile-ratings button {
    padding: 0 2px;
}

/* .exh_option-list ul li {
     width: 10%;
 }*/

.exh_option-list ul li a {
    padding: 22px 5px 10px;
    text-align: center;
    display: block;
    width: 100%;
    background: #fff;
    border: none;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    font-size: 12px;
    line-height: 18px;
}

.exh_option-list ul li a:hover,
.tab-menu ul li a:hover,
.exh_option-list ul li a.active,
.tab-menu ul li a.active {
    color: var(--theme);
    border-color: var(--theme);
}

.exh_option-list ul li a img,
.tab-menu ul li a img {
    display: block;
    margin: 0 auto 5px;
    max-height: 18px;
    filter: grayscale(1);
}

/* .exh_option-list .nav-tabs li:nth-child(8) button img {
     max-width: 20px;
 }*/
.exh_option-list ul li a:hover img,
.exh_option-list ul li a.active img,
.tab-menu ul li a:hover img,
.tab-menu ul li a.active img {
    filter: grayscale(0);
}

.exh_option-list .nav-tabs li button span {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    display: block;
    color: #000;
    margin-top: 10px;
}

.exh_option-list .nav-tabs li button.active span {
    color: var(--theme);
}

.filter-bar {
    /*display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;*/
    padding: 15px 0 10px;
}

.filter-bar.s1 {
    border-top: 0.5px solid rgba(0, 0, 0, 0.13);
    padding: 10px 0 20px;
    margin: 28px 0 0;
}

.filter-bar.s3 {
    /*align-items: flex-start;*/
    padding: 20px 0 10px;
}

button.filter_btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: transparent;
    border: none;
    padding: 0;
}

button.filter_btn span {
    display: inline-block;
    margin: 0 6px;
    text-transform: uppercase;
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

.filter_btn.s2 {
    display: block;
    text-align: right;
    float: left;
    padding-right: 0;
}

.filter_btn.s2 span {
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #565656;
    font-weight: 600;
}

.filter_btn.s2 img {
    filter: grayscale(10);
    position: relative;
    top: -1px;
}

.exb_bg_1 {
    background-image: url(../img/);
}

.filter_btn.s2 {
    position: relative;
}

.timezone-dropdown {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.timezone-dropdown.open {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.timezone-dropdown input {
    width: 100%;
    height: 34px;
    border-radius: 3px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 12px;
}

.timezone-dropdown ul li {
    display: block;
    text-align: left;
    font-size: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    cursor: pointer;
}

.timezone-dropdown ul li:last-child {
    padding: 10px 0 0;
    border: none;
}

.timezone-dropdown form {
    padding: 0 15px;
}

.timezone-dropdown ul {
    padding: 0 15px;
}

/*----Filter New CSS-----*/

.filter-bar.m1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 0.5px solid var(--theme);
    padding: 10px 0 20px;
    margin: 35px 0 0;
}

.filter-bar.m1 .filter-search {
    width: 270px;
}

.filter-bar.m1 .filter-button {
    width: 40%;
}

.filter-bar.m1 .filter-active {
    width: calc(60% - 270px);
    text-align: right;
}

/* .search-exhibitor {
     width: 50%;
     display: flex;
     justify-content: flex-end;
     position: relative;
 }*/

.search-exhibitor .form-group {
    position: relative;
}

.search-exhibitor input {
    width: 100%;
    border: none;
    height: 41px;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 35px 10px 12px;
    border-radius: 2px;
}

.search-exhibitor button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: transparent;
    border: none;
    padding: 12px 10px;
}

.filter-bar-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.13);
    margin: 0 0 20px;
}

.filterdiv:nth-child(1) {
    width: 15%;
}

.filterdiv:nth-child(2) {
    width: 40%;
}

.filterdiv:nth-child(3) {
    width: 45%;
}

/*Exhibitor Category box*/
.exh_cat h2 {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #000;
    padding-top: 10px;
    margin: 12px 0 15px;
    display: block;
    letter-spacing: 0.3px;
    border-top: 0.25px solid rgba(0, 0, 0, 0.1);
}

.exh-profile.s1 {
    width: 100%;
    min-height: 278px !important;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;

    position: relative;
    margin: 0 0 20px;
}

/* .exh-profile-wrap {
     display: flex;
     justify-content: flex-start;
     flex-wrap: wrap;
 }*/
.exh-profile-wrap.row {
    --bs-gutter-x: 1.3rem;
    --bs-gutter-y: 0;
}

.exh-profile.s1 .exh-profile-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.exh-profile.s1 .exh-profile-avatar {
    width: 132px;
}

.exh-profile-avatar img {
    box-shadow: none;
    width: 100%;
    border-radius: 6px;
}

.exh-profile.s1 .exh-profile-info {
    width: calc(100% - 182px);
    margin-left: 50px;
}

.profile-tag {
    display: block;
}

.profile-ratings {
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.exh-profile-opt li {
    display: inline-block;
}

.exh-profile-opt li:first-child {
    margin-right: 7px;
}

.exh-profile-opt li a {
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    display: inline-block;
    padding: 4px 9px 4px;
    /*background: var(--theme);*/
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
    border-radius: 2px;
}

.exh-profile-info h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    color: #000;
}

.exh-profile.s1 .exh-profile-info .profile-tag {
    margin: 6px 0 15px;
}

.exh-profile-banner.bg-f {
    height: 118px;
}

.exh-profile-banner.bg-f {
    height: 118px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.exh-profile.s2,
.exh-profile.s3 {
    background-color: #fff;
    border-radius: 6px;
    margin: 0 0 20px;
    position: relative;
}

.exh-profile.s2 {
    /*width: calc(50% - 10px);*/
    margin: 0 0 22px;
}

.exh-profile.s3 {
    /*width: calc(25% - 15px);*/
}

.exh-profile.s2 .exh-profile-avatar,
.exh-profile.s3 .exh-profile-avatar {
    width: 98px;
    margin: -50px auto 20px;
}

.exh-profile.s2 .exh-profile-info,
.exh-profile.s3 .exh-profile-info {
    padding: 0 15px 10px;
    text-align: center;
}

.exh-profile.s2 .exh-profile-info h6,
.exh-profile.s3 .exh-profile-info h6 {
    margin: 0 0 10px;
}

.exh-profile.s2:hover .exh-profile-info h6 a,
.exh-profile.s3:hover .exh-profile-info h6 a {
    color: var(--theme);
}

.exh-profile.s2 .profile-tag,
.exh-profile.s3 .profile-tag {
    margin: 0 0 14px;
}

.exh-profile.s2 .exh-profile-opt,
.exh-profile.s3 .exh-profile-opt {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
    position: relative;
}

.exh-profile.s2:hover .exh-profile-opt,
.exh-profile.s3:hover .exh-profile-opt {
    visibility: visible;
    opacity: 1;
}

.exh-profile.s2 .profile-ratings,
.exh-profile.s3 .profile-ratings {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.exh-profile.s1 .profile-ratings .rating__label,
.exh-profile.s2 .profile-ratings .rating__label,
.exh-profile.s3 .profile-ratings .rating__label {
    font-size: 13px;
}

/*Delegate Contact Tab*/
.del_contact-tab {
    margin: 40px 0 0;
}

.row.del_contact-wrap {
    --bs-gutter-x: 1.1rem;
}

.del_contact-tab h4 {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 5px;
}

.del_contact-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 5px;
    padding: 15px 13px 13px;
    border: 0.25px solid rgba(148, 144, 144, 0.41);
    position: relative;
}

.del_contact-img {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    border: 0.25px solid #949090;
}

.del_contact-img img {
    border-radius: 50%;
    width: 100%;
}

.del_contact-details.s1 {
    width: calc(100% - 38px);
    margin: 8px 0 0 3px;
}

.del_contact-details.s1 {
    width: calc(100% - 72px);
    margin: 8px 0 0 10px;
}

.del_contact-details h6 {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}

.del_contact-details p {
    font-size: 10px;
    line-height: 15px;
    margin: 0;
}

.del_contact-details span {
    font-size: 10px;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.del_contact-details .exh-profile-opt {
    margin-top: 5px;
}

.del_contact-item span.online {
    position: absolute;
    top: 8px;
    right: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #949090;
}

.del_contact-item span.online.active {
    background-color: #0ad406;
}

.del_contact-wrap.s2 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.del_contact-wrap.s2 .del_contact-item {
    width: calc(20% - 20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 10px 20px;
    border-radius: 10px;
}

.del_contact-wrap.s2 .del_contact-item .del_contact-details {
    width: 100%;
    text-align: center;
    margin: 10px 0 20px;
}

.del_contact-wrap.s2 .del_contact-item,
.del_contact-item.s6 {
    padding-top: 30px;
}

.del_contact-wrap.s2 .del_contact-item .del_contact-img {
    margin: 0 0 6px;
    width: 79px;
    height: 79px;
}

.del_contact-wrap.s2 .del_contact-item .del_contact-img img {
    width: 79px;
    height: 79px;
}

.del_contact-wrap.s2 .del_contact-item .profile-ratings,
.del_contact-item.s6 .profile-ratings {
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.del_contact-wrap.s2
    .del_contact-item
    .profile-ratings
    .rating__icon.rating__icon--star.fa.fa-star,
.del_contact-item.s6
    .profile-ratings
    .rating__icon.rating__icon--star.fa.fa-star {
    font-size: 10px;
}

.del_contact-wrap.s2 .del_contact-item .exh-profile-opt,
.del_contact-item.s6 .exh-profile-opt {
    z-index: 99;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transform: translate(-50%, -50%);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.del_contact-item ul {
    top: 50%;
    left: 29%;
    position: absolute;
    transform: translateY(-50%);
}

.del_contact-details:hover .exh-profile-opt {
    visibility: visible;
    opacity: 1;
}

.show_online .form_group {
    margin-right: 30px;
}

.show_online .form_group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.show_online .form_group label {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 40px;
    color: #000;
    text-transform: capitalize;
    padding: 0 35px 0 0;
}

.show_online.s2 .form_group label {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 38px;
}

.show_online .form_group label::before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #666a73;
    display: inline-block;
    cursor: pointer;
    margin-right: 5px;
    position: absolute;
    top: 13px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.show_online .form_group input:checked + label::before {
    border-color: var(--theme);
}

.show_online .form_group input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 17px;
    right: 9px;
    width: 8px;
    height: 8px;
    cursor: pointer;
    text-transform: capitalize;
    background: var(--theme);
    border-radius: 1px;
}

/*------------------------------
          Session Tab CSS
-------------------------------*/
.session-wrap {
    padding-top: 70px;
}

.session-wrap.s2 {
    padding-top: 25px;
}

.single-session-item {
    border-radius: 10px;
    margin: 0 0 35px;
}

.session-info-content {
    padding: 20px 30px 15px 20px;
}

.session-img {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.session-info {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.session-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ddd;
    /*! width: 260px; */
    height: 265px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
}

.session-info {
    /*! width: calc(100% - 260px); */
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    min-height: 260px;
}

.session-wrap.s2 .session-info {
    height: auto;
}

.session-info h2 {
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--theme);
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
    padding-right: 60px;
}

.session-info h2 img {
    position: absolute;
    top: -9px;
    right: -10px;
    max-width: 40px;
}

.session-info h4 {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 15px;
}

.session-info p {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 12px;
}

.session-subinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px 0 0;
    background: rgba(0, 0, 0, 0.9);
    border-bottom-right-radius: 10px;
    min-height: 70px;
}

.session-doc-item {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    min-height: 80px;
    text-align: center;
    padding: 22px 0;
    border-bottom-left-radius: 10px;
}

.session-doc-item a {
    background: transparent;
    border: none;
    text-align: center;
    margin: 0 5px;
}

.session-doc-item a:nth-child(1) img {
    max-width: 25px;
    min-width: 25px;
}

.session-doc-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.session-doc-item button img {
    filter: brightness(0) invert(1);
    max-width: 59px;
    min-width: 30px;
}

.doc-icon {
    position: relative;
}

.doc-field {
    position: absolute;
    display: block;
    top: 43px;
    left: 50%;
    z-index: 9;
    width: 200px;
    height: 200px;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 10%) !important;
}

.doc-field.open {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.doc-field textarea {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
    resize: none;
    font-size: 14px;
    padding: 15px;
}

.doc-field:before {
    position: absolute;
    top: -6px;
    left: 50%;
    content: "";
    background: #fff;
    width: 15px;
    height: 15px;
    transform: translate(-50%) rotate(48deg);
    border-radius: 3px;
}

.session-subinfo-item {
    padding: 0 20px;
    min-height: 70px;
}

.session-subinfo-item:nth-child(1) {
    width: 65%;
}

.session-subinfo-item:nth-child(2) {
    width: 35%;
    text-align: right;
    padding-right: 25px;
    padding-top: 15px;
}

.session-subinfo-item p {
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 7px;
}

.single-speaker > img {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
}

.single-speaker .more-speakers {
    width: 39px;
    height: 39px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--theme);
    font-size: 14px;
    line-height: 34px;
    color: #000;
}

.speaker-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.single-speaker {
    margin-right: 10px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.single-speaker-popup {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #c4c4c4;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 178px;
    background: #fff;
    padding: 14px 10px 4px 10px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.single-speaker-popup:after {
    position: absolute;
    bottom: -10.7px;
    left: 50%;
    content: "";
    background: #fff;
    width: 20px;
    height: 20px;
    transform: translateX(-50%) rotate(-45deg);
    border-left: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
    z-index: 0;
}

.single-speaker:hover .single-speaker-popup {
    visibility: visible;
    opacity: 1;
}

.speaker-desc h4 {
    font-size: 14px;
    line-height: 15px;
    margin: 0;
}

.speaker-desc {
    text-align: center;
}

.speaker-desc p {
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    margin: 0;
    color: #565656;
    text-transform: capitalize;
}

.speaker-desc span {
    font-size: 10px;
    line-height: 15px;
    text-transform: uppercase;
    display: block;
}

.speaker-desc a,
.view_profile {
    font-size: 12px;
    line-height: 15px;
    background: var(--theme);
    color: #fff;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    margin: 10px 0;
    display: inline-block;
}

.speaker-desc a:hover,
.view_profile:hover {
    color: #fff;
}

.speaker-avatar {
    max-width: 79px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1px solid #c4c4c4;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

.join_btn {
    font-size: 18px;
    line-height: 15px;
    text-transform: uppercase;
    background: #ff000d;
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    padding: 8px 15px;
    font-weight: 700;
}

.show-rating {
    position: absolute;
    top: 23px;
    right: 26px;
}

.show-rating li {
    display: inline-block;
    color: var(--theme);
}

.filter_tablist ul li {
    display: inline-block;
}

.filter_tablist ul li a {
    font-size: 15px;
    line-height: 18px;
    color: #666a73;
    margin: 0 5px 0 0;
    padding: 0 10px 5px;
}

.filter_tablist ul {
    border-bottom: 1px solid var(--theme);
    padding-bottom: 8px;
}

.filter_tablist ul li a {
    position: relative;
}

.filter_tablist ul li a.active {
    color: var(--theme);
}

.filter_tablist ul li a.active:before {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: "";
    background: var(--theme);
    width: 100%;
    height: 4px;
}

.filter_tab.row {
    margin-top: 20px;
}

.profile-tag-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.profile-tag-wrap .profile-tag span {
    font-size: 12px;
    line-height: 18px;
    border: 0.25px solid rgba(0, 0, 0, 0.3);
    padding: 6px 10px 5px;
}

.profile-tag-wrap .profile-tag {
    margin: 0 5px 7px 0;
}

.client-logo-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 30px 0;
}

.client-logo-wrap-title {
    text-align: center;
    margin: 30px 0 0;
}

.client-logo-wrap .single-speaker img {
    width: 80px;
}

.client-logo-wrap .speaker-avatar {
    border-radius: 0;
    border: none;
    margin: 40px auto 40px;
    max-width: 100%;
}

.client-logo-wrap .speaker-avatar img {
    border-radius: 0;
    width: 120px;
}

.comp-name span {
    display: block;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 6px;
}

.client-logo-wrap .single-speaker-popup {
    padding: 14px 0px 4px 0px;
}

.view_profile {
    margin: 14px auto 13px;
}

.pending_btn {
    font-size: 18px;
    line-height: 15px;
    background: #fff;
    text-transform: uppercase;
    font-weight: 700;
    color: #565656;
    display: inline-block;
    padding: 10px 5px;
    border-radius: 50px;
    width: 125px;
    text-align: center;
}

/*--------------------------------
          Meeting Tab CSS
---------------------------------*/
.meeting-content-wrap {
    padding: 35px 0 0;
}

.meet-date {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.meeting-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 20px;
}

.meeting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 13px 12px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.meeting-header-left h3 {
    font-size: 16px;
    line-height: 18px;
    color: var(--theme);
    margin: 0;
}

.meeting-item-wrap.row {
    --bs-gutter-x: 1.3rem;
    margin-bottom: 14px;
}

.join-btn {
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: none;
    border: none;
}

.join-btn.v1 {
    color: #fff;
    background: #ff000d;
}

.join-btn.v2 {
    color: #fff;
    background: #c4c4c4;
}

.join-btn.v3 {
    color: #fff;
    background: #ff9f00;
}

.join-btn.v4 {
    color: #fff;
    background: #56dba2;
}

.meeting-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.meeting-header-right .join-btn {
    margin-left: 9px;
}

.meeting-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 13px 12px 8px 12px;
}

.meeting-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    padding: 5px 13px 2px;
}
.meeting-badge svg {
    margin-bottom: 5px;
}

.meeting-badge.approved {
    border: 0.5px solid #0ad406;
}

.meeting-badge.decline {
    border: 0.5px solid #666a73;
}

.meeting-badge.pending {
    border: 0.5px solid #ff9f00;
}

.meeting-badge.approved span {
    color: #0ad406;
}

.meeting-badge.decline span {
    color: #666a73;
}

.meeting-badge.pending span {
    color: #ff9f00;
}

.meeting-badge img {
    display: block;
    margin: 0 auto 3px;
    min-width: 20px;
}

.meeting-badge span {
    display: block;
    font-size: 10px;
    line-height: 12px;
}

.meeting-content-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.agent-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0.25px solid #949090;
    margin-right: 14px;
}

.agent-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.agent_info h6 {
    color: var(--theme);
}

.agent_info h6,
.agent_info p,
.agent_info span {
    font-size: 8px;
    line-height: 11.5px;
    margin: 0;
    display: block;
}

.meeting-desc {
    margin: 0 13px;
    border-top: 0.25px solid rgba(86, 86, 86, 0.16);
    padding: 10px 0;
}

.meeting-desc p {
    font-size: 10px;
    line-height: 11.5px;
    margin: 0 0 7px;
}

.feedback_modal .modal-dialog {
    max-width: 400px;
}

.feedback_modal .modal-content {
    border-radius: 10px;
    background: #fff;
}

.feedback_modal .btn-close {
    width: 18px;
    height: 18px;
    top: 17px;
    right: 17px;
    z-index: 99;
}

.feedback_modal .feedback-header h4 {
    font-size: 20px;
    line-height: 12px;
    padding: 25px 0 25px 25px;
    background: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px 10px 0px 0px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.feedback_modal input[type="checkbox"] {
    display: none;
}

.feedback_modal label {
    border: 1px solid #fff;
    display: block;
    position: relative;
    margin: 0 4px;
    cursor: pointer;
}

.feedback_modal label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.feedback_modal label img {
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    filter: grayscale(1);
}

.feedback_modal label.checked img {
    filter: grayscale(0);
}

.feedback-body {
    padding: 25px;
}

.feedback_modal .agent_info h6 {
    font-size: 14px;
    line-height: 18px;
}

.feedback_modal .agent_info p {
    font-size: 12px;
    line-height: 18px;
}

.feedback_modal .agent-img {
    width: 60px;
    height: 60px;
}

.feedback-rate {
    border: 0.5px solid var(--theme) 6e;
    border-radius: 5px;
    padding: 20px;
    margin: 25px 0 30px;
}

.feedback-rate p {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #000;
}

.give_feedback {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 35px 0 20px;
}

.feedback-button {
    width: 40px;
}

.feedback-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.give_feedback_msg textarea {
    border: 0.5px solid var(--theme) 6e;
    border-radius: 5px;
    padding: 20px;
    margin: 25px 0 30px;
    resize: none;
    height: 140px;
    width: 100%;
}

.feedback-button input:checked + label img {
    filter: grayscale(0);
}

/*--------------------------------
     Single Session Page CSS
---------------------------------*/
/*----------Left Content-------------*/

.video-option {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px;
    border-radius: 0 0 10px 10px;
    margin: 0 0 20px;
}

.video-option-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.exit-btn {
    font-size: 20px;
    line-height: 21px;
    background: #ff000d;
    color: #fff;
    width: 96px;
    height: 36px;
    border-radius: 5px;
    text-transform: uppercase;
}

.exit-btn img {
    position: relative;
    top: -2px;
    margin-right: 4px;
}

.video-rating .profile-ratings {
    position: relative;
    bottom: 0;
    left: 0;
}

.video-option-right .chat-more-option {
    position: relative;
    background: var(--theme);
    width: 172px;
    height: 36px;
    border-radius: 5px;
    margin: 0 18px 0 10px;
}

.video-option-right .chat-more-option span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 16px 8px 4px;
    color: #fff;
}

.video-option-right .chat-more-option span img:first-child {
    min-height: 20px;
}

.video-option-right .chat-more-option span img {
    top: 2px;
}

.video-option-right .chat_option {
    z-index: 99;
    top: 6px;
}

.session-info.s2 {
    background: transparent;
    box-shadow: none;
    min-height: auto;
    margin: 0 0 10px;
}

.session-info.s2 .session-info-content {
    padding: 0px 20px 15px 0px;
}

.session-info.s2 h2 {
    font-weight: 600;
}

.subtitle {
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 10px;
    border-bottom: 1px solid var(--theme);
}

.session-docs .dl-item {
    border-bottom: 1px solid #c4c4c4;
    padding: 12px 0;
}

.session_speakers .del_contact-wrap.s2 .del_contact-item .del_contact-img,
.session_speakers .del_contact-wrap.s2 .del_contact-item .del_contact-img img {
    width: 64px;
    height: 64px;
}

.session_speakers .del_contact-wrap.s2 .del_contact-item {
    width: calc(20% - 13px);
    margin: 0 6px 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.session_speakers .del_contact-details h6 {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

.session_speakers .del_contact-wrap.s2 .del_contact-item .del_contact-details {
    margin: 10px 0 12px;
}

.session_speakers .del_contact-details p,
.session_speakers .del_contact-details span {
    font-size: 8px;
    line-height: 11px;
}

/*-----Right Sidebar---------*/
.sidebar.session-sidebar {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.session-sidebar-close {
    position: absolute;
    top: -11px;
    right: -37px;
    background: transparent;
    border: none;
}

.session-sidebar-footer {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
}

.tab-main-box {
    height: calc(100vh - 365px);
    overflow-y: auto;
}

.tab-box .chat-msg-area {
    /*min-height: 340px;*/
}

.tab-box.polls {
    /*min-height: 380px;*/
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
    padding-right: 5px;
}

.session-sidebar-title {
    position: absolute;
    top: 0;
    left: 0;
    background: #c4c4c4;
    width: 100%;
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 4px;
}

.single-session-sidebar.box {
    position: relative;
    padding: 20px 0 0px;
    height: calc(100vh - 95px);
    bottom: 0px;
}

.session-sidebar-title span {
    font-size: 10px;
    line-height: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* .tab-box {
     display: none;
 }*/

.logo-slider {
    margin: 40px auto 15px;
    padding: 10px 20px;
}

.logo-item img {
    max-width: 170px;
    margin: 0 auto;
}

.logo-slider .owl-prev {
    left: 2px;
}

.logo-slider .owl-next {
    right: 2px;
}

.logo-slider .owl-dots {
    display: none;
}

.tab-menu ul {
    /*border-top: 1px solid rgba(86, 86, 86, 0.53);*/
    border-bottom: 1px solid rgba(86, 86, 86, 0.53);
    margin: 0 0 10px;
}

.tab-menu ul li {
    width: 20%;
}

.exh_option-list ul li a,
.tab-menu ul li a {
    padding: 6px 5px 2px;
    text-align: center;
    display: block;
    width: 100%;
    background: #fff;
    border: none;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.exh_option-list ul li a {
    padding: 15px 10px 8px !important;
}

.tab-menu ul li a span {
    font-size: 10px;
    line-height: 15px;
    display: block;
    text-transform: uppercase;
}

.tab-menu ul li a img {
    max-height: 13px !important;
}

.tab-main-box .chat-msg-area {
    border: none;
    border-radius: 0;
    padding: 15px 5px 15px 15px;
}

.tab-main-box .chat-field {
    margin-right: 10px;
}

.no-tab-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.if_empty {
    text-align: center;
    padding: 100px 0;
}

.if_empty p {
    font-size: 14px;
    line-height: 18px;
    color: #949090;
    margin: 15px 0;
}

.chat-media img {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.chat-media {
    padding-right: 10px;
    margin: 10px 0 0;
}

.chat-more-option {
    position: absolute;
    top: 0;
    right: 0;
}

.chat-msg {
    position: relative;
}

.chat-more-option span {
    cursor: pointer;
    display: inline-block;
}

.chat-more-option span img {
    margin: 0;
    max-height: 14px;
    position: relative;
    right: -7px;
}

.chat_option {
    position: absolute;
    top: 0;
    right: 25px;
    min-width: 106px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.chat_option.open {
    visibility: visible;
    opacity: 1;
}

.chat_option li button {
    background: transparent;
    border: none;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    padding: 7px 7px;
    width: 100%;
    text-align: left;
    border-bottom: 0.25px solid rgba(255, 255, 255, 0.6);
}

.chat_option li:last-child button {
    border-bottom: none;
}

.chat_option li {
    padding: 0;
    text-align: left;
}

.tab-main-box .chat-msg {
    position: relative;
    top: 5px;
    width: calc(100% - 60px);
}

.file-dl-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 0.5px solid var(--theme);
    border-radius: 5px;
    padding: 8px 6px 8px 8px;
    margin: 10px 5px 0 0;
    position: relative;
}

.close-file {
    position: absolute;
    top: -16px;
    right: -20px;
}

.dl-opt {
    width: 15%;
    border: none;
    background: transparent;
}

.dl-opt button {
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    /*width: 23px;*/
    /*height: 23px;*/
    /*background: var(--theme);*/
    border-radius: 50%;
    text-align: center;
}

.dl-opt button:before {
    position: absolute;
    top: -5px;
    left: -5px;
    content: "";
    width: 32px;
    height: 32px;
    background: #dee3fa;
    border: 1px solid #b7c1f5;
    border-radius: 50%;
    z-index: -1;
}

.dl-opt button img {
    /*max-width: 13px;*/
    /*height: auto;*/
    margin: 0 auto;
    display: block;
    border-radius: 0;
}

.dl-opt button.video-play img {
    width: 10px;
}

.file-time span {
    font-size: 12px;
    line-height: 18px;
    color: #565656;
}

.file-time {
    width: 13%;
}

.file-progressbar {
    width: 62%;
}

.file-progressbar .progress {
    width: 100%;
    height: 3px;
    background: #dadada;
}

.file-progressbar .progress-bar {
    background: var(--theme);
}

.file-time button {
    margin: 0;
}

.file-time button img {
    width: 100%;
    height: 100%;
}

.file-progressbar p {
    font-size: 10px !important;
    line-height: 13px !important;
    color: var(--theme);
    text-transform: uppercase;
    margin: 0;
}

.sidebar.session-sidebar {
    bottom: 20px;
    right: calc((100% - 1036px) / 2 + 15px);
    height: calc(100vh - 100px);
}

/*----------Q&A Tab----------*/

.qa-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: -10px 0 25px;
}

.qa_v1,
.qa_v2,
.qa_v3 {
    width: 73px;
    height: 29px;
    margin: 0 2px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600 !important;
    line-height: 15px;
    color: #000;
    font-weight: 500;
    border: 1px solid var(--theme);
    background: transparent;
}

.qa_v1.active {
    background-color: var(--theme);
    border: none;
    color: #fff;
}

.tab-box .chat-msg p {
    margin: 8px 0 0;
}

.qa_option {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0 0 10px;
}

.qa_option button {
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 5px;
}

.ans_btn {
    width: 79px;
    height: 23px;
    background: transparent;
    border: 1px solid #ff000d !important;
    border-radius: 50px;
    color: #ff000d;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
}

/*----------Poll Tab----------*/
.create-poll {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
}

.create-poll button {
    height: 32px;
    font-size: 16px;
    line-height: 18px;
}

.poll-box {
    border: 0.5px solid var(--theme);
    border-radius: 5px;
    padding: 10px;
    margin: 0 0 15px;
}

.poll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.poll-stat-btn {
    font-size: 8px;
    line-height: 13px;
    text-transform: uppercase;
    display: inline-block;
    background: #565656;
    border-radius: 2px;
    padding: 4px 4px 3px;
    letter-spacing: 0.5px;
}

.poll-stat-btn.v1 {
    color: #565656;
    background-color: #c4c4c4;
}

.poll-stat-btn.v2 {
    color: #000;
    background-color: #ccf4e3;
}

.poll-stat-btn.v3 {
    color: #ff000d;
    background-color: #ffb3b6;
}

.poll-stat-btn.v1 {
    color: #565656;
    background-color: #c4c4c4;
}

.poll-stat-btn.v1 {
    color: #565656;
    background-color: #c4c4c4;
}

.poll-option .chat-more-option {
    top: 0;
    right: 8px;
}

.poll-option .chat_option {
    right: 7px;
}

.poll-stat h6 {
    font-size: 11px;
    line-height: 18px;
    margin: 13px 0 3px;
    text-transform: uppercase;
    font-weight: 600px;
    letter-spacing: 0.2px;
}

.poll-item p {
    font-size: 11px;
    line-height: 18px;
    color: #949090;
    margin: 0;
}

.poll-item .progress-bar span {
    position: absolute;
    top: 0;
    right: 0;
    color: #949090;
    font-size: 11px;
    line-height: 18px;
    color: var(--theme);
    z-index: 9;
}

.poll-item .progress {
    /*! position: relative; */
    background: #949090;
    height: 3px;
    border-radius: 50px;
}

.poll-item .progress-bar {
    background: var(--theme);
    border-radius: 50px;
}

.poll-item {
    position: relative;
    margin: 0 0 10px;
}

.polls-btn {
    text-align: right;
    margin: 19px 0 0;
}

.polls-btn button {
    width: 90px;
    height: 23px;
    font-size: 12px;
    line-height: 18px;
    background: transparent;
    text-transform: uppercase;
    border-radius: 50px;
    font-weight: 600;
    padding: 0;
}

.polls-btn button.v1 {
    border: 1px solid var(--theme);
    color: var(--theme);
}

.polls-btn button.v2 {
    border: 1px solid #ff000d;
    color: #ff000d;
}

.polls-btn button.v3 {
    border: 1px solid;
}

.polls-btn button.v4 {
    border: 1px solid;
}

.polls-btn button.v5 {
    border: 1px solid;
}

button.v6 {
    font-size: 16px;
    line-height: 15px;
    background: #ff000d;
    color: #fff;
    display: inline-block;
    padding: 6px 12px;
    width: auto;
    height: auto;
    text-transform: capitalize;
}

button.v7 {
    font-size: 16px;
    line-height: 15px;
    background: transparent;
    border: 0.25px solid #565656;
    color: #666a73;
    display: inline-block;
    padding: 6px 12px;
    width: auto;
    height: auto;
    text-transform: capitalize;
}

.poll-stat form {
    padding: 5px 0 0 20px;
}

.poll-stat form div {
    margin: 0 0 5px;
}

.pools_form [type="radio"]:checked,
.pools_form [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.pools_form [type="radio"]:checked + label,
.pools_form [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #949090;
    font-size: 11px;
    line-height: 18px;
}

.pools_form [type="radio"]:checked + label:before,
.pools_form [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 13px;
    border: 0.5px solid var(--theme);
    border-radius: 100%;
    background: #fff;
}

.pools_form [type="radio"]:checked + label:after,
.pools_form [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--theme);
    position: absolute;
    top: 5px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.pools_form [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.pools_form [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*-----*/

.checkbox_item input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox_item label {
    position: relative;
    cursor: pointer;
    font-size: 11px;
    line-height: 18px;
    padding-left: 18px;
    color: #999;
}

.checkbox_item label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    width: 13px;
    height: 13px;
    border: 0.5px solid var(--theme);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    position: absolute;
    top: 3px;
    left: 0;
}

.checkbox_item input:checked + label {
    color: var(--theme);
}

.checkbox_item input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 3px;
    width: 7px;
    height: 7px;
    background: var(--theme);
    border-radius: 50%;
    transform: rotate(45deg);
}

/*-----*/
.poll-form {
    position: absolute;
    bottom: -100%;
    left: -15px;
    width: calc(100% + 30px);
    /*! height: 100%; */
    background: #f5f5f5;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 99;
}

.poll-form.style2 {
    visibility: visible;
    opacity: 1;
    position: relative;
    background: transparent;
    display: none;
}

.poll-form.open {
    bottom: -15px;
    visibility: visible;
    opacity: 1;
}

.poll-form .form-group {
    width: 100%;
    margin: 0 0 7px;
}

.poll-form .form-group input {
    width: 100%;
    border: 1px solid var(--theme);
    border-radius: 5px;
    background: transparent;
    padding: 10px;
    font-size: 12px;
    line-height: 18px;
    height: 35px;
}

.poll__opt input {
    width: 70%;
    border: 1px solid var(--theme);
    border-radius: 5px;
    background: transparent;
    padding: 10px;
    font-size: 12px;
    line-height: 18px;
    height: 35px;
}

.poll__opt.style2 input {
    width: 100%;
}

.poll-body {
    margin: 20px 0;
    display: block !important;
    height: 137px;
    overflow-y: auto;
}

.poll__opt button {
    width: 20%;
    background: transparent;
    border: none;
    position: absolute;
    top: 8px;
    left: 15%;
}

.poll__opt {
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.poll__opt_btn {
    float: right;
    margin: 5px 0 0;
}

.poll_opt_one {
    font-size: 14px;
    line-height: 18px;
    background-color: #ff000d;
    color: #fff;
    width: 77px;
    height: 26px;
    text-align: center;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

.poll_opt_two {
    font-size: 14px;
    line-height: 18px;
    background: transparent;
    color: #000;
    width: 77px;
    height: 26px;
    text-align: center;
    border: 1px solid #ff000d;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 6px;
}

.poll-schedule {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.poll-input {
    width: 100%;
    border: 1px solid #94909041;
    border-radius: 3px;
    height: 40px;
    padding: 10px;
    font-size: 16px;
}

.poll-time-date {
    max-height: 100px !important;
}

/*----------Session Tab----------*/

.session-tab-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 12px 10px 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #c4c4c4;
}

.session-tab-img {
    width: 12%;
}

.session-tab-info {
    width: 65%;
}

.session-tab-btn {
    width: 18%;
}

.session-tab-info p {
    font-size: 12px;
    line-height: 13px;
    color: var(--theme);
    text-transform: uppercase;
    margin: 0;
}

.session-tab-info span {
    font-size: 10px;
    line-height: 13px;
    font-weight: 600;
}

button.vtb-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #ff000d;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 5px 4px;
}

/*----------Attendees----------*/
.tab-box.attendees .chat-msg-item {
    border-bottom: 0.25px solid #c4c4c4;
    padding-bottom: 10px;
    margin: 0 14px 10px 0;
}

.tab-box.attendees .chat-msg-item .chat-msg {
    top: 7px;
}

.tab-box.attendees .chat-msg-item .chat-user-name {
    font-size: 10px;
    line-height: 12px;
    text-transform: cpitalize;
}

.tab-box.attendees .chat-msg-item .chat-time {
    font-size: 8px;
    line-height: 12px;
    font-weight: 600;
}

/*--------------------------
     Leaderboard Sidebar
 --------------------------*/

.lb-sidebar,
.cv-sidebar,
.nf-sidebar,
.bf-sidebar {
    position: fixed;
    top: 57px;
    right: -100%;
    width: 435px;
    height: calc(100vh - 57px);
    /* background: #353535; */
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 999;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.lb-sidebar.open,
.cv-sidebar.open,
.nf-sidebar.open,
.bf-sidebar.open {
    right: 0;
}

.lb-header,
.cv-header,
.nf-header,
.bf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* background: #565656; */
    background: #eeefef;
    padding: 30px 30px 30px 20px;
}

.lb-header-left img,
.bf-header-left img,
.nf-header-left img,
.cv-header-left img {
    /* filter: brightness(0) invert(1); */
    position: relative;
    top: -1px;
}

.lb-header-left span,
.bf-header-left span,
.nf-header-left span,
.cv-header-left span {
    /* color: #fff; */
    color: #3a3e42 !important;
    font-size: 14px;
    line-height: 18px;
    margin-left: 14px;
    font-weight: 600;
}

.lb-header-right button,
.bf-header-right button,
.nf-header-right button,
.cv-header-right button {
    padding: 0 0px 0 20px;
}

.lb-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* background: #fff; */
    background-color: #f4f5f7;
    padding: 10px;
    border-radius: 5px;
}

.lb-list-item-left {
    width: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.lb-list-item-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #c4c4c4;
    box-sizing: border-box;
    margin-right: 10px;
}

.lb-list-item-img img {
    width: 100%;
    border-radius: 50%;
}

.lb-list,
.cv-list {
    padding: 30px 40px;
    height: calc(100vh - 138px);
    overflow-y: auto;
}

.lb-list-item-info h6 {
    font-size: 12px;
    line-height: 18px;
    color: var(--theme);
    margin: 0;
    text-transform: capitalize;
}

.lb-list-item-info span {
    font-size: 10px;
    line-height: 11px;
    margin: 0;
    display: block;
    text-transform: uppercase;
}

.lb-item-point h5 {
    font-size: 28px;
    line-height: 18px;
    color: var(--theme);
    font-weight: 700;
}

.lb-list-item-right {
    text-align: center;
}

.lb-item-point span {
    font-size: 14px;
    color: var(--theme);
    line-height: 18px;
}

.lb-list-item.winner {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.45);
}

.lb-list-item.looser {
    margin: 8px 0 0;
    border-bottom: 0.25px solid rgba(196, 196, 196, 0.38);
}

.lb-list-item-pt {
    text-align: center;
    margin-right: 10px;
}

.lb-list-item-pt h6 {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    /* color: #fff; */
    color: #353535;
}

.lb-list-item-pt span {
    width: 41px;
    height: 22px;
    display: inline-block;
    background: var(--theme);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
}

.lb-header {
    position: relative;
}

.lb-searchbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #565656; */
    background-color: #eeefef;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.lb-searchbox.open {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.lb-searchbox .form-group {
    position: relative;
}

.lb-searchbox input {
    width: 90%;
    height: 41px;
    border-radius: 5px;
    border: none;
    padding: 10px;
    color: #000;
}

.close-search-popup {
    position: absolute;
    top: 8px;
    right: -5px;
}

.clear-search {
    position: absolute;
    top: 10px;
    right: 40px;
}

.lb-list-item.general {
    background: transparent;
    border-bottom: 0.25px solid rgba(196, 196, 196, 0.977);
    border-radius: 0;
    padding: 15px 0;
}

.lb-list-item.general .lb-list-item-info h6 {
    /* color: #fff; */
    color: #353535;
}

.lb-list-item.general .lb-list-item-info span {
    /* color: rgba(255, 255, 255, 0.4); */
    color: #565656;
}

.lb-list-item.s2.general .lb-list-item-left {
    width: 100%;
    align-items: flex-start;
}

.lb-list-item.s2.general .lb-list-item-left p {
    font-size: 12px;
    line-height: 16px;
    /* color: #fff; */
    color: #565656;

    margin: 3px 0 0;
}

.lb-list-item.s2.general .lb-list-item-info {
    width: calc(100% - 60px);
}

/*------------------------------
     Briefcase Sidebaar CSS
 ------------------------------*/
.bf-list {
    padding: 25px;
}

.download-btn {
    color: #fff;
    font-size: 10px;
    border: 1px solid #fff;
    padding: 6px 10px !important;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    text-transform: capitalize;
}

.download-btn img {
    position: relative;
    top: -1px;
    margin-left: 5px;
    max-width: 9px;
}

.bf-download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 0.5px solid #c4c4c4;
    border-radius: 5px;
    padding: 15px;
    margin: 0 0 20px;
}

.bf-dl-item-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.bf-dl-icon {
    width: 38px;
    height: 38px;
    background: #3d4159;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #465084;
    margin-right: 20px;
}

.bf-dl-name p {
    font-size: 10px;
    color: #353535;
    text-transform: uppercase;
    line-height: 12px;
    margin: 0;
}

.bf-dl-name span {
    font-size: 10px;
    color: #666a73;
    text-transform: uppercase;
    line-height: 12px;
    margin: 0;
}

/*------------------------------
     Notification popup CSS
 ------------------------------*/

.nf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 0.25px solid #c4c4c4;
    padding: 20px 28px;
}

.nf-item-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.nf-item-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
}

.nf-item-img img {
    border-radius: 50%;
}

.nf-item-info p {
    font-size: 12px;
    text-transform: capitalize;
    margin: 0;
    line-height: 22px;
    /* color: #949090; */
    color: #353535;
}

.nf-item-info span {
    font-size: 12px;
    line-height: 12px;
    display: block;
}

.nf-item-right p {
    font-size: 12px;
    line-height: 10px;
    margin: 0;
}

.nf-item:hover .nf-item-left p,
.nf-item:hover .nf-item-left span {
    color: #fff;
}

/*------------------------------
     Reception Page CSS
 ------------------------------*/

.rc_about-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.rc_title {
    font-size: 16px;
    line-height: 18px;
}

.rc_about-box-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rc_about-box-left {
    width: 230px;
}

.rc_about-box-right {
    width: calc(100% - 250px);
}

.rc_about-box-right p {
    font-size: 14px;
    line-height: 18px;
    color: #565656;
}

.rc_time h6 {
    font-size: 14px;
    line-height: 21px;
    margin: 0;
    color: #2e3a59;
}

.rc_time p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    color: #2e3a59;
}

.rc_social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 230px;
    padding: 10px 5px 0px 5px;
    border-top: 0.5px solid #d5d5df;
}

.rc_social li a i {
    font-size: 20px;
}

.rc_social li a:hover i {
    color: #56919c;
}

.rc_social li a i {
    color: #ddd;
}

.rc_time {
    margin: 10px 0 5px 5px;
    position: relative;
}

.single-speaker {
    margin-right: -12px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.rc_time .bookmark {
    position: absolute;
    top: 10px;
    right: 2px;
    padding: 0;
}

.rc-session-wrap .single-session-item {
    margin: 0 0 25px;
}

.rc-session-wrap .session-img,
.rc-session-wrap .session-info {
    min-height: 180px;
    height: 180px;
}

.rc-session-wrap .session-subinfo {
    padding: 0;
    background: transparent;
    min-height: auto;
}

.rc-session-wrap .session-info-content {
    padding: 20px 30px 15px 15px;
}

.rc-session-wrap .session-subinfo-item:nth-child(2) {
    width: 37%;
    padding-top: 0;
    min-height: auto;
}

.rc-session-wrap .session-subinfo-item {
    height: auto;
    min-height: auto;
}

.rc-session-wrap .session-subinfo-item:nth-child(1) {
    width: 62%;
    padding-left: 15px;
}

.rc-session-wrap .join_btn {
    font-size: 15px;
    line-height: 15px;
    padding: 8px 13px;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.rc_box {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    margin: 0 0 25px;
}

.rc_title span {
    font-size: 10px;
    line-height: 15px;
    border: 1px solid var(--theme);
    border-radius: 50px;
    display: inline-block;
    padding: 1px 7px;
    color: var(--theme);
    margin-left: 5px;
    position: relative;
    top: -1px;
}

.link {
    font-size: 12px;
    line-height: 18px;
    color: #969ba9;
    display: block;
    text-align: right;
}

.link i {
    font-size: 7px;
    margin-left: 2px;
    position: relative;
    top: -1px;
}

.rc_feature-item {
    background: rgba(196, 196, 196, 0.2);
    border-radius: 10px;
    padding: 18px;
}

.rc_feature-item h6 {
    font-size: 14px;
    line-height: 16px;
    background: var(--theme);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 7px 0;
}

.rc_feature-item p {
    font-size: 16px;
    line-height: 18px;
    color: #565656;
    font-weight: 670;
    margin: 0 0 25px;
}

.rc_feature-item .speaker-list {
    justify-content: center;
}

.rc_feature-item .single-speaker > img,
.single-speaker .more-speakers {
    width: 36px;
    height: 36px;
}

.rc_feature-option {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    border-top: 0.5px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0 0;
    margin: 23px 0 0;
}

.rc_feature-option button {
    padding: 0 0 0 10px;
}

.rc_feature-slider .owl-next,
.rc_exh-sldier .owl-next {
    right: -11px;
    min-width: 30px;
}

.rc_feature-slider .owl-prev,
.rc_exh-sldier .owl-prev {
    left: -11px;
    min-width: 30px;
    transform: rotate(-180deg);
}

.rc_feature-slider .owl-prev.disabled,
.rc_exh-sldier .owl-prev.disabled,
.rc_feature-slider .owl-next.disabled,
.rc_exh-sldier .owl-next.disabled {
    display: none;
}

.rc_exh-sldier .exh-profile.s3 {
    background: #f3f3f3;
}

.rc_exh-sldier .profile-tag span {
    font-size: 10px;
    line-height: 18px;
    color: var(--theme);
    padding: 2px 10px;
    margin: 6px 0 0;
}

.rc_feature-slider .owl-dots,
.rc_exh-one .owl-dots,
.rc_exh-two .owl-dots {
    display: none;
}

.rc_exh-one .exh-profile-banner.bg-f {
    height: 72px;
}

.rc_exh-one .exh-profile.s2 .exh-profile-avatar,
.rc_exh-one .exh-profile.s3 .exh-profile-avatar {
    width: 85px;
    height: 85px;
}
.exh-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.toolTipbtn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-31px);
    position: absolute;
    padding: 4px 10px;
    border-radius: 4px;
    background: #fff;
    padding: 8px 10x;
    font-size: 14px;
    transition: all 0.4s ease;
    box-shadow: rgb(71 70 83 / 23%) 1px 1px 3px 3px;
}

.toolTipbtn::before {
    content: "";
    background: inherit;
    width: 7px;
    height: 7px;
    display: block;
    position: absolute;
    left: 36px;
    bottom: -3px;
    transform: rotate(-47deg);
    border-radius: 0 0 0 2px;
}

.toolTip:hover .toolTipbtn {
    opacity: 1;
    visibility: visible;
    transform: translateY(-36px);
}
.bookmark .toolTip {
    width: 18px;
    height: 18px;
    background: red;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: 15px;
}
.del_contact-item.s6 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.del_contact-item.s6 .del_contact-img {
    width: 77px;
    height: 77px;
    margin: 0 0 12px;
}

.del_contact-item.s6 .del_contact-img img {
    width: 100%;
}

.del_contact-item.s6 {
    background: #f3f3f3;
    border: none;
    border-radius: 10px;
    padding: 30px 0 40px;
}

.del_contact-item.s6 .del_contact-details.s1 h6 {
    color: var(--theme);
}

/*Reception sidebar*/

.nt_box {
    background: var(--theme);
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
}

.nt_box_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.nt_box-left {
    width: 99px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 5px;
    margin: 5px 0 0;
}

.nt_box-right {
    width: calc(100% - 115px);
}

.nt_box-right h4 {
    color: #fff;
    font-size: 24px;
    line-height: 27px;
    font-weight: 700;
}

.nt_box-right p {
    font-size: 12px;
    line-height: 13px;
    color: #fff;
}

.nt_box_content .btn {
    display: block;
    width: 100%;
    background: #fff;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    text-align: center;
    height: 34px;
    padding: 3px 1px;
}

.rc_meet_box {
    background: #fff;
    border-radius: 10px;
    padding: 15px 0 0;
}

.mt-amt-wrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.mt-num h3 {
    font-size: 32px;
    line-height: 38px;
    margin: 0;
    color: #2e3a59;
}

.mt-num p {
    font-size: 14px;
    line-height: 18px;
    color: #969ba9;
}

.mt-icon {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mt-amt-wrap.v1 .mt-icon {
    background: rgba(255, 159, 0, 0.15);
}

.mt-amt-wrap.v2 .mt-icon {
    background: rgb(125, 227, 183, 0.15);
}

.rc_leaderboard {
    background: var(--theme);
    border-radius: 10px;
    padding: 20px 20px;
    height: auto !important;
    margin: 20px 0;
}

.rc_leaderboard h5 {
    color: #353535;
    font-size: 16px;
    line-height: 18px;
}

.rc_leaderboard .lb-list {
    padding: 0;
}

.no-meeting {
    background: #f6f6f6;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 20px 0 0;
}

.rc_meet_box .lb-list-item-info p {
    font-size: 8px;
    line-height: 11px;
    text-transform: uppercase;
    margin: 0;
}

.rc_meet_box .lb-list-item-info p {
    font-size: 8px;
    line-height: 11px;
    text-transform: uppercase;
    margin: 0;
}

.rc_meet_box .rc_feature-title,
.rc_meet_box .mt-amt {
    padding: 0 20px;
}

.rc_meeting-item .lb-list-item {
    background: #dedede;
    width: 100%;
    left: 0;
    position: relative;
    border-radius: 0;
    padding: 10px 0;
}

.rc_meeting-item {
    margin: 0 20px;
}

.rc_meeting-item:nth-child(1) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.no-meeting p {
    font-size: 14px;
    line-height: 18px;
    margin: 10px 0 0;
}

.rc_meet_box .lb-item-point h6 {
    font-size: 16px;
    line-height: 18px;
    color: var(--theme);
    margin: 0 0 5px;
}

.rc_meet_box .join {
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    background: #56dba2;
    display: inline-block;
    text-transform: uppercase;
    padding: 3px 23px 5px;
    border-radius: 50px;
}

.rc_meeting-item-wrap {
    border-radius: 0 0 10px 10px;
    background: #dedede;
}

.lb-list-item-right {
    position: relative;
}

.lb-list-item-right:before {
    position: absolute;
    bottom: 8px;
    left: -14px;
    content: "";
    background: rgba(0, 0, 0, 0.1);
    width: 1px;
    height: 21px;
}

/*------------------------
     Lounge Page CSS
 --------------------------*/

.lounge-tablist ul {
    border-bottom: 0.25px solid #565656;
}

.lounge-tablist ul li {
    display: inline-block;
}

.lounge-tablist ul li a {
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
}

.lounge-tablist ul li {
    margin: 0 5px 0 0;
}

.lounge-tablist ul li a {
    padding: 8px 5px;
    display: inline-block;
}

.lounge-tablist ul li a.active {
    border-bottom: 3px solid var(--theme);
}

.lounge-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 25px;
}

.lounge-box-name h6 {
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.lounge-box-name {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 12px;
}

.lounge-box-name h6 span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0ad406;
    position: absolute;
    top: 4px;
    left: 0;
}

.lounge-table-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lounge-table-wrap.v1 {
    height: 250px;
}

.lounge-table-wrap.v2 .lounge-table-center {
    width: calc(100% - 140px);
    text-align: center;
}

.lounge-table-wrap.v2 {
    height: 265px;
}

.lounge-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.lounge-table-center {
    border: 3px solid #949090;
    border-radius: 10px;
    padding: 20px 7px;
    position: relative;
    margin: 6px 6px;
}

.ch_list_v1 li img,
.ch_list_v2 li img {
    filter: grayscale(1);
    opacity: 0.5;
}

.ch_list_v1 li {
    display: block;
    margin: 14px 0;
    cursor: pointer;
}

.ch_list_v1 li.selected img,
.ch_list_v2 li.selected img {
    filter: grayscale(0);
    opacity: 1;
}

.ch_list_v2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ch_list_v2 li {
    padding: 0 6px;
    cursor: pointer;
}

.ch_list_v1 li span {
    position: absolute;
    top: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.ch_list_v2 li span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.ch_list_v1 li span.v1 {
    left: 3px;
}

.ch_list_v1 li span.v2 {
    right: 3px;
}

.ch_list_v2 li span.v1 {
    top: 3px;
}

.ch_list_v2 li span.v2 {
    bottom: 3px;
}

.ch_list_v1 li {
    position: relative;
}

.ch_list_v1 li span img,
.ch_list_v2 li span img {
    filter: grayscale(0);
    opacity: 1;
    border-radius: 50%;
}

.lounge-footer p {
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    margin: 0;
}

.lounge-footer {
    padding: 0 30px 13px;
}

.lg_table {
    position: relative;
}

.lg-table-holder {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    width: 178px;
    text-align: center;
    padding: 10px 10px;
    border: 1px solid #c4c4c4;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.lg_table:hover .lg-table-holder {
    visibility: visible;
    opacity: 1;
}

.lg-table-holder h5 {
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.lg-table-holder a {
    font-size: 12px;
    line-height: 15px;
    background: var(--theme);
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 50px;
}

.lg-table-holder img {
    display: block;
    margin: 0 auto 15px;
}

.lg-table-holder:after {
    position: absolute;
    bottom: -11px;
    left: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
    box-shadow: 7px 4px 7px 0px rgba(0, 0, 0, 0.15);
}

.lounge-box.Selected .lounge-box-name {
    background: #0ad406;
    border-radius: 10px 10px 0 0;
}

.lounge-box.Selected .lounge-box-name h6 {
    padding: 0;
    color: #fff;
}

.lounge-box.Selected .lounge-box-name h6 img {
    margin-right: 8px;
}

.lounge-box-name button {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 0;
    max-width: 15px;
}

.lounge-box-name {
    position: relative;
}

/*------------------------
     Rooms Page CSS
 -------------------------*/
.show_online.rm {
    height: 29px;
}

.single-session-item.room-box .single-speaker > img {
    width: 35px;
    height: 35px;
}

.single-session-item.room-box .single-speaker .more-speakers {
    width: 35px;
    height: 35px;
    background: #dfe0e4;
    border: 2px solid #fff;
    line-height: 29px;
    font-weight: 600;
}

.rc-session-wrap .single-session-item.room-box {
    margin: 0 0 20px;
    background: #fff;
}

.rc-session-wrap .single-session-item.room-box .session-info-content {
    padding: 20px 20px 5px 20px;
}

.rc-session-wrap .single-session-item.room-box .session-subinfo {
    width: calc(100% - 40px);
    margin-left: 20px;
    border-top: 1px solid #c4c4c4;
    padding: 8px 0 0;
    min-height: auto;
}

.rc-session-wrap
    .single-session-item.room-box
    .session-subinfo-item:nth-child(1) {
    width: 55%;
    padding: 0;
}

.rc-session-wrap
    .single-session-item.room-box
    .session-subinfo-item:nth-child(2) {
    width: 40%;
    padding: 0;
}

.room_btn {
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    padding: 8px 15px;
}

.room_btn.v1 {
    background: #949090;
}

.room_btn.v2 {
    background: var(--theme);
}

.room_btn.v3 {
    background: #4bb58c;
    min-width: 80px;
    text-align: center;
}

.single-session-item.room-box .session-info h2 {
    font-size: 16px;
    line-height: 18px;
    color: #565656;
    margin: 0 0 13px;
    padding-right: 0px;
}

.single-session-item.room-box .session-info p {
    font-size: 12px;
    line-height: 15px;
    padding: 0 0 12px;
}

#roomModal .modal-dialog {
    max-width: 390px;
}

#roomModal .modal-content {
    background: #fff;
    box-shadow: none;
    border: none;
}

.private-room-header {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 15px 20px;
}

.private-room-header h5 {
    font-size: 20px;
    line-height: 11px;
    font-weight: 600;
    margin: 0;
}

.private-room-header h5 img {
    margin-right: 10px;
    max-width: 15px;
}

#roomModal .btn-close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 15px;
    right: 13px;
    z-index: 99;
}

#roomModal .btn-close img {
    top: -2px;
    max-width: 10px;
}

.private-room-body p {
    font-size: 12px;
    line-height: 15px;
    margin: 30px 0;
    text-align: center;
}

.private-room-body h5 {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    margin: 0 0 20px;
}

.private-room-header .form-group {
    margin: 0 auto;
    width: 212px;
    display: block;
}

.private-room-body .form-group {
    width: 210px;
    margin: 0 auto;
    position: relative;
}

.private-room-body input {
    width: 100%;
    background: #e5e5e5;
    border: 1px solid #666a73;
    height: 40px;
    font-size: 16px;
    padding: 5px 5px 5px 33px;
    font-weight: 600;
    border-radius: 5px;
}

.private-room-body .form-group img {
    position: absolute;
    top: 11px;
    left: 12px;
    max-width: 13px;
}

.room_btn.v4 {
    background: var(--theme);
    font-weight: 600;
    margin: 40px 18px 20px 0;
    width: 112px;
    height: 41px;
}

.room_btn.v5 {
    background: var(--theme);
    font-weight: 600;
    margin: 40px 18px 20px 0;
    width: auto;
    height: auto;
    padding: 12px 40px;
    text-transform: capitalize !important;
}

.room-content hr {
    margin: 10px 0 15px;
}

/*-----------------------
     Rooms Video Chat CSS
 ----------------------------- */

.video-call-wrapper {
    background: #000;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-name {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #cccccc;
    font-size: 16px;
    line-height: 18px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
}

.video-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.active-caller {
    margin-left: 15px;
}

.active-caller span {
    color: #949090;
    font-weight: 600;
}

.video-time {
    background: #fff;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 50px;
    font-size: 16px;
    line-height: 14px;
}

.video-time img {
    position: relative;
    top: -1px;
}

.video-screen-area {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.video-main-screen {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    background-image: url(../img/video-screen-1.png);
    border-radius: 10px;
}

.video-subscreen {
    overflow-y: auto;
    padding-right: 6px;
}

.speaker-name {
    position: absolute;
    bottom: 15px;
    left: 20px;
}

.speaker-name p {
    margin: 0;
    color: #fff;
}

.video-subscreen-item {
    border-radius: 10px;
    padding-right: 6px;
    margin: 0 0 25px;
    position: relative;
}

.video-subscreen-item:last-child {
    margin-bottom: 0;
}

.video-subscreen-item img {
    border-radius: 10px;
    width: 100%;
}

.video-action-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.video-action-btn button {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    margin: 0 4px;
    border: none;
}

.video-action-btn button.audio-btn {
    position: relative;
    top: -2px;
}

.video-action-btn button.audio-btn img {
    max-width: 14px;
}

.video-action-btn button.end_call {
    width: 122px;
    height: 50px;
    text-align: center;
    background: #ff000d;
    font-size: 14px;
    line-height: 15px;
    color: #fff;
    border-radius: 50px;
}

.switch-view {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: transparent;
    border: none;
}

.switch-view .nav-tabs {
    border: 1px solid #fff;
    border-radius: 5px;
}

.switch-view li button {
    opacity: 0.6;
    padding: 8px 9px;
}

.switch-view li button.active {
    opacity: 1;
}

.screen-grid-view {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    height: 640px;
    overflow-y: auto;
}

.screen-grid-view .video-subscreen-item {
    margin: 0;
    padding: 0;
    position: relative;
}

.popup-video-screen {
    background: #000;
    height: 50vh;
    position: relative;
}

p.off-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.video-off {
    background: #e2131b !important;
    padding: 0;
}

#videoModal .btn-close {
    top: 10px;
    right: 10px;
    z-index: 99;
    width: 20px;
    height: 20px;
}

#videoModal .btn-close img {
    top: -2px;
}

.audio-track {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.popup-video-option {
    background: #fff;
    padding: 25px;
}

.popup-video-option > span {
    display: block;
    text-align: center;
    margin: 0 0 20px;
}

.select_option .nice-select {
    width: 100%;
    background: #fff;
    font-size: 14px;
    height: 40px;
}

.select_option.speaker .nice-select {
    width: 90%;
}

.select_option.speaker .audio-switch {
    position: absolute;
    top: 9px;
    right: -8px;
}

.select_option > span {
    position: absolute;
    top: -5px;
    left: 8px;
    background: #fff;
    color: #565656;
    z-index: 9;
    font-size: 14px;
    padding: 0 7px;
    line-height: 1;
}

.select_option {
    position: relative;
}

.select_option.audio .nice-select::before {
    background-image: url(../img/audio.png);
}

.select_option.speaker .nice-select::before {
    background-image: url(../img/speaker-2.svg);
}

.nice-select.time-zone::after,
.select_option .nice-select::after {
    border: none;
    content: "";
    background-image: url(../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0deg);
    top: 21px;
    filter: brightness(0) invert(0);
}

.loading {
    -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

.video-preloder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.video-preloder p {
    color: #fff;
    margin: 10px 0 80px;
}

/*-------------------------
     Event Feed Page CSS
 --------------------------*/
.filter_content {
    background: #fff;
    border-radius: 10px;
    padding: 15px 15px 20px;
    margin: 20px 0 0;
}

.filter_content h6 {
    font-size: 14px;
    line-height: 21px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    font-weight: 600;
    margin: 0 0 16px;
}

.filter_content ul li {
    display: block;
    margin: 0 0 20px;
    padding-left: 12px;
}

.filter_content ul li img {
    filter: grayscale(1);
    margin-right: 13px;
    position: relative;
    top: -2px;
}

.filter_content ul li a {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 21px;
    font-weight: 400;
}

.filter_content ul li a.active {
    color: var(--theme);
    font-weight: 600;
    text-shadow: 0 0 1px var(--theme);
}

.filter_content ul li a.active img {
    /*fill: #0b5ed7;*/
    /*filter: grayscale(0);*/
}

.filter_content ul li:last-child {
    margin: 0;
}

.news_feed {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 30px;
    padding: 15px 15px 15px 18px;
    /* position: absolute;
    width: 100%;
    top: 555px;
    left: 348px; */
}
.news_feed-creator{
    padding: 8px 20px 10px;
    position: absolute;
    width: 100%;
    top: 50px;
    left: 348px;
}

.news_feed .form-group {
    position: relative;
    margin: 0 0 12px;
}

.news_feed .form-group textarea#news_fedd {
    width: 100%;
    border: none;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    resize: none;
    padding: 9px 0 15px 55px;
    font-weight: 600;
    overflow-y: auto;
    height: 70px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.news_feed .form-group img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0.25px solid #949090;
}

.news_feed_btn-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 50px;
}

.news_feed_btn-left button {
    width: 31px;
    height: 31px;
    background: transparent;
    border-radius: 50%;
    margin: 0 10px 0 0;
}

.news_feed_btn-left button img {
    position: relative;
    top: 0px;
    display: block;
    margin: 0 auto;
}

.uploaded-image-thumb {
    position: relative;
    margin: 0 auto;
    /* width: 90%; */
}

.the-count-image-thumb {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0px !important;
    width: 95%;
}

.delete-video {
    position: absolute;
}

.delete-video {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
}

.feed-btn {
    position: relative;
}

.feed-btn:hover .news_feed-btn-name {
    opacity: 1;
    visibility: visible;
}

.news_feed-btn-name {
    position: absolute;
    top: -104%;
    left: -15px;
    width: 83px;
    background-color: #4c5053;
    font-size: 12px;
    color: #fff;
    padding: 7px 5px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.news_feed-btn-name::before {
    content: "";
    background: inherit;
    width: 7px;
    height: 7px;
    display: block;
    position: absolute;
    left: 27px;
    top: 23px;
    transform: rotate(45deg);
    border-radius: 0 0 0 2px;
}

#the-count,
#the-count2,
#the-count3,
#the-count4,
#the-count5 {
    position: absolute;
    bottom: 3px;
    right: 0;
}

#the-count,
#the-count2,
#the-count3,
#the-count4,
#the-count5 span {
    font-size: 12px;
    line-height: 15px;
    color: #666a73;
}

.news_feed_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.post-btn {
    background: #949090;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    padding: 7px 15px;
}

.post-btn img {
    max-width: 20px;
    margin: 0 6px 0 0;
}

/*timeline css*/
.timeline {
    position: relative;
    padding-left: 2.3rem;
    margin: 0px 0 25px 17px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 1px;
    height: 104%;
    background: #c4c4c4;
}

.timeline:last-child:before {
    display: none;
}

.timeline .timeline-container {
    position: relative;
    margin-bottom: 10px;
}

.timeline .timeline-container .timeline-icon {
    position: absolute;
    left: -54px;
    top: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    /*! font-size: 2rem; */
    background: #c4c4c4;
}

.timeline .timeline-container .timeline-icon img {
    max-width: 18px;
    position: relative;
    top: 12px;
    margin: 0 auto;
    display: block;
}

.timeline .timeline-container .timeline-body {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.timeline .timeline-container .timeline-body:before {
    content: "";
    background: inherit;
    width: 13px;
    height: 13px;
    display: block;
    position: absolute;
    left: -6px;
    transform: rotate(45deg);
    border-radius: 0 0 0 2px;
    box-shadow: -1px 3px 3px -1px rgba(0, 0, 0, 0.25);
}

.timeline_author-info-right {
    position: relative;
}

.timeline_author-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.timeline_author-info-left {
    width: 95%;
}

.timeline_author-info-right {
    width: 5%;
    position: relative;
}

.timeline_author-info-left .chat-time {
    font-size: 10px;
    line-height: 15px;
    display: block;
    font-weight: 700;
    color: #565656;
}

.timeline_author-info-right .chat_option {
    right: 5px;
}

.timeline_author-info-right .chat_option li img {
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.timeline_author-info-right .chat_option li button {
    padding: 5px 7px 6px;
}

.timeline_author-info-left .chat-msg-item img {
    margin-right: 12px;
}

.timeline-status p {
    font-size: 12px;
    line-height: 15px;
    margin: 0 0 10px;
}

.timeline-more {
    display: none;
    margin: 20px 0px 0;
}

.comment-status .chat-msg p {
    font-size: 12px;
    line-height: 16px;
    margin: 8px 0 0;
}

.timeline-more .form-group {
    position: relative;
}

.timeline-more .comment-status {
    margin: 20px 0 0;
}

.timeline-more .form-group input {
    width: 100%;
    border: 0.5px solid var(--theme);
    border-radius: 5px;
    font-size: 12px;
    line-height: 15px;
    height: 42px;
    padding: 0 0 0 46px;
}

.timeline-option button {
    font-size: 12px;
    line-height: 12px;
    padding: 0 0px 0 0;
}

.timeline-option button img {
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.timeline-option {
    padding: 10px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 15px 0 0;
    padding-left: 20px;

    /* display: flex;
    align-items: center;
    gap: 20px; */
}
.timeline-option .comment-btn-container ,.timeline-option .like-btn-container ,.timeline-option .time-btn-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}

.timeline-option .comment-count, .timeline-option .like-count, .timeline-option .time-count {
    font-size: 10px;
    color: #565656;
}
.like,
.comment {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-36px);
    position: absolute;
    left: -9px;
    padding: 8px 14px;
    border-radius: 4px;
    background: #fff;

    font-size: 14px;
    transition: all .4s ease;
    box-shadow: rgb(71 70 83 / 23%) 1px 1px 3px 3px;
}

.comment {
    left: -31px;
    padding: 8px 10x;
}

.unlike {
    left: -16px;
}

.unlike::before {
    left: 24px !important;
}

.like::before {
    content: "";
    background: inherit;
    width: 7px;
    height: 7px;
    display: block;
    position: absolute;
    left: 16px;
    bottom: -3px;
    transform: rotate(-47deg);
    border-radius: 0 0 0 2px;
}

.comment::before {
    content: "";
    background: inherit;
    width: 7px;
    height: 7px;
    display: block;
    position: absolute;
    left: 36px;
    bottom: -3px;
    transform: rotate(-47deg);
    border-radius: 0 0 0 2px;
}

.likeBtn:hover .like {
    opacity: 1;
    visibility: visible;
    transform: translateY(-51px);
}

.commentBtn:hover .comment {
    opacity: 1;
    visibility: visible;
    transform: translateY(-51px);
}
.timeline-more .form-group button {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme);
    height: 100%;
    border-radius: 0px 5px 5px 0px;
}

.timeline-more .chat-more-option {
    right: 7px;
}
.timeline-counter{
    position: absolute;
    bottom: 3px;
    right:5px;
    font-size: 10px;
    color: #565656;
}

.report-popup,
.delete-popup {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.report-popup.open,
.delete-popup.open {
    visibility: visible;
    opacity: 1;
}

.report-popup-header {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.report-popup-header p {
    font-size: 12px;
    line-height: 13px;
    margin: 0;
}

.report-popup-header button {
    position: absolute;
    top: 18px;
    right: 10px;
    max-width: 35px;
}

.report-popup-header {
    position: relative;
    padding: 20px 15px;
}

.report-popup-header p img {
    max-width: 12px;
    position: relative;
    top: -2px;
    margin-right: 6px;
}

.report-reaon {
    padding: 20px;
}

.report-reaon .polls-btn button.v2 {
    background: var(--theme);
    color: #fff;
    padding: 3px 11px 4px;
    height: auto;
    width: auto;
    border: none;
}

.pools_form [type="radio"]:checked + label {
    color: var(--theme);
}

.ad-post {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ad-post-img {
    width: 80px;
    height: 80px;
    background: var(--theme);
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-post-content {
    width: calc(100% - 100px);
    margin-left: 15px;
}

.ad-post-content h5 {
    font-size: 18px;
    line-height: 24px;
    color: var(--theme);
    text-transform: uppercase;
    margin: 0 0 10px;
}

.ad-post-content button {
    background: var(--theme);
    color: #fff;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 5px;
    margin: 10px 0 0;
}

.news-feed-sidebar .text-end.mt-4.sm-left {
    margin-top: 10px;
}

/*------------------------
     Speaker Page CSS
 -------------------------*/
.speaker-grid-wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.speaker-grid {
    width: calc(20% - 20px);
    margin: 0 10px 20px;
    border-radius: 10px;
    background: #fff;
    position: relative;
    max-height: 247px;
    min-height: 247px;
}

.speaker-grid-img {
    position: relative;
    border: 1px solid #c4c4c4;
    border-radius: 10px;
}

.speaker-grid-img > img {
    width: 100%;
}

.speaker-grid-option {
    z-index: 5 !important;
    position: absolute;
    top: 131%;
    right: 29%;
    top: 82%;
    right: 13px;
    transition: all 0.4s ease;
}

.speaker-grid:hover .speaker-grid-option {
    top: 108%;
    right: 30%;
    display: flex;
    gap: 10px;
}

.speaker-grid-option button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--theme);
    padding: 0;
    margin-left: 5px;
}

.speaker-grid-option button img {
    max-width: 16px;
    display: block;
    margin: 0 auto;
}

.speaker-grid-option.style2 button {
    background-color: var(--theme);
}

.speaker-grid-view {
    opacity: 0;
    visibility: hidden;
    height: auto;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(6px);
    text-align: center;
    width: 100%;
    position: absolute;
    top: 86%;
}

.speaker-grid:hover .speaker-grid-view {
    visibility: visible;
    opacity: 1;
    top: 97%;
}

.speaker-grid-view button {
    font-size: 12px;
    letter-spacing: 0.2px;
    line-height: 15px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    width: 75%;
    border-radius: 5px;
    padding: 6px 10px;
    background: linear-gradient(90deg, #bcbfbe 50%, var(--theme) 0);
    background-position: 100% 100%;
    background-size: 200% 100%;
    transition: all 0.4s ease;
}

.speaker-view-profile:hover {
    background-position: 0 100%;
}

.speaker-grid-info {
    border-radius: 0 0 10px 10px;
    padding: 14px;
    text-align: center;
    transition: all 0.4s ease;
}

.speaker-grid-info h5 {
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    color: var(--theme);
    text-transform: capitalize;
}

.speaker-grid-info p {
    font-size: 12px;
    line-height: 15px;
    margin: 0;
}

.speaker-grid-info span {
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    display: block;
}

#speakerModal .agent-info {
    background: #353535;
}

#speakerModal .modal-content {
    border-radius: 10px;
    padding-bottom: 20px;
    background: #fff;
}

#speakerModal .dt {
    font-size: 12px;
    line-height: 17px;
    color: var(--theme);
    border: 1px solid #c4c4c4;
    display: inline-table;
    padding: 3px 13px 4px;
    border-radius: 50px;
    font-weight: 400;
}

#speakerModal .agent-info-text h4 {
    color: #fff;
}

#speakerModal .agent-info-text p {
    color: #fff;
    opacity: 0.5;
}

#speakerModal .speaker-grid-option {
    bottom: 0;
    right: -7px;
}

#speakerModal .agent-info-text ul {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 15px 0 0;
}

#speakerModal .agent-info-text ul.social-profile li a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 0;
    text-align: center;
    line-height: 23px;
    font-weight: 300;
}

.speaker-pg .exh_cat h2 {
    border-top: none;
}

#speakerModal .session-info-content {
    background: #fff;
    padding: 25px 20px 10px;
}

#speakerModal .session-info-content p {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}

#speakerModal .speaker-sessions-item {
    border: 0.5px solid var(--theme);
    border-radius: 10px;
    padding: 7px 7px 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

#speakerModal .speaker-sessions-item img {
    width: 30px;
}

#speakerModal .speaker-sessions-item .speaker-sessions-info {
    width: calc(100% - 35px);
}

#speakerModal .speaker-sessions-item .session-info h2 {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 6px;
    padding-right: 40px;
}

#speakerModal .speaker-sessions-item .session-info h2 img {
    top: -4px;
}

#speakerModal .speaker-sessions {
    background: #fff;
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
}

#speakerModal .session-info {
    box-shadow: none;
    min-height: auto;
}

/*------------------------
     Contest Page CSS
 -------------------------*/
.contest-time {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 13px 5px;
    border-radius: 0 0 0 10px;
}

.contest-time p {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    margin: 0;
}

.room-content.contest_pg .single-session-item.room-box .session-info h2 {
    text-transform: inherit;
}

.room-content.contest_pg .single-session-item.room-box .session-info p {
    font-size: 14px;
    line-height: 16px;
    margin: 0 0 0px;
    padding: 0 0 8px;
}

.room-content.contest_pg
    .single-session-item.room-box
    .session-subinfo-item
    a.con_btn {
    color: var(--theme);
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
    text-align: left;
}

.lounge-tablist.contest_tablist {
    margin: 0 0 20px;
}

.lounge-tablist.contest_tablist ul li a {
    color: #949090;
    padding: 7px 15px;
}

.lounge-tablist.contest_tablist ul li a.active {
    color: var(--theme);
}

.room-content.contest_pg .session-img {
    background: var(--theme);
    position: relative;
}

.room-content.contest_pg .session-img img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 65px;
}

/*----Contest Details-----*/

.news_feed_title {
    background: var(--theme);
    border-radius: 10px 10px 0 0;
    padding: 15px 30px;
}

.news_feed_title a {
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
}

.news_feed_title a img {
    max-width: 8px;
    position: relative;
    top: -1px;
    margin-right: 6px;
}

.contest-content .news_feed {
    border-radius: 0 0 10px 10px;
}

.left-content.contest-content .timeline::before,
.left-content.contest-content
    .timeline
    .timeline-container
    .timeline-body::before {
    content: "";
    display: none;
}

.left-content.contest-content .timeline {
    position: relative;
    padding-left: 0;
    margin: 0px 0 25px 0px;
}

.like-amt img {
    max-width: 13px;
    height: auto;
    margin: 0;
    position: relative;
    top: -1px;
}

.like-amt {
    font-size: 10px;
    line-height: 15px;
    position: absolute;
    top: 5px;
    right: 0;
}

.reply-wrap .chat-msg-item {
    margin: 0 0 15px;
}

.reply-wrap .chat-msg-item:last-child {
    margin: 0 0 5px;
}

.news_feed.quiz .poll-stat {
    border: 1px solid var(--theme);
    border-radius: 5px;
    padding: 0 15px 5px;
}

.news_feed.quiz .poll-stat form {
    padding: 5px 0 0 0px;
}

.news_feed.quiz .polls-btn .room_btn.v2 {
    border-color: transparent;
    color: #fff;
    width: 63px;
}

/*-------------------------
     Sponsors Page
 --------------------------*/
.sp_box {
    margin: 0 0 20px;
}

.sp_box.s1,
.sp_box.s2 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sp_bg_1 {
    background-image: url(../img/bg-101.png);
}

.sp_bg_2 {
    background-image: url(../img/bg-202.png);
}

.sp_bg_3 {
    background-image: url(../img/bg-203.png);
}

.sp_bg_4 {
    background-image: url(../img/bg-2.png);
}

.sp_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 10px;
    position: relative;
    padding: 26px 30px;
}

.sponsor_info-right span {
    font-size: 10px;
    line-height: 12px;
    color: #c4c4c4;
    text-transform: capitalize;
}

.sponsor_info-right h5 {
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0 20px;
}

.sponsor_info-left {
    width: 104px;
}

.sponsor_info-right {
    width: calc(100% - 125px);
    margin-left: 20px;
    margin-top: 41px;
}

.sp-meet-option li {
    display: inline-block;
    margin-right: 10px;
}

.sp-meet-option li a {
    display: inline-block;
    background: var(--theme);
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    padding: 7px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.sp-meet-option li a img {
    margin-right: 7px;
    max-width: 17px;
    position: relative;
    top: -1px;
}

.sp-option {
    position: absolute;
    bottom: 13px;
    right: 13px;
}

.sp-option button {
    max-width: 20px;
    padding: 0;
}

.sp_box.s2 {
    padding: 12px 20px 20px;
}

.sp_box.s3 {
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sp_box.s3 .sponsor_info-right span {
    color: var(--theme);
}

.sp_box.s3 .sponsor_info-right {
    margin: 13px 0 0;
    text-align: center;
    width: 100%;
}

.sp_box.s3 .sponsor_info-right h5 {
    color: #565656;
}

.sp_box.s3 {
    padding: 20px;
}

.sp_box.s3 .sponsor_info-left {
    max-width: 80px;
}

/*----------------------
     Profile Settings Page
 -------------------------*/

.dashboard-tablist {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.dashboard-tablist li i {
    font-size: 20px;
}

.dashboard-tablist li button img {
    max-width: 16px;
    margin-right: 7px;
    position: relative;
    top: -2px;
    filter: grayscale(1);
}

.dashboard-tablist li button {
    padding: 0;
    margin-right: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #666a73;
    line-height: 12px;
}

.dashboard-tablist li {
    margin: 0 20px 0 0;
}

.dashboard-tablist li.active button {
    color: var(--theme);
}

.dashboard-tablist li.active button img {
    filter: grayscale(0);
}

.profile-dashboard-title h6 {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    margin: 0;
}

.profile-dashboard-title {
    padding: 20px 0 8px;
    border-bottom: 1px solid #c4c4c4;
}

.profile-dashboard-sidebar {
    background: #fff;
    border-radius: 5px;
    height: 100vh;
}

.user-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    margin: 0 auto;
}

.user-avatar img {
    border-radius: 50%;
}

.user-info {
    text-align: center;
    padding: 65px 25px 64px;
    border-bottom: 1px solid #ddd;
}

.user-name {
    margin: 15px 0;
}

.user-name h5 {
    font-size: 14px;
    line-height: 15px;
    color: var(--theme);
    margin: 0;
}

.user-name p,
.user-name span {
    font-size: 12px;
    line-height: 15px;
    margin: 0;
}

.profile-img-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 10px;
}

.profile-img-btn button {
    width: 48%;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 0;
}

.profile-img-btn button img {
    position: relative;
    top: -2px;
    max-width: 14px;
    margin-right: 5px;
}

.upload-photo {
    background: var(--theme);
    color: #fff;
    padding: 5px;
}

.delete-photo {
    border: 0.5px solid #666a73;
    padding: 9px 0 !important;
}

.sidebar_menu {
    margin: 25px 10px 0;
}

.sidebar_menu ul li button {
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    width: 100%;
    text-align: left;
    padding: 13px;
}

.sidebar_menu li.active button {
    background: #e5e5e5;
    border-radius: 5px;
    box-sizing: border-box;
    color: var(--theme);
    font-weight: 700;
}

.dashboard-content {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    /*height: 100vh;*/
    overflow-y: auto;
}

.mobile-dashbar.md-none {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #666a73;
    padding: 12px;
}

.mobile-dashbar-left {
    width: 70%;
}

.mobile-dashbar-right {
    width: 30%;
    text-align: right;
}

.mobile-dashbar-right button {
    color: #c4c4c4;
    text-transform: uppercase;
}

.mobile-dashbar-right button img {
    position: relative;
    top: -1px;
    margin-right: 5px;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown ul {
    position: absolute;
    top: 29px;
    left: 0;
    background: #fff;
    width: 250px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
}

.mobile-dropdown ul.open {
    visibility: visible;
    opacity: 1;
}

.mobile-dropdown ul li button {
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
    padding: 0;
    display: block;
    width: 100%;
    text-align: left;
}

.mobile-dropdown ul li.active button {
    color: var(--theme);
    font-weight: 600;
}

.mobile-dropdown ul li {
    padding: 0 0 17px;
}

.mobile-dropdown ul li:last-child {
    padding: 0;
}

.mobile-dropdown span {
    color: #c4c4c4;
    cursor: pointer;
}

.mobile-dropdown span img {
    margin-right: 4px;
}

.mobile-dropdown span img:nth-child(2) {
    margin-top: -1px;
}

.mobile-dropdown ul:before {
    position: absolute;
    top: -6px;
    left: 21px;
    content: "";
    background: #fff;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-radius: 3px;
}

/*-----Privacy Dashboard----*/

.privacy-tablist {
    border: 1px solid #c4c4c4;
    display: inline-flex;
}

.privacy-tablist button {
    border-right: 1px solid #c4c4c4;
    font-size: 12px;
    line-height: 14px;
    width: 120px;
    padding: 5px;
    text-align: center;
}

.privacy-tablist button.active {
    background-color: var(--theme);
    color: #fff;
}

.privacy-tablist button:last-child {
    border: none;
}

.privacy-tabcontent h6 {
    font-size: 18px;
    line-height: 22px;
    margin: 20px 0px 15px;
}

.privacy-tabcontent p {
    font-size: 12px;
    line-height: 14px;
    color: #666a73;
}

.my-notes h6 {
    font-size: 16px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme);
    margin: 0 0 15px;
}

.my-notes h5 {
    font-size: 16px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #565656;
    margin: 0 0 15px;
}

.my-note-item {
    border: 1px solid var(--theme);
    background: #f4f5f7;
    padding: 10px 10px 15px;
    border-radius: 5px;
    margin: 0 0 8px;
}

.my-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.my-note-header p {
    font-size: 10px;
    line-height: 18px;
    font-weight: 700;
    color: var(--theme);
    margin: 0;
}

.my-note-dropdown {
    position: relative;
}

.my-note-dropdown ul {
    position: absolute;
    top: 26px;
    right: 0;
    background: #fff;
    width: 155px;
    padding: 10px 10px 10px;
    border-radius: 5px;
    border: 1px solid #d7d8db;
    visibility: hidden;
    opacity: 0;
}

.my-note-dropdown.open ul {
    visibility: visible;
    opacity: 1;
}

.my-note-dropdown span {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}

.my-note-dropdown ul li button {
    font-size: 12px;
    line-height: 26px;
    display: block;
    width: 100%;
    text-align: left;
}

.my-note-dropdown ul li:hover button {
    background-color: #f4f5f7;
    color: var(--theme);
    font-weight: 600;
}

.my-note-body p {
    font-size: 10px;
    line-height: 12px;
    margin: 0;
}

/*--------------------
     My schedule CSS
 ----------------------*/

.table.table-bordered th p span {
    display: block;
}

.table.table-bordered th p {
    text-align: center;
    font-size: 10px;
    line-height: 10px;
    margin: 0;
}

.table.table-bordered tr {
    border-top: none;
}

.table.table-bordered thead th:nth-child(2),
.table.table-bordered tbody td:nth-child(2) {
    border-right: none;
}

.table.table-bordered thead th:nth-child(1),
.table.table-bordered tbody td:nth-child(1) {
    border-left: none;
}

.table.table-bordered tbody td {
    font-size: 10px;
}

.table.table-bordered tbody td:nth-child(1) {
    text-align: center;
}

.table.table-bordered tbody td p {
    margin: 0;
}

.table.table-bordered tbody td.selected {
    background-color: var(--theme) !important;
    border-color: transparent;
    background-image: none;
    color: #fff;
    border: none;
}

.date-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.date h5 {
    font-size: 14px;
    line-height: 11px;
    font-weight: 700;
    margin: 0;
}

.date-button {
    margin: 0 10px 0 0;
}

.date-button button img {
    max-width: 11px;
    filter: grayscale(1);
}

.date-button button.active img {
    filter: grayscale(0);
}

.table.table-bordered thead th:nth-child(2) p {
    text-align: right;
    font-size: 10px;
    line-height: 10px;
    margin: 0;
}

.dln-btn {
    background: var(--theme);
    color: #fff;
    font-size: 10px;
    line-height: 12px;
    padding: 8px 10px 6px;
    border-radius: 5px;
}

.dln-btn img {
    max-width: 10px;
    position: relative;
    top: -2px;
    margin-left: 5px;
}

.notification-tablist button {
    font-size: 12px;
    line-height: 14px;
    border: 0.5px solid #666a73;
    display: inline-block;
    padding: 7px 10px;
    width: 120px;
    border-radius: 5px;
}

.notification-tablist button.active {
    background: var(--theme);
    color: #fff;
    border-color: transparent;
}

.notif-list li {
    position: relative;
    padding-left: 22px;
    padding-bottom: 19px;
}

.notif-list li.active {
    font-weight: 700;
}

.notif-list li span {
    width: 15px;
    height: 15px;
    border: 1px solid var(--theme);
    display: inline-block;
    border-radius: 2px;
    position: absolute;
    top: 1px;
    left: 0;
}

.notif-list li span:before {
    position: absolute;
    top: 3px;
    left: 3px;
    content: "";
    background: var(--theme);
    width: 7px;
    height: 7px;
}

.notif-list {
    margin: 20px 0 0;
}

.del_contact-wrap.s2.style2 {
    margin: 0 -10px;
}

.del_contact-wrap.s2.style2 .del_contact-item {
    width: 23%;
    margin: 0 6px 13px;
}

.del_contact-wrap.s2.style2 .del_contact-item .exh-profile-opt,
.del_contact-item.s6 .exh-profile-opt {
    background: rgb(124, 143, 237, 0.8);
}

/* Hide default HTML checkbox */

.switch {
    position: relative;
    display: inline-block;
    width: 39px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.togggleslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 30px;
}

.togggleslider:before {
    position: absolute;
    content: "";
    height: 1rem;
    width: 1rem;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .togggleslider {
    background-color: var(--theme);
}

.togggleinput:focus + .togggleslider {
    box-shadow: 0 0 1px var(--theme);
}

.togggleinput:checked + .togggleslider:before {
    -webkit-transform: translate(14px, -50%);
    -ms-transform: translate(14px, -50%);
    transform: translate(14px, -50%);
}

.togggleslider:before {
    border-radius: 50%;
}

.popup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.deactivePopup {
    display: none;
}

.activePopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;

    transition: 0.4s;
}

.popupImg,
.popupPoll,
.popupOffring,
.popupLooking {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-width {
    width: 650px;
}

.news_feed-close-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    cursor: pointer;
}

.bordertop {
    border-top: 1px solid #94949442;
    padding: 6px 0;
}

.date-time {
    padding: 0px 0px 30px 0;
    margin-left: 190px;
}

.date-time-hidden {
    display: flex;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: all 0.7s;
}

.wrapper-offring,
.wrapper-looking {
    height: 150px;
    overflow-y: auto;
}

.offring-heading,
.looking-heading {
    padding: 10px 0px 0px 55px;
    display: block;
    font-size: 18px;
    color: #000000;
}

.offering-textarea,
.looking-textarea {
    border-bottom: none !important;
    height: 102px !important;
}

.active-btn {
    background-color: var(--theme) !important;
}




fieldset[disabled] .multiselect {
    pointer-events: none;
}

.multiselect__spinner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: 48px;
    height: 35px;
    background: #fff;
    display: block;
}

.multiselect__spinner:after,
.multiselect__spinner:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border-color: var(--theme) transparent transparent;
    border-style: solid;
    border-width: 2px;
    box-shadow: 0 0 0 1px transparent;
}

.multiselect__spinner:before {
    animation: a 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
    animation-iteration-count: infinite;
}

.multiselect__spinner:after {
    animation: a 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
    animation-iteration-count: infinite;
}

.multiselect__loading-enter-active,
.multiselect__loading-leave-active {
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}

.multiselect__loading-enter,
.multiselect__loading-leave-active {
    opacity: 0;
}

.multiselect,
.multiselect__input,
.multiselect__single {
    font-family: inherit;
    font-size: 16px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.multiselect {
    box-sizing: content-box;
    display: block;
    position: relative;
    width: 100%;
    min-height: 40px;
    text-align: left;
    color: #35495e;
}

.multiselect * {
    box-sizing: border-box;
}

.multiselect:focus {
    outline: none;
}

.multiselect--disabled {
    opacity: 0.6;
}

.multiselect--active {
    z-index: 1;
}

.multiselect--active:not(.multiselect--above) .multiselect__current,
.multiselect--active:not(.multiselect--above) .multiselect__input,
.multiselect--active:not(.multiselect--above) .multiselect__tags {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.multiselect--active .multiselect__select {
    transform: rotate(180deg);
}

.multiselect--above.multiselect--active .multiselect__current,
.multiselect--above.multiselect--active .multiselect__input,
.multiselect--above.multiselect--active .multiselect__tags {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.multiselect__input,
.multiselect__single {
    position: relative;
    display: inline-block;
    min-height: 20px;
    line-height: 20px;
    border: none;
    border-radius: 5px;
    background: #fff;
    padding: 0 0 0 5px;
    width: 100%;
    transition: border 0.1s ease;
    box-sizing: border-box;
    margin-bottom: 8px;
    vertical-align: top;
}

.multiselect__input::-webkit-input-placeholder {
    color: #35495e;
}

.multiselect__input:-ms-input-placeholder {
    color: #35495e;
}

.multiselect__input::placeholder {
    color: #35495e;
}

.multiselect__tag~.multiselect__input,
.multiselect__tag~.multiselect__single {
    width: auto;
}

.multiselect__input:hover,
.multiselect__single:hover {
    border-color: #cfcfcf;
}

.multiselect__input:focus,
.multiselect__single:focus {
    border-color: #a8a8a8;
    outline: none;
}

.multiselect__single {
    padding-left: 5px;
    margin-bottom: 8px;
}

.multiselect__tags-wrap {
    display: inline;
}

.multiselect__tags {
    min-height: 40px;
    display: block ;
    padding: 8px 40px 0 8px !;
    border-radius: 5px ;
    border: 1px solid #e8e8e8 ;
    background: #fff;
    font-size: 14px
}

.multiselect__tag {
    position: relative;
    display: inline-block;
    padding: 4px 26px 4px 10px;
    border-radius: 5px;
    margin-right: 10px;
    color: #fff;
    line-height: 1;
    background: var(--theme);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
}

.multiselect__tag-icon {
    cursor: pointer;
    margin-left: 7px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-weight: 700;
    font-style: normal;
    width: 22px;
    text-align: center;
    line-height: 22px;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.multiselect__tag-icon:after {
    content: "\D7";
    color: #266d4d;
    font-size: 14px;
}

.multiselect__tag-icon:focus,
.multiselect__tag-icon:hover {
    background: #369a6e;
}

.multiselect__tag-icon:focus:after,
.multiselect__tag-icon:hover:after {
    color: #fff;
}

.multiselect__current {
    min-height: 40px;
    overflow: hidden;
    padding: 8px 12px 0;
    padding-right: 30px;
    white-space: nowrap;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
}

.multiselect__current,
.multiselect__select {
    line-height: 16px;
    box-sizing: border-box;
    display: block;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}

.multiselect__select {
    position: absolute;
    width: 40px;
    height: 38px;
    right: 1px;
    top: 1px;
    padding: 4px 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.multiselect__select:before {
    position: relative;
    right: 0;
    top: 65%;
    color: #999;
    margin-top: 4px;
    border-style: solid;
    border-width: 5px 5px 0;
    border-color: #999 transparent transparent;
    content: "";
}

.multiselect__placeholder {
    color: #adadad;
    display: inline-block;
    margin-bottom: 10px;
    padding-top: 2px;
}

.multiselect--active .multiselect__placeholder {
    display: none;
}

.multiselect__content-wrapper {
    position: absolute;
    display: block;
    background: #fff;
    width: 100%;
    max-height: 240px;
    overflow: auto;
    border: 1px solid #e8e8e8;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}

.multiselect__content {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    min-width: 100%;
    vertical-align: top;
}

.multiselect--above .multiselect__content-wrapper {
    bottom: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
    border-top: 1px solid #e8e8e8;
}

.multiselect__content::webkit-scrollbar {
    display: none;
}

.multiselect__element {
    display: block;
}

.multiselect__option {
    display: block;
    padding: 12px;
    min-height: 40px;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.multiselect__option:after {
    top: 0;
    right: 0;
    position: absolute;
    line-height: 40px;
    padding-right: 12px;
    padding-left: 20px;
    font-size: 13px;
}

.multiselect__option--highlight {
    background: var(--theme);
    outline: none;
    color: #fff;
}

.multiselect__option--highlight:after {
    content: attr(data-select);
    background: var(--theme);
    color: #fff;
}

.multiselect__option--selected {
    background: #f3f3f3;
    color: #35495e;
    font-weight: 700;
}

.multiselect__option--selected:after {
    content: attr(data-selected);
    color: silver;
}

.multiselect__option--selected.multiselect__option--highlight {
    background: #f0f0f0;
    color: #fff;
}

.multiselect__option--selected.multiselect__option--highlight:after {
    background: #f0f0f0;
    content: attr(data-deselect);
    color: #fff;
}

.multiselect--disabled {
    background: #ededed;
    pointer-events: none;
}

.multiselect--disabled .multiselect__current,
.multiselect--disabled .multiselect__select,
.multiselect__option--disabled {
    background: #ededed;
    color: #a6a6a6;
}

.multiselect__option--disabled {
    cursor: text;
    pointer-events: none;
}

.multiselect__option--group {
    background: #ededed;
    color: #35495e;
}

.multiselect__option--group.multiselect__option--highlight {
    background: #35495e;
    color: #fff;
}

.multiselect__option--group.multiselect__option--highlight:after {
    background: #35495e;
}

.multiselect__option--disabled.multiselect__option--highlight {
    background: #dedede;
}

.multiselect__option--group-selected.multiselect__option--highlight {
    background: #f0f0f0;
    color: #fff;
}

.multiselect__option--group-selected.multiselect__option--highlight:after {
    background: #f0f0f0;
    content: attr(data-deselect);
    color: #fff;
}

.multiselect-enter-active,
.multiselect-leave-active {
    transition: all 0.15s ease;
}

.multiselect-enter,
.multiselect-leave-active {
    opacity: 0;
}

.multiselect__strong {
    margin-bottom: 8px;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
}

[dir="rtl"] .multiselect {
    text-align: right;
}

[dir="rtl"] .multiselect__select {
    right: auto;
    left: 1px;
}

[dir="rtl"] .multiselect__tags {
    padding: 8px 8px 0 40px;
}

[dir="rtl"] .multiselect__content {
    text-align: right;
}

[dir="rtl"] .multiselect__option:after {
    right: auto;
    left: 0;
}

[dir="rtl"] .multiselect__clear {
    right: auto;
    left: 12px;
}

[dir="rtl"] .multiselect__spinner {
    right: auto;
    left: 1px;
}

@keyframes a {
    0% {
        transform: rotate(0);
    }

    to {
        transform: rotate(2turn);
    }
}

/* {
    "mode": "full", "isactive": false;
} */



.toasted-container.top-right{
    top: 4% !important;
    right: 2% !important;
}
.toasted-container{
    z-index: 99999999 !important;

}
.toasted {
    font-weight: 400 !important;
    font-size: 14px;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    min-height: 35px;
    min-width: 400px;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    text-align: left !important;
    justify-content: flex-start !important;
    z-index: 99999999 !important;
    position: relative;
}

.toasted-success {
    background-color: #D3F3E5 !important;
    border: none;
    color: #30624A !important;

}

.toast-message {
    line-height: 14px;
    display: flex;
    align-items: center;
}

.toasted-error {
    background-color: #F1CBD2 !important;
    border: none;
    color: #681923 !important;
}

.toasted-success .material-icons {
    font-size: 14px !important;
    color: #30624A !important;
    margin-right: 10px !important;
}

.toasted-error .material-icons {
    font-size: 18px !important;
    color: #681923 !important;
    margin-right: 10px !important;
}

.toasted .action {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;

}

.toasted .action i {
    color: #161921 !important;
}

.toasted.has-progress {
    position: relative;
    overflow: hidden;
}
.toasted.has-progress::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.toasted.has-progress .toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    transform-origin: left;
    animation: toastShrink var(--toast-dur) linear forwards;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.toasted.has-progress::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height:2px;
    background: #5B73E880;
    z-index: 11;

}
.toasted-success.has-progress .toast-progress {
    background: #5B73E8;
}
.toasted-error.has-progress .toast-progress {
    background: #681923;
}
/* Optional: Pause the countdown when hovering */
.toasted.has-progress:hover .toast-progress {
    animation-play-state: paused;
}

@keyframes toastShrink {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}
