:root {
    --main-color: #1a3a4d;
    --second-color: #c5041f;
    --third-color: #f44336;
    --nav-color: #c5041f;
    --hover-color: #f44336;
    --nav-i-color: gray;
    --nav-background: #FFF;
    --main-background: #e8f1f2;
    --black-background: #1e1c1e;
    --border-color: #ccc;
    --dinger-background: #ffdddd;
    --dinger-border: #f44336;
    --success-background: #ddffdd;
    --success-brder: #4caf50;
    --progress-background: #38ae04;

    --star-size: 20px;
    --star-color: #ccc;
    --star-background: #ED9700;
}

/* @font-face {
    font-family: NotoKufiArabic;
    src: url(/webfonts/NotoKufiArabic-Regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: block;
  } */

*{
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: NotoKufiArabic;
    font-size: 14px;
    direction: rtl;
    position: relative;
    /*height: 100%;*/
    scroll-behavior: smooth;
}

.err-500 {
    height: calc(100vh - 100px);
    background: linear-gradient(var(--black-background),var(--black-background), var(--black-background), var(--main-color), var(--main-color), var(--second-color));
	background-repeat: no-repeat;
	background-size: cover;
	color: #eee;
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fill-btn {
    background: transparent;
    border: 2px solid var(--second-color);
    color: #C8FFF4;
    padding: 5px 15px;
    font-size: 1.25em;
    transition: all 0.15s ease;
    border-radius: 3px;
    width: max-content;
}

.fill-btn:hover {
    background: var(--second-color);
    border: 2px solid #03DAC6;
    color: #03DAC6;
    cursor: pointer;
    transform: scale(1.05);
}

input, select, option {
    font-family: NotoKufiArabic;
}
.Stars {
    --percent: calc(var(--rating));
    display: inline-block;
    font-size: var(--star-size);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Stars::before {
    content: '★★★★★';
   ;
    letter-spacing: -3px;
    background: linear-gradient(-90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*Start colors and background*/
.lm-main-color {
    color: var(--main-background);
}
.lm-black-color {
    background: var(--main-color) !important;
}
.lm-second-color {
    color: var(--second-color);
}
.lm-third-color {
    color: var(--third-color);
}
.lm-main-background {
    background-color: var(--main-background);
}
.lm-succ-background {
    background-color: var(--success-brder) !important;
}
.lm-border {
    border: 2px solid var(--border-color);
}
.lm-border-shadow {
    border: 1px solid var(--border-color);
    box-shadow: 0 0 3px var(--border-color);
}
.lm-border-shadow:hover {
    box-shadow: 3px 3px 8px var(--border-color);
}
.lm-border:hover {
    border: 1px solid var(--border-color);
}
/*End colors and background*/
.lm-full {
    width: 100% !important;
}
.lm-center {
    text-align: center;
    align-items: center;
    align-self: center;
    align-content: center;
}
.lm-vert-align {
    align-self: center;
}
/*Start lamoud banel*/
.lm-success-banel, .lm-success-alert {
    background-color: var(--success-background);
    border: 1px solid var(--success-brder);
    border-bottom-width: 5px;
    padding: 10px;
    width: 100%;
    margin: 20px 0;
}
.lm-alert-alert {
    background-color: #ffffb4;
    border: 1px solid green;
    border-bottom-width: 5px;
    padding: 10px;
    width: 100%;
    margin: 20px 0;
    color: #2196f3;
}
.lm-success-banel h4, .lm-success-alert h4 {
    background-color: var(--success-background);
    color: var(--success-brder);
}
.lm-dinger-banel, .lm-dinger-alert {
    background-color: var(--dinger-background);
    border: 1px solid var(--dinger-border);
    border-right-width: 5px;
    padding: 10px;
    margin: 10px auto;
    width: 100%;
}
.lm-dinger-banel h4, .lm-dinger-alert h4 {
    color: var(--dinger-border);
}
.lm-info-banel {
    background-color: var(--third-color);
    border: 1px solid var(--third-color);
    padding: 10px;
    margin: 10px auto;
}
.lm-info-banel h4 {
    color: #fff;
}
h4 a {
    color: black !important;
}
.lm-round-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, black, transparent);
    padding: 24px 0;
    transition: 0.5s ease;
}
.lm-round-box-container .lm-round-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    box-shadow: 0 0 6px gray;
    /*border: 2px solid #ccc;*/
    border-radius: 12px;
    width: 95%;
    max-width: 240px;
    color: #fff;
    background: #0e0e0e;
    font-size: 14px;
    transition: 0.5s ease;

}
.lm-round-box-container .lm-round-box i {
    font-size: 40px;
}
.lm-round-box-container:hover {
    background: var(--second-color);
    border-radius: 16px;
}

.lm-round-box-container .lm-round-box:hover {
    background: #ccc;
    color: var(--second-color);
    width: 95%;
}


img {
    object-fit: cover;
}
.lm-quotes-banel {
    background-color: var(--main-background);
    border: 1px solid var(--third-color);
    border-right-width: 5px;
    padding: 10px;
    margin: 10px auto;
}
.lm-user-login-content {
    padding: 20px 0 20px 10px;
}
.lm-user-login-content-l {
    padding: 20px 10px 20px 5px;
}
.lm-user-login-content .lm-content, .lm-user-login-content-l .lm-content {
    border: none;
    margin: 0;
}
.lm-boxshadow {
    background: #fff;
    padding: 24px 8px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 3px #ccc;
    border-radius: 4px;
    margin-bottom: 16px;
}
/*End lamoud banel*/
/*Start lamoud alert*/
.lm-success-alert, .lm-dinger-alert {
    position: relative;
}
.close-alert {
    font-size: 20px;
    content: "×";
    /*font-weight: ;*/
    color: #fff;
    background: var(--third-color);
    box-shadow: 0 0 3px var(--border-color);
    padding: 0px 5px;
    position: absolute;
    top: 5px;
    left: 5px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.5s ease;
}
.close-alert:hover {
    opacity: 1;
    box-shadow: 3px 3px 8px var(--border-color);
}
/*End lamoud alert*/
/*Start lamoud cards*/
.lm-content {
    background-color: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 3px var(--border-color);
    transition: 0.5s ease;
    padding: 5px;
    margin: 5px;
    width: 100%;
}
.lm-card{
    background-color: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 3px var(--border-color);
    transition: 0.5s ease;
    padding: 5px;
    margin: 5px;
}
.lm-card:hover{
    box-shadow: 3px 3px 5px var(--border-color);
}
/*End lamoud cards*/
/*Start group page*/
table.lm-groups-manage a {
    color: black;
}
table.lm-groups-manage a:hover {
    color: black;
    opacity: 0.8;
}
.lm-td-edit {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
td.lm-td-edit i{
    cursor: pointer;
}
.lm-post-thumb img {
    border-radius: 0 !important;
    height: 55px !important;
}
span.lm-post-thumb {
    display: flex;
    width: max-content;
    align-items: center;
}
.lm-post-content .lm-post-header {
    position: relative;
    margin-bottom: 33px;
}
.lm-post-content .lm-post-header img {
    width: 100%;
    border-radius: 0;
    height: 350px;
}
.lm-admin-bar {
    background: var(--main-color);
    padding: 10px;
    position:absolute;
    bottom: -30px;
    right: 0;
    width: 100%;
    color: #fff;
}
/*End group page*/
/*Start lamoud tables*/
table.lm-table {
    width: 100%;
    border: 1px solid var(--border-color);
    border-spacing: 0;
    background: #fff;
    margin: 20px auto;
    font-size: 12px;
}
table.lm-table th {
    background: var(--nav-color);
    color: #fff;
    text-align: inherit;
    font-weight: normal;
}

table.lm-table th, table.lm-table td {
    padding: 10px 3px;
  }

  table.lm-table tr:nth-child(even) {
    background-color: var(--main-background);
  }

/*End lamoud tables*/
/*Start inputs*/
input, select {
    height: 50px;
    border: 1px solid var(--border-color);
    padding: 5px;
    transition: 0.5s ease;
}
.lm-radio-container {
    margin-bottom: 10px;
    color: gray;
    display: flex;
    justify-content: space-between;
}

.lm-inpt-radio {
    border: 1px solid var(--border-color);
    width: 32%;
    height: 50px;
    padding-right: 5px;
}

input[type="radio"], input[type="checkbox"] {
    height: 20px;
    width: 20px;
    position: relative;
    top: 5px;
}

.lm-form-container {
    border: 1px solid var(--border-color);
    box-shadow: 3px 3px 8px var(--border-color);
    padding: 10px;
    margin: 10px auto;
    background: #fff;
}
.lm-input-icon-container {
    position: relative;
    margin: 10px 0;
}
.lm-input-icon-container input{
    width: 100%;
    margin: 0 !important;
    padding-left: 45px;
}
.lm-input-icon-container i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s ease;
}
.lm-form-container h2 {
    background: #2196f3;
    margin: -10px -10px 0 -10px;
    padding: 10px;
    color: #fff;
}

input:focus {
    box-shadow: 0 0 3px var(--border-color);
    border-color: var(--second-color);
  }

.lm-input-block {
    display: flex;
    flex-direction: column;
    margin: 10px auto;
}
.lm-input-block input, .lm-input-block select {
    margin: 10px 0;
}

span.lm-input-err {
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
    width: 100% !important;
}
/*Start predcrump*/
.lm-breadcrumb {
    width: 100%;
    min-height: 35px;
    background: var(--main-color);
    box-shadow: 1px 0px 3px #ccc;
    position: relative;
    bottom: 20px;
    margin: 7px;
    font-size: 12px;
}
.lm-breadcrumb ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.lm-breadcrumb ul li {
    padding: 6px 2px;
}

.lm-breadcrumb .breadcrumb-home {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -10px;
    z-index: 9999999;
    background: #1a2a4d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}
.lm-breadcrumb .breadcrumb-links li {
    position: relative;
}
.lm-breadcrumb .breadcrumb-home:hover {
    width: 47px;
    height: 47px;
}
.lm-breadcrumb .breadcrumb-home i {
    font-size: 20px;
    color: var(--second-color);
}
.lm-breadcrumb .breadcrumb-links li a {
    color: #fff;
}
.lm-breadcrumb .breadcrumb-links li:not(:last-child)::after {
    content: "\f100";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    color: var(--second-color);
    unicode-bidi: bidi-override;
}
.lm-breadcrumb .breadcrumb-links li:last-child {
    color: var(--hover-color);
}
.section-map-parent ul {
    list-style-image: url('/theme-images/down-left-level.png');
    margin: 0;
}
.section-map-parent ul li {
    padding-right: 0;
    margin-right: -18px;
}

span.user-status-btn.lm-btn-second.lm-succ-background.status-btn-txt {
    margin-left: 16px;
}
/*End predcrump*/
/*end inputs*/
span.lm-badge-notif-count {
    width: 20px;
    height: 20px;
    position: absolute;
    background: red;
    border-radius: 50%;
    color: #fff;
    line-height: 2;
    text-align: center;
    top: 5px;
    left: 0px;
    font-size: 10px;
    font-weight: bold;
}
/*Start navbar*/
.lm-navbar {
    background: var(--nav-background);
    color: var(--nav-i-color);
    height: 65px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999999999;
    box-shadow: 0 0 5px gray;
    max-width: 100%;
}
.lm-site-logo {
    padding-right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}
.lm-site-logo img {
    width: 150px;
    margin: 0;
}
.lm-full-container.user-is-loged-in, .lm-container-full.user-is-loged-in {
    /* margin-top: 50px !important; */
}

.lm-container {
    /* margin-top: 70px !important; */
}
.lm-post-title h2{
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.lm-navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-around;
}


.lm-user-mini li {
    width: 20%;
    text-align: center;
}

.lm-navbar ul li {
    padding: 0 10px;
    width: 100%;
    cursor: pointer;
    transition: .2s ease;
}
.lm-navbar ul li:hover {
    background: var(--nav-color);
    color: var(--nav-background);
}
.lm-navbar i {
    font-size: 20px;
}
.lm-user-notef, .lm-user-massege, .lm-user-search {
    padding-top: 20px !important;
    position: relative;
}

li.lm-no-data {
    background: var(--border-color);
    padding: 10px !important;
    text-align: center;
}

.lm-profile-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.lm-login-nav, .lm-register-nav {
    margin-top: 10px !important;
    border: 1px solid;
    padding: 10px 5px !important;
    font-size: 10px;
}
.lm-login-nav .fa-sign-out-alt {
    transform: rotate(
180deg
);
}

.lm-login-nav i, .lm-register-nav i{
    font-size: 14px;
}
ul.lm-nav-links {
    height: 88%;
    overflow: hidden;
    justify-content: center;
}
ul.lm-nav-links li {
    padding: 19px 15px;
}
ul.lm-nav-links a {
    color: black;
}
ul.lm-nav-links a:hover {
    color: #fff !important;
}
.lm-mobile-bar {
    cursor: pointer;
    padding: 24px;
    text-align: center;
    display: none;
}
/*End navbar*/
/*Start main baner cove*/
.lm-cover-img {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    background-image: url(/theme-images/online-conv.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.1;
}



.lm-creat-room-input {
    align-self: center;
    width: 100%;
    position: absolute;
    top: 30%;
    right: 0;
    text-align: center;
}

.lm-creat-room-input input#fast-room {
    width: calc(50% - 115px);
}

/*End main baner cove*/

/*Start search*/
input#search {
    position: absolute;
    width: 100%;
    top: 65px;
    box-shadow: 0 2px 4px var(--border-color);
    z-index: 5;
    right: -100%;
    height: 0;
}
.hide-serach {
    right: 0 !important;
    height: 55px !important;
}
/*End search*/
/*Start box drop*/
.lm-drop-box-container {
    position: absolute;
    left: 250px;
    top: 65px;
    display: none;
}
.hide-drop-box {
    display: block !important;
}
.lm-drop-box {
    width: 250px;
    height: 200px;
    position: absolute;
    overflow-y: scroll;
    color: black;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-top: 10px !important;
}
.lm-drop-box li {
    padding: 6px !important;
    text-align: right;
    font-size: 12px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
li.lm-data.unread {
    color: #00bcd4;
}
.lm-drop-box li:hover {
    background: var(--border-color) !important;
    color: black !important;
}
.lm-drop-box-footer {
    position: absolute;
    bottom: -239px;
    color: gray;
    width: 250px;
    background: #fff;
    padding: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0px 3px 6px var(--border-color);
}
.lm-drop-box i {
    font-size: 14px;
    color: gray;
}

/*End box drop*/
/*Start tab*/
.lm-tablink {
    background-color: var(--nav-color);
    color: white;
    float: right;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 2px;
    font-size: 14px;
    width: 25%;
  }
  
  .lm-tablink:hover {
    background-color: var(--dinger-border);
  }
  .lm-tabcontent {
    display: none;
    padding: 12px 5px 10px 5px;
    height: 100%;
    margin-top: 24px;
    background: #fff;
    width: 100%;
    box-shadow: 0 1px 3px;
    border-radius: 4px;
  }
.lm-section {
}
/*end tab*/
/*Start post card*/
.lm-post {
    padding: 0;
}
.lm-post img.lm-post-img {
    margin: 0;
    width: 100%;
    border-radius: 0;
    height: 120px;
    border: unset;
}
.lm-post-content {
    margin-top: -10px;
    padding: 0 10px;
}
.lm-min-card .lm-post-title h2 {
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.lm-btn-custom {
    background: #012060 !important;
    width: 150px !important;
    text-align: center;
    padding: 12px 0 !important;
    border-radius: 4px;
}
.lm-min-card .lm-btn-second-red {
    padding: 4px;
    font-size: 12px;
    font-weight: bold;
    margin: 4px auto;
}
.lm-min-card img.lm-post-img {
    height: 100px;
}
.lm-btn-gray {
    width: 100%;
    text-align: center;
    background: var(--border-color);
    padding: 10px;
    cursor: pointer;
    /*font-weight: ;*/
    margin: 10px auto;
    opacity: 0.8;
}
.lm-btn-gray:hover {
    opacity: 1;
}
.lm-btn-second-red {
    width: 100%;
    text-align: center;
    background: var(--second-color);
    padding: 10px;
    cursor: pointer;
    margin: 10px auto;
    color: #fff;
}
.lm-btn-second-red:hover {
    opacity: 0.9;
}
.lm-post-content i {
    color: gray;
    font-size: 14px;
    padding-left: 5px;
}
.lm-breadcrumps {
    background: var(--main-color);
    padding: 10px;
    margin: 0 5px;
    height: 50px;
    position: relative;
}
.lm-breadcrumps a::after {
    width: 35px;
    height: 35px;
    content: "";
    position: absolute;
    top: 5px;
    border-top: 5px solid #e8f1f2;
    border-right: 5px solid #e8f1f2;
    transform: rotate(219deg);
}
.lm-post-title h2 {
    font-size: 18px;
}
/*End post card*/
/*Start Scroll To Top*/
.lm-scroll-to-top {
    position: fixed;
    left: -60px;
    bottom: 20px;
    cursor: pointer;
    transition: 0.5s ease;
    color: var(--second-color);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px #ccc;
    font-size: 25px;
    border-radius: 50%;
}
.lm-scroll-to-top:hover {
    box-shadow: 0 3px 5px #ccc;
    background:var(--second-color);
    color: #fff;
}

.lm-scroll-to-top.active{
    left: 20px;
}
/*End Scroll To Top*/
/**/
.lm-edit-container {
    text-align: right;
    margin: 0 -5px;
}
.lm-edit-container h2 {
    padding: 8px;
    background: var(--nav-color);
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
.lm-edit-container i {
    float: left;
}
.lm-edit-container p:hover {
    background: var(--hover-color);
    cursor: pointer;
    color: #fff;
}
.lm-edit-container p {
    padding: 10px;
    color: black;
}
/**/
/*Start rounded*/
.lm-rounded {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    line-height: 5;
    font-size: 20px;
    /*font-weight: ;*/
    background: var(--main-background);
    color: #00a8e9;
    cursor: pointer;
    margin-top: 10px;
}
/*end rounded*/
/*Statr Footer*/
.lm-footer-content {
    background: #fff;
    border-top: 1px solid var(--border-color);
}
.lm-footer-content img {
    height: 40px;
    padding: 0 16px;
}
.lm-footer-content p{
    display: flex;
    align-items: center;
    justify-content: center;
}
/*End Footer*/
/*Start amoud button*/
.lm-btn-main, .lm-btn-second, .lm-btn-third, input[type="submit"] {
    padding: 8px 24px;
    color: #fff;
    opacity: 1;
    background-color: var(--second-color);
    transition: 0.5s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    cursor: pointer;
    border-radius: 6px;
}
.lm-btn-main {
    background: var(--main-color);
}
.lm-btn-second {
    background: var(--second-color);
}
.lm-btn-third {
    background: var(--third-color);
}
.lm-btn-main:hover, .lm-btn-second:hover, .lm-btn-third:hover, input[type="submit"]:hover {
    opacity: 0.9;
    box-shadow: 2px 2px 5px var(--border-color);
}
/*End amoud button*/

/*Start links*/
a:not(.lm-btn-main, .lm-btn-second, .lm-btn-third){
    color: var(--second-color);
    text-decoration: none;
    opacity: 0.95;
    transition: 0.5 ease;
}
a:hover:not(.lm-btn-main:hover, .lm-btn-second:hover, .lm-btn-third:hover) {
    color: var(--third-color);
    opacity: 1;
}
/*End links*/
/*Stat lamoud ul && li*/
ol li::marker, ul li::marker {
    color: var(--second-color);
    /*font-weight: ;*/
}
/*end lamoud ul && li*/
/*Start Heading*/
h2 {
    color: var(--main-color);
}
h3, h4, h5, h6 {
    color: black;
}
/*End Heading*/
/*Start img*/
img {
    max-width: 100%;
    margin: 10px auto;
}
/*End img*/

/*start full container*/
.lm-full-container {
    margin: 0;
}
/*End full container*/

/*Start lamoud 80% container*/
.lm-container {
    width: 80%;
    margin: 0 auto;
}
/*end lamoud 80% container*/

/*Start lamoud row*/
.lm-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
/*End lamoud row*/

/*Start msg box*/
.lm-chat-box {
    width: 300px;
    height: 400px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 5px var(--border-color);
    position: fixed;
    bottom: 1px;
    left: calc(50% - 150px);
    background: #fff;
    z-index: 9999;
    transition: 0.5s ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.lm-chat-box.lm-single-chat {
    z-index: 9999999999;
}
.lm-single-chat .lm-chat-box-header {
    box-shadow: 0px 0px 0px #ccc !important;
    border-bottom: 1px solid #ccc;
    margin: 0 auto !important;
}
.lm-single-chat.minimize {
    height: 60px !important;
    min-height: 0;
}
.lm-chat-box.show-chat {
    height: 0 !important;
}
.lm-chat-box.room-chat {
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: absolute;
    left: auto;
    width: 100%;
    background: var(--black-background);
    height: 100%;
}
.lm-chat-box.room-chat .lm-chat-box-header {
    box-shadow: none;
    height: 50px;
}
.lm-chat-box.room-chat .lm-chat-box-content {
    background: #1b1a1a;
}
.lm-chat-box.room-chat .group-chat-container {
    border: 1px solid #7273736b;
    background-color: inherit;
}
.lm-partic-box i {
    margin-right: 5px;
}
.lm-chat-box.room-chat input#lm-msg-send {
    background: #2196f3;
}

.user-fr-stats {
    display: flex;
    justify-content: center;
}
.lm-chat-box.minimize {
    height: 70px;
    min-height: 0;
}
.user-fr-stats a {
    font-size: 17px;
    color: black;
    line-height: 2;
}
.lm-chat-box .lm-chat-box-header {
    display: flex;
    box-shadow: 7px 5px 5px var(--border-color);
    margin: -5px -5px 0px -5px;
    height: 60px;
    justify-content: space-between;
    position: relative;
    z-index: 99999;
    padding: 5px;
}
.room-chat.minimize .lm-chat-box-header {
    box-shadow: none !important;
}

.lm-chat-user {
    display: flex;
}
.lm-chat-box-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    margin: 5px;
}
.lm-chat-box-header p {
    font-size: 12px;
    color: #2196f3;
}
.lm-chat-ctrl {
    padding: 15px 5px;
}
.lm-chat-box-header .lm-chat-ctrl i {
    font-size: 14px;
    padding-right: 5px;
    color: var(--second-color);
    cursor: pointer;
}

.lm-chat-box-header .lm-chat-ctrl i:hover {
    color: var(--nav-color);
}
    
.lm-chat-box .lm-chat-box-content {
    height: calc(100% - 100px);
    position: relative;
    z-index: 9999;
    overflow-y: scroll;
}
.currunt-user, .far-user {
    display: flex;
    flex-wrap: nowrap;
    margin: 10px 0;
}
.currunt-user img, .far-user img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.currunt-user p, .far-user p {
    width: calc(100% - 30px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5px;
    margin: 5px;
    direction: rtl;
    font-size: 12px;
}
.far-user {
    direction: ltr;
}
.far-user p {
    background-color: #ccc;
}
.lm-chat-box .lm-chat-box-footer {
    display: flex;
    height: 40px;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    padding: 5px;
}
.lm-chat-box-footer.msg-minimize{
    height: 0;
    display: none;
}
.lm-chat-box-footer input {
    height: 100%;
    border-radius: 10px;
    line-height: 0;
    width: 90%;
    margin: 0px 3px;
}
.lm-chat-box-footer i{
    font-size: 50px;
}
.lm-menu-chat-container.maxmiz-menu {
    height: 100%;
}
/*///////////////////////////////////////////////*/
/*.lm-camPartic-container {
    position: relative;
    height: 100%;
}

.lm-partic-container {
    height: 100%;
}
.lm-camPartic-row {
    height: 100%;
}

.lm-partic-container {
    position: relative;
}
.lm-partic-widget {
    overflow-y: scroll;
    transition: 0.5s ease;
    height: 100%;
}

.lm-partic-box p {
    position: absolute;
    top: -15px;
    left: 5px;
}
.lm-partic-box .user-nave {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    text-align: center;
    color: var(--nav-color);
}
.lm-partic-box .user-cam {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding: 5px;
    text-align: center;
    line-height: 10;
}
.lm-partic-box {
    position: relative;
    height: 170px;
    margin: 8px;
    padding: 5px;
    background: #474747;
    color: #fff;
    box-shadow: 0px 0px 5px black;
    border: 1px solid black;
}
.lm-cam-container {
    text-align: center;
}
.lm-cam-container video#local-video {
    width: 90%;
    height: 90%;
}
video#remote-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
}*/
/*///////////////////////////////////////////////*/
/*Start custom alert box*/
.lm-custome-alert {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99999999999999;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}
.lm-custome-alert .lm-alert-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: black;
    opacity: .5;
    transition: 0.5s ease;
}
.lm-custome-alert .lm-alert-box {
    background: #fff;
    position: absolute;
    padding: 10px;
    transition: 0.5s ease;
    top: -100px;
    opacity: 0;
    border: 1px solid gray;
    box-shadow: 0px 0px 5px grey;
    border-radius: 5px;
    margin: 10px;
}
.lm-alert-box div {
    margin-bottom: 20px;
}

.lm-alert-box div input {
    width: 100%;
    height: 40px;
}
.lm-custome-alert button {
    padding: 10px 50px;
    margin: 0 10px;
    cursor: pointer;
    border: none;
    color: #fff;
    transition: .05s ease;
}
.lm-custome-alert button:hover {
    opacity: 0.9;
}
.lm-custome-alert .lm-alert-no-btn{
    background: var(--main-color);
}
.lm-custome-alert .lm-alert-ok-btn{
    background: var(--second-color);
}
.lm-custome-alert .lm-alert-box span {
    position: absolute;
    top: -10px;
    right: -11px;
    width: 20px;
    height: 20px;
    background: var(--second-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.5s ease;
}
.lm-custome-alert .lm-alert-box span:hover{
    opacity: 0.9;
}
/*End custom alert box*/
/*Start custom alert side info box*/
.lm-custome-alert-info {
    padding: 0 30px;
    background: var(--main-color);
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: -15%;
    border: 1px solid gray;
    box-shadow: 0 0 5px grey;
    border-radius: 5px;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 9999999999999999999999;
}
.lm-custome-alert-info .lm-alert-info span {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    background: var(--second-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.5s ease;
}
.lm-custome-alert-info .lm-alert-info span:hover{
    opacity: 0.9;
}

/*End custom alert side info box*/
/*/////////////////////// statrt paric-munu////////////////////////*/
.lm-menu-chat-container {
    height: 50%;
    min-height: 200px;
    position: relative;
    transition: 0.5s ease;
}

.lm-chat-container {
    position: relative;
    overflow: hidden;
    background: black;
}
.lm-activ-cam-container {
    background: black;
    height: calc(100% - 195px);
    text-align: center;
    position: relative;
}
.lm-partic-menu-container {
    background: var(--black-background);;
    color: #fff;
    border-left: 2px solid #80808030;
    position: relative;
    overflow: hidden;
}
.lm-partic-menu-head {
    padding: 10px;
    height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    cursor: pointer;
}
.lm-partic-menu-foot {
    padding: 20px 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.lm-paint-btn {
    color: #2196f3;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.5s ease;
    background: #474747;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.lm-paint-btn:hover{
    color: #fff;
    background: var(--second-color);
}
.lm-quick-menu {
    background: gray;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: 0.5s ease;
    position: relative;
}
.lm-quick-menu:hover{
    opacity: 0.9;
}
.lm-quick-menu.log-out,
.lm-quick-menu.host {
    background: var(--second-color);
    height: max-content;
    position: relative;
}
.lm-quick-menu.host:hover .host-leav-container {
    display: flex;
}
.lm-quick-menu.mute-host:hover .host-mute-container {
    display: flex;
}
.host-leav-container, .host-mute-container {
    position: absolute;
    top: -84px;
    right: 0;
    background: #1e1c1e;
    width: max-content;
    display: none;
    flex-direction: column;
    padding: 8px;
    border-radius: 4px;
}
.host-leav.exit-all, .host-leav.log-out,
.host-mute.mute-all-room, .host-mute.mute-all {
    padding: 2px 16px;
    margin: 4px 0;
    border-radius: 4px;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s ease;
}
.host-leav.log-out, .host-mute.mute-all {
    background: #3a383a;
}
.host-leav.exit-all, .host-mute.mute-all-room {
    background: #b4061f;
}
.host-leav.exit-all:hover, .host-leav.log-out:hover {
    opacity: 0.8;
}

.lm-partic-menu-content {
    height: calc(100% - 140px);
    position: absolute;
    top: 70px;
    padding: 10px;
    width: 100%;
    overflow-y: scroll;
    background: #1b1a1a;
}
.lm-partic-menu .user-name-avatar {
    display: flex;
    float: right;
}
.lm-partic-menu .user-media {
    display: flex;
    float: left;
}
.lm-partic-menu .user-media i {
    padding: 5px 10px;
    font-size: 12px;
}
.lm-partic-menu {
    margin: 10px 0;
    overflow: hidden;
}
.user-name-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #efeaea;
    margin: 0;
}
.user-name-avatar p {
    font-size: 14px;
    padding: 0 5px;
    margin: 0;
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 2;
    max-width: 150px;
    top: 0;
    max-height: 25px;
    word-break: break-all;
}
/*/////////////////////// end paric-munu///////////////////////////*/

/* Chat containers */
.group-chat-container {
    border: 1px solid #dedede;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 0;
    margin: 5px;
  }
  .group-chat-container p{
      font-size: 13px;
      margin-top: 0;
      margin-right: 35px;
  }

  
  /* Darker chat container */
  .darker {
    border-color: #ccc;
    background-color: #ddd;
  }
  
  /* Clear floats */
  .group-chat-container::after {
    content: "";
    clear: both;
    display: table;
  }
  
  /* Style images */
  .group-chat-container img {
    float: left;
    max-width: 30px;
    width: 100%;
    margin-right: 5px;
    border-radius: 50%;
  }
  
  /* Style the right image */
  .group-chat-container img.right {
    float: right;
    margin-left: 5px;
    margin-right:0;
  }
  
  /* Style time text */
  .time-right {
    float: right;
    color: #aaa;
    font-size: 10px;
  }
  
  /* Style time text */
  .time-left {
    float: left;
    color: #999;
    font-size: 10px;
  }
  .lm-chat-text-container {
    height: 50%;
    position: relative;
}
/*End msg box*/
/*Start chat page*/
/* width */
::-webkit-scrollbar {
    width: 20px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #727373;
    border-radius: 10px;
  }

.lm-room-container {
 background-color: var(--black-background);
 min-height: 100%;
}

.lm-partic-cam-widget {
    margin: 0px;
    display: flex;
    overflow-x: scroll;
}
span.parts-name {
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 1;
    max-width: 80px;
    top: 0;
    max-height: 10px;
    word-break: break-all;
}
p.room-name, p.room-name a {
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
}
.lm-partic-box {
    width: 150px;
    height: 100px;
    background: var(--black-background);
    border-radius: 8px;
    position: relative;
    margin: 3px;
    min-width: 150px;
    min-height: 100px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--black-background);
    transition: 0.5s ease;
}
.lm-partic-box:hover {
    border: 1px solid var(--progress-background);
}
video.partic-vedio {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lm-partic-box p {
    background: #80808047;
    color: #fff;
    width: 98%;
    margin: 0 auto;
    border-radius: 5px;
    position: absolute;
    bottom: 2px;
    font-size: 10px;
    right: 2px;
    padding: 3px;
    z-index: 999;
}
.lm-room-info {
    position: absolute;
    top: 5px;
    right: 10px;
}

span.tooltiptext.room-info {
    background: #fff;
    color: black;
    left: -65px;
}
span.tooltiptext.room-info::after {
    display: none;
}
.lm-room-info i{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.lm-room-info-box {
    background: #474747;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 330px;
    box-shadow: 0px 0px 3px black;
    position: relative;
    right: -340px;
    top: -5px;
    transition: 0.5s ease;
}
.lm-room-info-box.show-info-box{
    right: 15px;
}
.lm-room-info-box input {
    direction: ltr;
    width: 270px;
    border: none;
    background: none;
    color: #fff;
}
.copy-text {
    font-size: 12px;
    padding-right: 100px;
    cursor: pointer;
    color: #00bcd4;
}
.copy-text i {
    font-size: 12px;
    color: #00bcd4;
}
.room_info_hed {
    color: gray;
    padding-left: 10px;
}
.lm-room-nav {
    position: absolute;
    bottom: 0;
    height: 50px !important;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: 0.5s ease;
    background: var(--black-background);;
}
video {
    /* height: 100%; */
}
video#local-video {
    max-width: 100%;
    max-height: 100%;
    position: relative;
    top: 0;
}
#lamoud-white-board {
    position: absolute;
    top: 5px;
    right: 10%;
    background: #808080;
    border-radius: 8px;
    display: none;
}
.lm-room-nav ul {
    list-style: none;
    margin: 2.5px -40px;
}
.lm-room-nav ul li {
    display: inline;
    color: #fff;
    padding: 0 5px;
}
.lm-room-nav ul li i {
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    padding: 0px;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 2.5;
}
.lm-record .fa-record-vinyl.fa-spin.active {
    border: 1px solid;
    color: red;
    transition: 0.5s ease;
}
.partic-menu-show.active i,
.text-chat-show.active i {
    color: #2196f3;
}
.lm-room-nav ul li i.fa-video, .lm-room-nav ul li i.fa-microphone, 
.lm-room-nav ul .sharing-active i.fa-share-square{
    color: #2196f3;
    background: #474747;
}

i.fa-video-slash,  i.fa-microphone-slash {
    color: var(--nav-color);
}

i.fa-video,  i.fa-microphone {
    color: var(--nav-color);
    color: #2196f3;
}
.mice-icon.muted {
    color: yellow;
}
.mice-icon.muted-host {
    color: #e400ff !important;
}
.lm-room-nav ul li i:hover {
    background: #474747;
}
span.tooltiptext.top-tooltip {
    background: #fff;
    color: black;
    top: -50px;
    z-index: 99999;
}
span.tooltiptext.top-tooltip::after {
    bottom: -30%;
    border-color: transparent transparent #fff transparent;
    transform: rotate(-180deg);
}


.lm-room-guest-container {
    background: var(--black-background);
    padding: 100px 0;
}
.lm-room-guest-container .lm-form-container {
    border-bottom-right-radius: 40px;
    overflow: hidden;
    border-top-right-radius: 40px;
}
.lm-room-guest-container .lm-logo {
    background: var(--nav-color);
    margin: -10px;
    margin-left: 10px;
    text-align: center;
    padding: 50px 0;
    background-image: url(/theme-images/form-back.png);
    background-size: cover;
}
.lm-logo img {
    width: 100px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
}
.lm-input-info {
    position: absolute !important;
    top: -70px;
    color: var(--nav-color);
    cursor: pointer;
}
.tooltip .tooltiptext.text-chat-tooltip {
    right: 30px;
    top: -20px;
}
.tooltip .tooltiptext.text-chat-tooltip::after {
    bottom: -30%;
    transform: rotate(
-180deg
);
}
/*End chat page*/

/*Stat tooltip*/
.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 130%;
    left: 30%;
    margin-left: -60px;
    font-size: 12px;
}
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }
/*End tooltip*/
/*home page*/
.lm-start-text, .lm-start-img {
    background: black;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.lm-start-img {
    padding: 0;
    margin: 0;
}
.lm-start-img img {
    padding: 0;
    margin: 0 0 -10px 0;
    min-height: 364px;
}
.lm-start-text h1 {
    color: #fff;
    font-size: 50px;
}
.lm-start-text .lm-btn-second {
    margin-top: 20px;
}
.lm-btn-second:hover {
    box-shadow: none;
}
.lm-fast-room {
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.lm-fast-room-content {
    width: 60%;
}
.lm-fast-room form{
    width: 40%;
    display: flex;
}
.lm-fast-room span {
    width: 80%;
}
.lm-fast-room span input#room_name {
    width: 99%;
}

.lm-section h2 {
    padding: 0 10px;
    margin: 0;
}

.lm-accordion-container {
    /* background-color: #fff; */
}

.lm-accordion-box {
    border-bottom: 1px solid gray;
    position: relative;
}
.lm-accordion-box i {
    position: absolute;
    top: 25px;
    left: 10px;
    cursor: pointer;
    color: #ffff;
}

.lm-accordion {
    background-color: inherit;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    transition: 0.4s;
    font-size: initial;
    font-family: inherit;
    transition: 0.5s ease;
  }
  .lm-accordion-box p {
    color: #fff;
}
  
  .lm-acc-active, .lm-accordion:hover {
    background-color: gray; 
  }
  
  .lm-panel {
    padding: 0 18px;
    display: none;
    background-color: #8f8f8f;
    overflow: hidden;
    transition: 0.5s ease;
  }
/*home page*/
/*Start slider*/

.lamoud-slider-container {
    margin: 20px auto;
    background-color: gray;
}
.slider-container {
    height: 370px;
    position: relative;
}
.slider-container .current-slide {
    position: absolute;
    background-color: var( --main-color);
    color: #fff;
    padding: 10px;
    z-index: 999;
	display: none;
}
.slider-container ul {
    list-style: none;
    padding: 0;
    margin: 0;

}
.slider-container img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: 100%;
    opacity: 0;
	-webkit-transition: right 1s ease;
	-moz-transition: right 1s ease;
	-o-transition: right 1s ease;
	-ms-transition: right 1s ease;
    transition: right 1s ease;
    z-index: 9;
}
.slider-container .prev-img{
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: -100%;
    opacity: 0;
	-webkit-transition: right 1s ease;
	-moz-transition: right 1s ease;
	-o-transition: right 1s ease;
	-ms-transition: right 1s ease;
    transition: right 1s ease;
    z-index: 9;
}
.slider-container .active-img{
    opacity: 1 !important;
    z-index: 99;
    right: 0;
}
.slider-container .activeprev-img{
    opacity: 1 !important;
    z-index: 99;
    right: 0;
}

.slider-container .last-img {
    opacity: 1 !important;
    z-index: 99;
    right: -100%;
}
.slider-container .lastprev-img {
    opacity: 1 !important;
    z-index: 99;
    right: 100%;
}
.slider-container a{
    position: absolute;
    height: 100% !important;
    width: 100% !important;
    overflow: hidden;
}

.slider-container .prev,
.slider-container .next {
    position: absolute;
    top: calc(50% - 50px);
    padding: 10px;
    cursor: pointer;
    z-index: 99;
	width: 50px;
	height: 50px;
	box-shadow: 1px 1px 9px rgb(0 0 0 / 15%);
	border-radius: 50%;
	background: #fff;
}

.slider-container .prev {
    right: 8px;
}
.slider-container .next {
    left: 8px;
}

span.angle-right,
span.angle-left {
    width: 15px;
    height: 15px;
    position: absolute;
	top: 17px;
    border-top: 2px solid rgba(0,0,0,0.8);
    border-right: 2px solid rgba(0,0,0,0.8);
}
span.angle-right {
	transform: rotate(45deg);
	right: 20px;
}
span.angle-left {
	transform: rotate(-135deg);
	left: 20px;
}

.slider-container .disabled {
    color: gray;
    cursor: no-drop;
}
.slider-container .slide-pagenation {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
    text-align: center;
    z-index: 3;
    z-index: 99;
}

.slider-container .slide-pagenation li {
    display: inline-block;
	border: 2px solid var(--nav-color);
    padding: 5px;
    margin: 0 3px;
    cursor: pointer;
	width: 20px;
	height: 20px;
	border-radius: 50%
}

.slider-container .slide-pagenation li.active {
	background-color: var(--nav-color);
	border: none;
}
.lm-user-card-container .lm-user-avatar img {
    border-radius: inherit;
    margin-left: 5px;
    width: 70px;
    height: 70px;
}
.lm-user-data p {
    padding: 0;
    margin: 0;
}
.lm-hed-card {
    font-weight: bold;
}
.lm-user-card-container {
    display: flex;
    width: max-content;
    padding: 15px;
    margin: 10px;
    box-shadow: 0px 0px 5px var(--border-color);
    font-size: 12px;
}
/*start dashbord*/
.lm-manage-posts-container {
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    z-index: 9;
    background: var(--main-background);
    background-image: url(/theme-images/back.jpg);
}
.lm-manage-overlay {
    position: absolute;
    width: 100%;
    /* height: 100%; */
    top: 0;
    right: 0;
    background: var(--main-background);
    z-index: 999999999;
}

.lm-manage-posts-container span.close-box {
    position: absolute;
    top: 0;
    left: 8px;
    background: #2c3338;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
    cursor: pointer;
    box-shadow: 1px 0px 3 px #ccc;
    z-index: 99999999999;
    height: 100%;
    padding: 8px;
}
.manage-post-top-info {
    width: 100%;
    text-align: center;
    padding: 8px;
    margin: 0;
    background: #1d2327;
    color: #fff;
    font-size: 16px;
    position: relative;
}
.lm-manage-posts-container h2 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}
.lm-admin-banel-mob {
    display: none;
    float: right;
    cursor: pointer;
    margin-right: 8px;
}
.lm-admin-banel-mob i {
    color: #fff;
    font-size: 18px;
}
.lm-admin-banel {
    background: #1d2327;
    color: #fff;
    padding: 16px 0;
}
.lm-admin-banel.show {
    display: block;
    z-index: 999;
}
.lm-admin-banel-content .main-banel {
 padding: 8px;
 margin: 0;
}
.lm-admin-banel-content.active .main-banel{
    background: var(--second-color);
}
.lm-admin-banel-content.active{
    background: #2c3338;
}

.lm-admin-banel-content .banel-sub-menu .active {
    color: var(--hover-color);
}

.lm-admin-banel-content .main-banel,
.lm-admin-banel-content .banel-sub-menu p {
    transition: 0.5s ease;
}

.lm-admin-banel-content .main-banel:hover,
.lm-admin-banel-content .banel-sub-menu p:hover {
    color: #2196f3;
    cursor: pointer;
}
.lm-admin-banel i {
    font-size: 18px;
    color: #9ca2a7;

}
.lm-admin-banel-content .banel-sub-menu p {
    margin: 0;
    padding: 0;
    margin-right: 16px;
}

.lm-manage-posts-container span.close-box:hover {
    background: var(--hover-color);
    color: #fff;
}
.lm-details-banel-container {
    display: none;
}
.lm-details-banel-container.active {
    display: block;
}
.lm-group-edit-section {
    background: #fff;
    box-shadow: 0px 1px 3px #ccc;
    padding: 8px 0;
    margin: 16px;
}

.lm-counter {
    width: 90%;
    padding: 4px;
    display: flex;
    background: var(--success-brder);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    border-radius: 16px;
}
.lm-counter i {
    color: #fff;
    font-size: 20px;
}

/*Start launcher & Spiner*/
.smrttx-launcher-container {
    height: 100vh;
    position: fixed;
    z-index: 100000000000000020;
    background: black;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0.9;
    top: 45px;
  }
  
  .smrttx-launcher {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .smrttx-launcher .smrttx-launcher-img {
    width: 180px;
    height: 180px;
    border: 6px solid #f44336;
    border-radius: 50%;
    border-left-color: transparent;
    -webkit-animation-name: border-round;
            animation-name: border-round;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  .smrttx-launcher img {
    width: 100%;
    position: absolute;
    width: 140px !important;
    border-radius: 0 !important;
    border: none !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  
  @-webkit-keyframes border-round {
    0% {
      -webkit-transform: rotate(1turn);
              transform: rotate(1turn);
      border-top-color: #c5041f;
      border-bottom-color: #f44336;
      border-left-color: transparent;
      border-right-color: transparent;
    }
    100% {
      -webkit-transform: rotate(2turn);
              transform: rotate(2turn);
      border-top-color: #f44336;
      border-bottom-color: #c5041f;
      border-left-color: transparent;
      border-right-color: transparent;
    }
  }
  
  @keyframes border-round {
    0% {
      -webkit-transform: rotate(1turn);
              transform: rotate(1turn);
      border-top-color: #c5041f;
      border-bottom-color: #f44336;
      border-left-color: transparent;
      border-right-color: transparent;
    }
    100% {
      -webkit-transform: rotate(2turn);
              transform: rotate(2turn);
      border-top-color: #f44336;
      border-bottom-color: #c5041f;
      border-left-color: transparent;
      border-right-color: transparent;
    }
  }
  /*End launcher & Spiner*/
.smrttx-ripple {
    display: inline-block;
    position: absolute;
    width: 200px;
    height: 500px;
    bottom: -50vh;
    right: 0;
}
  .smrttx-ripple div {
    position: absolute;
    border: 4px solid gray;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: ripple 4s cubic-bezier(0, 0.4, 0.8, 2) infinite;
            animation: ripple 4s cubic-bezier(0, 0.4, 0.8, 2) infinite;
  }
  .smrttx-ripple div:nth-child(2) {
    -webkit-animation-delay: -1s;
            animation-delay: -1s;
  }
  .smrttx-ripple div:nth-child(3) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
  }
  
  @-webkit-keyframes ripple {
    0% {
      top: 200px;
      left: 200px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 400px;
      height: 400px;
      opacity: 0;
    }
  }
  
  @keyframes ripple {
    0% {
      top: 200px;
      left: 200px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 400px;
      height: 400px;
      opacity: 0;
    }
  }

  .lm-export i {
      cursor: pointer;
      transition: 0.5s ease;
  }

  .lm-export i:hover {
    color: var(--hover-color);
}
  /*# sourceMappingURL=main.css.map */
@media only screen and (max-width: 800px) {
    .slider-container{
        height: 300px;
    }
	
	.slider-container .prev, .slider-container .next {
		width: 35px;
		height: 35px;
	}
	span.angle-right, span.angle-left {
		width: 10px;
		height: 10px;
		top: 13px;
	}
	
	span.angle-right {
		right: 15px;
	}
	
	span.angle-left {
		left: 15px;
	}
	
	.slider-container .slide-pagenation li {
		width: 15px;
		height: 15px;
	}

    .lm-post img.lm-post-img {
        height: 170px;
    }

  }
/*ُEnd slider*/
.accept_fr_req, .cancel_fr_req,
.send_fr_req, .remove_fr_req,
.start-singl-chat, .group-mems {
    cursor: pointer;
}

.accept_fr_req i, .cancel_fr_req i, .send_fr_req i,
.remove_fr_req i, .start-singl-chat i,
.group-mems i {
    color: var(--second-color);
    padding-top: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}
.fa-edit, .fa-trash-alt {
    padding-top: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}
.fa-user-check, .start-singl-chat i.fa-envelope {
    color: var(--success-brder) !important;
}
.accept_fr_req i:hover, .cancel_fr_req i:hover,
.send_fr_req i:hover, .remove_fr_req i:hover,
.start-singl-chat i:hover,
.lm-td-edit span .fa-edit:hover,
.fa-trash-alt:hover, .group-mems:hover {
    background: var(--border-color);
    border-radius: 50%;
}
.group-mems i.fa-user-plus{
    color: var(--progress-background);
}
.group-mems i.fa-user-slash{
    color: var(--main-color);
}
.lm-table.lm-fr_rquest-manage a{
    color: black;
}
.lm-table.lm-fr_rquest-manage a:hover{
    color: var(--nav-color);
}

.lm-fr_rquest-manage img{
    width: 30px !important;
    height: 30px !important;
    margin: 0;
    margin-bottom: -10px;
}
.lm-fr_rquest-manage td{
    padding: 5px !important;
}
.lm-fr_rquest-manage span{
    padding: 5px !important;
}
/*lamoud col*/
.lm-col-0 {
    display: none;
}
.lm-col-1 {
    width: calc(100% /12);
}
.lm-col-2 {
    width: calc((100% /12) *2);
}
.lm-col-3 {
    width: calc((100% /12) *3);
}
.lm-col-4 {
    width: calc((100% /12) *4);
}
.lm-col-5 {
    width: calc((100% /12) *5);
}
.lm-col-6 {
    width: calc((100% /12) *6);
}
.lm-col-7 {
    width: calc((100% /12) *7);
}
.lm-col-8 {
    width: calc((100% /12) *8);
}
.lm-col-9 {
    width: calc((100% /12) *9);
}
.lm-col-10 {
    width: calc((100% /12) *10);
}
.lm-col-11 {
    width: calc((100% /12) *11);
}
.lm-col-12 {
    width: 100%;
}
/*lamoud col*/

.lm-new-post-container {
    width: 100%;
    background: #fff;
    margin: 16px 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px black;
}

.lm-new-post-toggle {
    background: #ccc;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
.lm-new-post-btn-toggle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--main-background);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s ease;
}


.lm-new-post-btn-toggle:hover, .lm-new-post-toggle:hover .lm-new-post-btn-toggle {
    background: var(--hover-color);
}
.lm-new-post-btn-toggle:hover i, .lm-new-post-btn-toggle:hover i,
.lm-new-post-toggle:hover i {
    color: #fff;
}
.lm-new-post-body {
    margin: 0;
    padding: 8px;
    display: none;
}
.lm-new-post-body.show {
    display: block;
}

/************************************/

.lm-msg-banel {
    background: var(--main-background);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 4px;
    margin-bottom: 8px;
}
.lm-msg-btn {
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    background: #d2dff1;
    transition: 0.5s ease;
}
.lm-msg-btn i {
    transition: 0.5s ease;
}
.lm-msg-btn:hover i {
    color: var(--hover-color);
}
.lm-msg-btn:hover {
    background: #ccc;
}
.lm-msg-titles {
    display: block !important;
}
.lm-box-msg {
    height: 100%;
    background: #fff;
    margin: 0 4px;
}
.lm-msg-content {
    height: 100%;
    width: 100%;
}
.lm-empty-msg-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}
.lm-empty-msg-container img.lm-empty-msg {
    border-radius: 0;
    border: none;
}
.lm-msg-elem-container {
    border-bottom: 1px solid #ccc;
    padding: 8px;
    cursor: context-menu;
    transition: 0.5s ease;
    position: relative;
}
.lm-msg-elem-container.active {
    color: green;
    background: #c0f9c0;
}
.lm-msg-elem-container.active i {
    color: black;
}

.lm-msg-elem-container:hover {
    background: #ccc;
}

.lm-msg-elem-container:hover .lm-remove-msg{
    visibility: visible;
}
.lm-remove-msg {
    position: absolute;
    top: 0;
    left: -12px;
    background: none;
    visibility: hidden;
}
.lm-remove-msg i{
    background: none;
    cursor: pointer;
}
.lm-remove-msg i:hover {
    background: none;
    color: var(--hover-color);
}
.lm-msg-dates {
    display: flex;
    justify-content: space-between;
    padding: 8px;
}
.lm-msg-update, .lm-msg-startAt {
    font-size: 10px;
    color: gray;
}

.lm-msg-header {
    background: var(--main-background);
    margin: 0;
    padding: 4px;
    /* position: sticky;
    top: 0;
    right: 0; */
    width: 100%;
}
.lm-msg-footer {
    background: #ccc;
    padding: 4px 8px;
}
.lm-msg-header h2 {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.lm-msg-sender {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.lm-msg-sender-avatar img {
    width: 60px !important;
    height: 60px !important;
    margin: 0;
}

.lm-msg-body {
    padding: 8px;
}
.ck.ck-editor {
    max-width: 100%;
    overflow: hidden;
}
.ck-file-dialog-button {
    display: none;
}
.ck.ck-toolbar {
    background: var(--main-background) !important;
}
.ck.ck-content {
    min-height: 200px;
}
.ck.ck-widget__type-around__button, .ck-widget__type-around {
    display: none;
}

.lm-input-label-container {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
    overflow: hidden;
}

.lm-input-label-container input, .lm-input-label-container select {
    width: 100%;
    height: 45px;
    padding-right: 44px;
}

.lm-input-label-container i {
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    width: 40px;
    background: var(--main-background);
    border-radius: 0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lm-reply-container {
    border-bottom: 1px solid #ccc;
    padding: 16px 8px;
}
.lm-reply-sender {
    display: flex;
    align-items: center;
}
.lm-reply-sender  img {
    width: 40px !important;
    height: 40px !important;
    margin: 0;
    padding: 0;
}


.lm-upload-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin: 8px 0;
    padding: 8px;
    box-shadow: 0 0 3px;
}
.lm-upload-container .lm-upload-label {
    width: 80px;
}
.lm-upload-container .lm-file-show {
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lm-upload-container .lm-file-show:hover i {
    box-shadow: 0 0 3px;
    color: var(--main-color);
}
.lm-upload-container .lm-file-show i {
    width: 100px;
    height: 100px;
    background: var(--main-background);
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
}

.lm-pagenation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin: 16px 0;
    padding: 16px 0;
    gap: 16px;
    box-shadow: 0 1px 3px;
}
.lm-pagenation div {
    display: flex;
    align-items: center;
    gap: 1px;
}
.lm-pagenation-next, .lm-pagenation-prev {
    background: var(--second-color);
    color: #fff;
    padding: 0px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px #ccc;
    transition: 0.5s ease;
    cursor: pointer;

}
.lm-pagenation-next:hover, .lm-pagenation-prev:hover {
    box-shadow: 1px 2px 5px #ccc;
    background: var(--hover-color);
}
.lm-pagenation select {
    height: 30px;
    padding: 0 12px;
    margin: 0 4px;
    border-radius: 4px
}

@media screen and (min-width: 1024px) {
    /*lamoud col*/
.lm-col-lg-0 {
    display: none;
}
.lm-col-lg-1 {
    width: calc(100% /12);
}
.lm-col-lg-2 {
    width: calc((100% /12) *2);
}
.lm-col-lg-3 {
    width: calc((100% /12) *3);
}
.lm-col-lg-4 {
    width: calc((100% /12) *4);
}
.lm-col-lg-5 {
    width: calc((100% /12) *5);
}
.lm-col-lg-6 {
    width: calc((100% /12) *6);
}
.lm-col-lg-7 {
    width: calc((100% /12) *7);
}
.lm-col-lg-8 {
    width: calc((100% /12) *8);
}
.lm-col-lg-9 {
    width: calc((100% /12) *9);
}
.lm-col-lg-10 {
    width: calc((100% /12) *10);
}
.lm-col-lg-11 {
    width: calc((100% /12) *11);
}
.lm-col-lg-12 {
    width: 100%;
}
/*lamoud col*/
}
@media screen and (max-width: 1024px) {
    /*lamoud col*/
.lm-col-md-0 {
    display: none;
}
.lm-col-md-1 {
    width: calc(100% /12);
}
.lm-col-md-2 {
    width: calc((100% /12) *2);
}
.lm-col-md-3 {
    width: calc((100% /12) *3);
}
.lm-col-md-4 {
    width: calc((100% /12) *4);
}
.lm-col-md-5 {
    width: calc((100% /12) *5);
}
.lm-col-md-6 {
    width: calc((100% /12) *6);
}
.lm-col-md-7 {
    width: calc((100% /12) *7);
}
.lm-col-md-8 {
    width: calc((100% /12) *8);
}
.lm-col-md-9 {
    width: calc((100% /12) *9);
}
.lm-col-md-10 {
    width: calc((100% /12) *10);
}
.lm-col-md-11 {
    width: calc((100% /12) *11);
}
.lm-partic-menu-container {
    position: absolute;
    z-index: 99999999;
    top: 0;
    height: 100%;
    display: none;
}
.show-partic-menu {
    display: block;
}

.lm-room-guest-container .lm-logo {
    margin: -10px;
    padding: 0;
    border-top-left-radius: 40px;
    min-width: 105%;
    min-width: -webkit-fill-available;
}
.lm-logo img {
    width: 60px;
    padding: 15px;
}
.lm-room-guest-container .lm-form-container {
    border-bottom-right-radius: 0;
    overflow: hidden;
    border-top-right-radius: 40px;
    background: var(--black-background);;
    box-shadow: none;
}
.lm-room-guest-container .lm-input-block {
    BACKGROUND: #fff;
    width: 110%;
    margin-right: -10px;
    padding: 10px;
}
.lm-col-md-12 {
    width: 100%;
}
.lm-mobile-bar{
    display: block;
}
.lm-nav-mobile {
    display: none;
    background: var(--second-color);
    margin-top: 65px;
    position: absolute;
    width: 100%;
}
.lm-nav-mobile.showimenu{
    display: block;
}
ul.lm-nav-links {
    flex-direction: column;
    background-color: var(--nav-background);
    box-shadow: 0 0 5px gray;
}

.lm-post img.lm-post-img {
    height: 170px;
}
.lm-min-card img.lm-post-img {
    height: 120px;
}
/*lamoud col*/

.lm-admin-banel {
    position: absolute;
    display: none;
    max-width: 170px;
}

.lm-admin-banel-mob {
    display: block;
}
.hide-mobile {
display: none;
}

.sidebar-mob-hide {
    display: none;
}
}
@media screen and (max-width: 768px) {
    /*lamoud col*/
.lm-col-sm-0 {
    display: none;
}
.lm-col-sm-1 {
    width: calc(100% /12);
}
.lm-col-sm-2 {
    width: calc((100% /12) *2);
}
.lm-col-sm-3 {
    width: calc((100% /12) *3);
}
.lm-col-sm-4 {
    width: calc((100% /12) *4);
}
.lm-col-sm-5 {
    width: calc((100% /12) *5);
}
.lm-col-sm-6 {
    width: calc((100% /12) *6);
}
.lm-col-sm-7 {
    width: calc((100% /12) *7);
}
.lm-col-sm-8 {
    width: calc((100% /12) *8);
}
.lm-col-sm-9 {
    width: calc((100% /12) *9);
}
.lm-col-sm-10 {
    width: calc((100% /12) *10);
}
.lm-col-sm-11 {
    width: calc((100% /12) *11);
}
.lm-col-sm-12 {
    width: 100%;
}

.lm-creat-room-input input#fast-room {
    width: calc(80% - 115px);
}
.lm-room-guest-container .lm-logo {
    min-width: 110%;
    min-width: -webkit-fill-available;
}
/*lamoud col*/

.lm-user-login-content, .lm-user-login-content-l {
    padding-left: 0;
    padding-right: 0;
}

.lm-card.lm-post{
    margin: 0;
}
.lm-content.lm-post-content{
    padding: 0;
}
.lm-curr-user-status {
    padding: 0 5px;
}

li.tooltip.lm-shar-screen {
    display: none;
}

.lm-fast-room-content {
    width: 100%;
}
.lm-fast-room form{
    width: 100%;
}

.lm-post img.lm-post-img {
    height: 300px;
}
.lm-min-card img.lm-post-img {
    height: 150px;
}

}

/*******************************/
.lm-services-box {
    background: #fff;
    width: 200px;
    max-width: 98%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 200px;
    border-radius: 50%;
    margin: 4px auto;
    box-shadow: 0 1px 3px black;
    border: 2px solid var(--second-color);
    transition: 0.5s ease;
    position: relative;
    z-index: 2;
    opacity: 0.8;
}
.lm-services-box i {
    font-size: 35px;
    color: var(--second-color);
    transition: 0.5s ease;
}
.lm-services-box:hover {
    background: var(--second-color) !important;
    border-color: var(--second-color);
}
.lm-services-box:hover i {
    color: #fff;
    font-size: 40px;
}

  /*************************************/
  .lm_user_profile {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.lm_profile_header {
    width: 100%;
    height: 50vh;
    position: relative;
}
.lm_profile_header > img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    margin: 0;
    padding: 0;
    border: none !important;

}
.lm_user_profile .lm-profile-name {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lm_user_profile .lm-profile-name img {
    height: 80px;
    width: 80px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: none !important;
}
.lm_user_profile .lm-profile-name h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}


.lm-change-profile-back {
    width: max-content;
    background: #fff;
    padding: 4px 8px;
    position: absolute;
    left: 4px;
    bottom: 16px;
    box-shadow: 0 2px 3px grey;
    border: 1px solid gray;
    border-radius: 4px;
    color: black;
    cursor: pointer;
    transition: all 0.5s ease;
}
.lm-change-profile-back:hover {
    box-shadow: 2px 3px gray;
}
.lm-change-profile-back p {
    margin: 0;
    padding: 0;
    font-size: 10px;
}

.lm-about-row {
    display: flex;
    gap: 16px;
}
.lm-about-row .lm-icon {
    color: #e4344b;
}
.lm-about-row .lm-title {
    font-weight: bold;
}
.lm-about-row .lm-content {
    color: #00d084;
}
/**************************************/
.lm-tocol-container {
    width: 100%;
    max-width: 500px;
}
.lm-tocol-container .lm-tocol-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.lm-tocol-container .lm-tocol-row .lm-tocol-title {
    width: 150px;
    padding: 8px;
}
.lm-tocol-container .lm-tocol-row .lm-tocol-content {
    width: calc(100% - 150px);
    padding: 8px;
    border-right: 1px solid #ccc;
}
@media only screen and (max-width: 650px) {
    .slider-container{
        height: 270px;
    }

    .lm-post img.lm-post-img {
        height: 250px;
    }
    .lm-min-card img.lm-post-img {
        height: 130px;
    }

    .lm-services-box {
        width: 150px;
        height: 150px;
        font-size: 12px;
    }
    .lm-services-box i {
        font-size: 25px;
    }
  }
@media only screen and (max-width: 500px) {
    .slider-container{
        height: 200px;
    }
    .lm-fast-room {
        padding: 5px;

    }
    .lm-start-text h1 {
        font-size: 30px;
    }
    .lm-start-text p, .lm-start-text a {
        font-size: 12px;
    }
    .lm-fast-room input#room_name {
        width: 70%;
    }
    .lm-fast-room input[type="submit"] {
        width: 20%;
    }
    .lm-post img.lm-post-img {
        height: 200px;
    }
    .lm-min-card img.lm-post-img {
        height: 90px;
    }

  }

  .lm-tabs-container {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      margin: 16px;
      border: 1px solid var(--main-background);
  }
  .lm-tabs-container .lm-tab-btn-container {
      display: flex;
      width: 100%;
      justify-content: space-around;
      background: #1d2327;
      color: #fff;
      transition: .05s ease;
  }
  .lm-tab-btn-container .lm-tab-btn{
      padding: 8px;
      width: 33.3333333333%;
      cursor: pointer;
      transition: .05s ease;
  }
  .lm-tab-btn-container .lm-tab-btn:hover {
    background: var(--hover-color);
  }
.lm-tab-btn.active {
      background: var(--second-color);
  }

.lm-tabs-container .lm-tabcontent-section {
      display: none;
      padding: 8px;
  }

  .lm-tabs-container .lm-tabcontent-section.active {
    display: block;
}
.contact-section ul {
    list-style: none;
    font-size: 17px;
}
.contact-section ul a {
    color: gray;
}
.contact-section ul i {
    color: var(--second-color);
    font-size: 20px;
}

@media print {

    body {
      margin: 0;
      color: #000;
      background-color: red;
    }
    *{
        font-size: 10px !important;
    }
  
  }


  .area{

    width: 100%;
    height:max-content;
    
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}





/********************************/
.lm-motion-title{
    position: relative;
    padding: 16px 30px;
    margin: 40px 0;
    color: #03e9f4;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    overflow: hidden;
    margin-right: 50px;
    font-size: 24px;
    margin: 0 auto;
    z-index: 99999;
    text-align: center;
    width: max-content;
   
}
.lm-motion-title:hover{
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
     -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}

.lm-motion-title span{
    position: absolute;
    display: block;
}
.lm-motion-title span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#03e9f4);
    animation: animate1 1s linear infinite;
}
@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}
.lm-motion-title span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#03e9f4);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}
.lm-motion-title span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#03e9f4);
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}


.lm-motion-title span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#03e9f4);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}

/*************say about****************/
.lm-say-img {
    position: absolute;
    top: 120px;
    right: 20px;
}
.slider-wrap {
    height: 100%;
    width: 100%;
    position: relative;
    height: 500px;
  }
  .slider-wrap .slider {
    position: absolute;
    width: 95%;
    left: 0px;
    top: 50px;
    max-width: 100%;
  }
  
  .slider-item {
    width: 530px;
    max-width: calc(100% - 80px);
    padding: 20px 8px 25px 0;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    position: absolute;
    opacity: 0;
    z-index: 0;
    box-shadow: 0 4px 9px #f1f1f4;
    position: absolute;
    left: 0;
    top: 0;
  }
  .slider-item .animation-card_image {
    max-width: 60px;
    max-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 9px rgba(241, 241, 244, 0.72);
    background-color: #ffffff;
  }
  .slider-item .animation-card_image img {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    object-fit: cover;
  }
  .slider-item .animation-card_content {
    width: 100%;
    max-width: 374px;
    margin-right: 26px;
    font-family: "Open Sans", sans-serif;
  }
  .slider-item .animation-card_content .animation-card_content_title {
    color: #4a4545;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.18px;
    line-height: 24px;
    margin: 0;
  }
  .slider-item .animation-card_content .animation-card_content_description {
    color: #696d74;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 24px;
    margin: 10px 0 0 0;
  }
  .slider-item .animation-card_content .animation-card_content_city {
    font-size: 11px;
    margin: 10px 0 0 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #696d74;
  }

.lm-start-today {
    background: #2196f347;
}
.lm-start-today:hover {
    background: #4caf50 !important;
}
  