body {
    line-height: 30px;
    color: #444444;
    font-size: 16px;
    font-family: "Asap", sans-serif;
}

body {
    --pc: #054564;
    --sc: #8c1c1e;
    --border-color: #707070;
}

p {
    text-align: justify;
}

ul,
ol {
    list-style: none;
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
}

a {
    color: var(--pc);
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: var(--sc);
}

::selection {
    color: #fff;
    background: var(--pc);
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-auto {
    margin: auto;
}

.clr {
    clear: both;
}

.bg-styles {
    background-size: cover !important;
    background-position: center !important;
}

.inline {
    display: inline-block;
}

* {
    outline: none !important;
}

.left-md-center,
.right-md-center {
    text-align: center;
}

.left-md-center img,
.right-md-center img {
    margin: auto;
}

.padding-0 {
    padding: 0;
}

.inline-img {
    float: none;
}

.text-center img {
    margin: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--pc);
    font-weight: bold;
}

.full-width {
    width: 100%;
}

.content-wraper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex-grow: 1;
}

.body-content {
    display: flex;
    /* height:calc(100vh - 60px); */
    align-items: center;
    text-align: center;
    /* margin-bottom:60px; */
    flex-grow: 1;
}

.main-logo {
    text-align: center;
    max-width: 370px;
    margin: auto;
    margin-bottom: 24px;
}

.welcome {
    text-align: center;
    color: var(--pc);
    font-size: 24px;
    margin-bottom: 36px;
}

.ea-form form {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    max-width: 480px;
}

.ea-form form input {
    margin-bottom: 12px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0 15px;
    background-color: transparent;
}

.other-actions {
    text-align: start;
    margin-bottom: 36px;
    font-size: 18px;
}

.form-btns {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.ea-btns {
    border: none;
    font-size: 18px;
    padding: 5px 20px;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.ea-btns:hover,
.ea-btns:focus,
.ea-btns:active {
    background: var(--sc);
    color: #fff;
}

.light-btn {
    background: #ddd;
    color: var(--pc);
}

.dark-btn {
    background: var(--pc);
    color: #fff;
}

.logo-footer {
    width: 100%;
    /* margin-top: 30px; */
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-height: 30px;
    margin-bottom: 30px;
}

.ea-form.signup-form form input {
    margin-bottom: 15px;
    height: 40px;
    border-radius: 4px;
    border: none;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    background-color: transparent;
}

.ea-form.signup-form form {
    /* display:grid; */
    /* gap:0 15px; */
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    margin: auto;
}

/* .ea-form.signup-form form select{margin-bottom:12px;height:40px;border-radius:0px;border:none;border-bottom:1px solid var(--border-color);padding:0px;background-color:transparent;color: #757575;} */
.ea-form.signup-form input::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #757575 transparent transparent;
}

/* Custom Selects */
.custom-selects {
    position: relative;
}

.custom-selects select {
    display: none;
}

/* .select-selected {background-color: #757575;} */
.select-selected:before {
    position: absolute;
    content: "";
    top: 18px;
    right: 15px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #757575 transparent transparent;
}

.select-selected.select-arrow-active:before {
    border-color: transparent transparent #757575;
    top: 12px;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #ffffff transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #ffffff;
    top: 14px;
}

.select-selected {
    color: #757575;
    padding: 4px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    height: 40px;
    margin-bottom: 15px;
}

.select-items > div {
    color: var(--pc);
    padding: 6px 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    text-align: left;
    line-height: 20px;
}

.select-items {
    position: absolute;
    background-color: #ffffff;
    top: calc(100% - 15px);
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid var(--border-color);
    /* margin-top:-2px; */
    padding: 4px 0;
    border-radius: 4px;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    color: #fff;
    background-color: var(--pc);
}

.select-items div:last-child {
    border: none;
}

.signup-btns-con {
    grid-column: span 2;
    margin-top: 10px;
    display: grid;
    justify-items: center;
}

.conf-box {
    background-color: var(--pc);
    padding: 48px;
    border-radius: 8px;
    max-width: 350px;
    margin: auto;
}

.conf-txt {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
}

.under-box-info {
    padding: 10px 48px;
    max-width: 350px;
    margin: auto;
    line-height: 24px;
    color: #727272;
}

.go-btn {
    padding: 4px 12px;
    margin-top: 60px;
}

.welcome-box {
    background-color: #fff;
    padding: 84px 30px;
    border: 1px solid var(--border-color);
}

.welcome-box h4 {
    margin-bottom: 42px;
    font-weight: 700;
}

.welcome-box p {
    text-align-last: center;
}

.welcome-box .btn-confirm {
    background-color: #2474dd !important;
    color: #fff;
}

.welcome-cta .ea-btns {
    padding: 4px 42px;
}

.welcome2 p,
.welcome2 hr {
    max-width: 260px;
    margin: auto;
    text-align: center;
}

.welcome2 hr {
    margin: 42px auto 18px auto !important;
    border-top: 1px solid var(--border-color);
}

.btn-danger {
    background-color: #eb4732 !important;
}

.navbar-brand img {
    max-height: 30px;
}

.navbar-collapse {
    flex-grow: unset;
}

.navbar-toggler {
    color: #fff;
    margin: 10px 0;
}

.desktop {
    display: none;
}

.mobile {
    display: flex;
}

.logo-footer.empty {
    background-color: var(--pc);
    height: 30px;
    padding: 0;
}

.date .form-group {
    justify-content: flex-end;
}

.input-group-append span {
    border-radius: 0 4px 4px 0;
    border-color: var(--border-color);
    border-left: none;
    background: transparent;
}

.form-control {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-right: none;
}

.comment-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.comment-info {
    line-height: 18px;
}

.comment-name {
    white-space: nowrap;
    width: 130px;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
}

.comment-title {
    font-size: 14px;
}

.comment-txt {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    flex-grow: 1;
}

.comment-txt p {
    margin: 0;
}

.brain-box {
    margin: 30px 0;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.brain-box-title h5 {
    color: var(--border-color);
}

.brain-box-comments .comment-box {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    align-items: center;
}

.brain-box-comments .comment-txt {
    border: none;
    border-radius: 0;
    padding: 0;
    flex-grow: 1;
}

.comment-txt textarea {
    height: 100px;
    border-radius: 18px 0 0 18px;
    background: #fff;
    box-shadow: none !important;
    border: 1px solid var(--border-color) !important;
    border-right: none !important;
}

.comment-txt button {
    background: #fff;
    border-left: none;
    padding: 10px 30px;
    font-size: 28px;
    box-shadow: none !important;
    border-radius: 0 24px 24px 0;
}

.comment-txt button:hover,
.comment-txt button:active,
.comment-txt button:focus {
    background-color: var(--pc);
}

.comment-box.write-comment {
    border: none !important;
    background-color: #dddddd;
    border-radius: 36px;
}

.related-topics {
    margin: 30px 0;
}

.topic-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding-top: 100%;
    border-radius: 24px;
}

.reg-link {
    color: #696969;
}

.big-mssg * {
    text-align: center;
}

.big-mssg {
    font-size: 20px;
}

.user-name-box {
    font-size: 24px;
    font-weight: bold;
    border: 1px solid var(--border-color);
    display: inline-block;
    padding: 12px 40px;
    border-radius: 10px;
}

.alert-mssg {
    color: red;
    margin-top: 10px;
}

.btn-red {
    background-color: var(--sc);
}

.welcome-mssg {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.app-title {
    font-size: 48px;
    color: var(--pc);
    font-weight: bold;
    margin-bottom: 30px;
}

.app-title span {
    color: var(--sc);
}

.app-nav {
    /* height:60px; */
    background-color: #fff;
    border-radius: 0 0 42px 42px;
}

.navbar-brand {
    margin: 16px 0;
}

.grey-bg {
    background: #e8ecf5;
}

.nav-right {
    align-items: center;
}

.nav-username {
    background-color: #e8ecf5;
    padding: 4px 30px;
    border-radius: 12px;
    margin-right: 30px;
    font-size: 14px;
    color: #696969;
}

.nav-smile img {
    max-height: 42px;
}

.navbar {
    padding: 0;
}

.navbar-nav {
    column-gap: 10px;
    li.nav-item {
        width: calc(100% / 8);
    }
}

.nav-link {
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    padding-top: 20px;
    color: var(--pc);
}

.nav-link:hover,
.nav-link:active,
.nav-link:focus {
    color: var(--sc);
}

.nav-link.active {
    border-bottom: 4px solid var(--sc);
    color: var(--pc);
}

.nav-link i {
    font-size: 20px;
}

.white-radius-box {
    min-height: calc(100vh - 170px);
    background: #fff;
    padding: 60px 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 0 6px 0 #00000020;
    /* display: flex; */
    /* flex-direction: column; */
    /* row-gap: 30px; */
}

.bordr-form.ea-form.signup-form form input,
.bordr-form.ea-form.signup-form form .select-selected {
    border: none;
    border-bottom: 1px solid #707070;
    border-radius: 0;
    padding-left: 0;
}

.grey-btn {
    background-color: #8391b0;
}

.text-right {
    display: flex;
    flex-direction: row-reverse;
}

.unknown1 {
    color: var(--sc);
    border-bottom: 1px solid var(--border-color);
    min-width: 90px;
    margin-right: 0;
    font-size: 22px;
    text-align: end;
}

.unknown1 i,
.cursorPointer {
    cursor: pointer;
}

.taps-con {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
    margin-bottom: 10px;
}

.taps-con a {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 6px 0 #00000020;
    padding: 4px 0;
    font-weight: bold;
}

.taps-con a.active {
    background-color: #8391b0;
    color: #fff;
}

.chat-window {
    background: #fff;
    box-shadow: 0 0 6px 0 #00000020;
}

.chat-box {
    padding: 30px 30px 0 30px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.my-custom-scroll {
    scrollbar-color: var(--scroll-thumb-color, grey)
        var(--scroll-track, transparent);
    scrollbar-width: thin;
}

.my-custom-scroll::-webkit-scrollbar {
    width: var(--scroll-size, 6px);
    height: var(--scroll-size, 10px);
}

.my-custom-scroll::-webkit-scrollbar-track {
    background-color: var(--scroll-track, transparent);
    border-radius: var(--scroll-track-radius, var(--scroll-radius));
}

.my-custom-scroll::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color, grey);
    background-image: var(--scroll-thumb, none);
    border-radius: var(--scroll-thumb-radius, var(--scroll-radius));
}

.my-custom-scroll {
    --scroll-size: 6px;
    --scroll-radius: 10px;
    --scroll-track: rgb(0 0 0 / 20%);
    --scroll-thumb-color: rgb(255 255 255 / 40%);
}

.chat-box .mssg-content {
    background: #e8ecf5;
    max-width: 70%;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    display: inline-block;
    position: relative;
}

.mssg-content::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 20px;
    border: 10px solid #e8ecf5;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotateX(50deg);
}

.massg-sent .mssg-content::after {
    left: auto;
    right: 20px;
    border-color: #8391b0;
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.chat-box li {
    text-align: left;
}

.chat-box .massg-sent {
    text-align: right;
}

.chat-box .mssg-content p {
    margin: 0;
    line-height: 24px;
}

.chat-box .massg-sent .mssg-content {
    background: #8391b0;
    color: #fff;
    word-break: break-word;
}

.mssge-info {
    color: #8391b0;
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
}

.massg-sent .mssge-info {
    color: #fff;
}

.chat-input {
    padding: 12px 15px;
    background-color: #e8ecf5;
}

.chat-input form {
    gap: 10px;
}

.chat-input form input {
    border: none;
    background-color: #fff;
}

.chat-input form button,
.chat-input form label {
    border: none;
    background-color: transparent;
    padding: 0 10px;
    font-size: 22px;
    color: #696969;
}

:root {
    --warn: #ffa500;
    /* #ffc600; */
    --gold: #e6c356;
}

.star-rate,
.star-rate * {
    transition: 0.3s ease all;
}

.star-rate {
    position: relative;
    font-size: 14px;
    line-height: 14px;
    margin: 18px auto;
}

.star-rate i {
    font-size: 24px;
    margin: auto;
}

/* range */
.star-rate > .stars {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    z-index: 9;
}

.star-rate .star-range {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 99;
    cursor: pointer;
}

.stars span {
    width: 60px;
}

.star-range[value="1"] ~ .stars [data-star-value="1"],
.star-range[value="2"] ~ .stars [data-star-value="1"],
.star-range[value="2"] ~ .stars [data-star-value="2"],
.star-range[value="3"] ~ .stars [data-star-value="1"],
.star-range[value="3"] ~ .stars [data-star-value="2"],
.star-range[value="3"] ~ .stars [data-star-value="3"],
.star-range[value="4"] ~ .stars [data-star-value="1"],
.star-range[value="4"] ~ .stars [data-star-value="2"],
.star-range[value="4"] ~ .stars [data-star-value="3"],
.star-range[value="4"] ~ .stars [data-star-value="4"],
.star-range[value="5"] ~ .stars [data-star-value="1"],
.star-range[value="5"] ~ .stars [data-star-value="2"],
.star-range[value="5"] ~ .stars [data-star-value="3"],
.star-range[value="5"] ~ .stars [data-star-value="4"],
.star-range[value="5"] ~ .stars [data-star-value="5"] {
    color: var(--warn);
}

/* firework */
.star-range[value="1"] ~ .stars [data-star-value="1"]::after,
.star-range[value="2"] ~ .stars [data-star-value="1"]::after,
.star-range[value="2"] ~ .stars [data-star-value="2"]::after,
.star-range[value="3"] ~ .stars [data-star-value="1"]::after,
.star-range[value="3"] ~ .stars [data-star-value="2"]::after,
.star-range[value="3"] ~ .stars [data-star-value="3"]::after,
.star-range[value="4"] ~ .stars [data-star-value="1"]::after,
.star-range[value="4"] ~ .stars [data-star-value="2"]::after,
.star-range[value="4"] ~ .stars [data-star-value="3"]::after,
.star-range[value="4"] ~ .stars [data-star-value="4"]::after,
.star-range[value="5"] ~ .stars [data-star-value="1"]::after,
.star-range[value="5"] ~ .stars [data-star-value="2"]::after,
.star-range[value="5"] ~ .stars [data-star-value="3"]::after,
.star-range[value="5"] ~ .stars [data-star-value="4"]::after,
.star-range[value="5"] ~ .stars [data-star-value="5"]::after,
.star-check:nth-of-type(1):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(2):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(2):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="3"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="3"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="4"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="3"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="4"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="5"]::after {
    animation: firework 0.5s ease both 0.1s;
}

.stars [data-star-value] {
    color: #696969;
    position: relative;
    cursor: pointer;
    display: grid;
    align-items: center;
    width: fit-content;
    transition: color 0.3s ease;
}

.stars [data-star-value]::after {
    content: "";
    position: absolute;
    min-width: 8px;
    min-height: 8px;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@keyframes firework {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 -2px var(--gold), 0 0 0 -2px var(--gold),
            0 0 0 -2px var(--gold), 0 0 0 -2px var(--gold),
            0 0 0 -2px var(--gold), 0 0 0 -2px var(--gold);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        box-shadow: 0 -30px 0 0px var(--gold), 28px -16px 0 0px var(--gold),
            28px 16px 0 0px var(--gold), 0 30px 0 0px var(--gold),
            -28px 16px 0 0px var(--gold), -28px -16px 0 0px var(--gold);
    }
}

.rating-info {
    display: inline-flex;
    justify-content: space-between;
    margin: auto;
    background-color: #e8ecf5;
    gap: 54px;
    padding: 0px 30px;
}

.hint {
    font-size: 14px;
    margin-top: 12px;
}

.mw-500 {
    max-width: 800px;
    margin: auto;
}

.mw-900 {
    max-width: 900px;
    margin: auto;
}

.suggestion-box {
    display: flex;
    gap: 30px;
}

.suggestion-radio {
    text-align: left;
}

.mssg-box {
    flex-grow: 1;
}

.mssg-box textarea {
    width: 100%;
    border-radius: 8px;
    min-height: 160px;
    border-color: var(--border-color);
    padding: 10px 15px;
}

.mssg-box .ea-btns {
    margin-top: 10px;
}

.survey-box {
    max-width: 900px;
    margin: 30px auto 0;
    font-size: 18px;
}

.survey-tr {
    display: grid;
    grid-template-columns: 1fr 90px 84px 48px;
    gap: 6px;
    font-size: 14px;
}

.survey-head .survey-td {
    border: 1px solid #8c8c8c;
    border-radius: 8px 8px 0 0;
    border-bottom-color: #ddd;
    padding: 12px 0;
    font-weight: bold;
}

.survey-td {
    border-right: 1px solid #8c8c8c;
    border-left: 1px solid #8c8c8c;
    color: var(--pc);
    padding: 8px 0;
}

.survey-tr:nth-child(even) .survey-td {
    background-color: #f3f3f3;
}

.survey-td .form-check-input {
    margin-right: 10px;
}

.survey-td a {
    color: var(--sc);
}

.survey-select {
    cursor: pointer;
}

.survey-select i {
    opacity: 0;
    margin-right: 15px;
}

.survey-select:hover i {
    opacity: 0.3;
}

.survey-tr.sur-checked .survey-td,
.survey-tr.sur-checked .survey-td a {
    color: #adadad;
}

.survey-tr.sur-checked .survey-select i {
    opacity: 1;
    color: var(--pc);
}

.survey-tr:last-child .survey-td {
    border-bottom: 1px solid #8c8c8c;
    border-radius: 0 0 8px 8px;
}

.question-box {
    max-width: 900px;
    margin: 0 auto 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.question-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.question-box .star-rate i {
    font-size: 36px;
}

.ea-btns.yes {
    background-color: #1b8552;
    font-weight: bold;
}

.ea-btns.no {
    background-color: #db3647;
    font-weight: bold;
}

.yesorno .question-box {
    padding-bottom: 42px;
}

.question-pagination {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 14px;
    line-height: 18px;
}

.question-pagination a i {
    display: block;
    font-size: 30px;
}

.notification-box {
    width: 100%;
    background-color: #f3f3f3;
    padding: 10px;
    margin: 0 auto 10px;
    border-radius: 8px;
}

.notification-box * {
    margin: 0;
}

.notification-box:last-child {
    margin: 0 auto;
}

.names-side {
    height: calc(100vh - 104px);
    width: 100%;
    background-color: #8391b0;
    overflow-y: scroll;
}

.chat-controls {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: var(--bs-gutter-x);
    padding: 8px 0;
}

.labeled-message {
    white-space: nowrap;
    background-color: #fff;
    padding: 0 12px;
    border-radius: 4px;
    box-shadow: 0 0 4px 2px #00000010;
}

.labeled-message i {
    color: var(--sc);
}

.chat-controls .input-group {
    width: auto;
}

.chat-controls .input-group-text,
.chat-controls .input-group .form-control {
    padding: 3px 10px;
}

.chat-controls .input-group .form-control,
.chat-controls .input-group-append span {
    border-color: #696969;
}

/* .chat-filter{gap: var(--bs-gutter-x);} */
.chat-filter a {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    box-shadow: 0 0 4px 2px #00000010;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.chat-filter .n-employees {
    background-color: var(--pc);
    color: #fff;
}

.unread {
    color: #db3647;
}

.respond {
    color: #1b8552;
}

.non-respond {
    color: #fec007;
}

#datepicker .form-control,
#datepicker span {
    border: none;
}

#datepicker {
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.chat-header {
    background-color: #8391b0;
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 8px 15px;
}

.chat-name {
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 24px;
}

.chat-name .header-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: block;
}

#ChatHeader .chat-name,
#ChatHeader .chat-icon {
    display: none;
}

.chat-icon a {
    color: var(--sc);
    background-color: #e8ecf5;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 46px;
    display: block;
    font-size: 24px;
}

.chat-box {
    height: calc(100vh - 350px);
    min-height: 315px;
}

.chat-box ul {
    min-width: 400px;
}

.chat-name-box {
    display: flex;
    padding-top: 10px;
    max-width: 100%;
    cursor: pointer;
}

.chat-name-box.active {
    background-color: #00000030;
}

.avatar-side {
    padding: 0 10px;
}

.chat-avatar {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.chat-name-side {
    display: flex;
    border-bottom: 1px solid #aab8d7;
    color: #fff;
    width: calc(100% - 70px);
    justify-content: space-between;
    padding: 0 10px 10px 0;
}

.chat-name-box:last-child .chat-name-side {
    border: none;
}

.chat-name-mssg {
    text-align: left;
    width: calc(100% - 52px);
}

.employee-name {
    font-size: 18px;
}

.last-mssg {
    display: block;
    white-space: nowrap;
}

.last-mssg p {
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 12px;
    line-height: 14px;
    margin: 0;
}

.chat-details {
    font-size: 11px;
    line-height: 18px;
}

.message-number {
    margin-top: 10px;
}

.message-number span {
    border: 1px solid #fff;
    border-radius: 12px;
    font-size: 9px;
    width: 20px;
    height: 20px;
    display: inline-block;
    line-height: 19px;
}

.message-number.green span {
    background-color: #1b8552;
}

.message-number.red span {
    background-color: #980e16;
}

.message-number.yellow span {
    background-color: #fec007;
}

.message-number.pink span {
    background-color: #db3647;
}

.message-number.skyblue span {
    background-color: skyblue;
}

.charts-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.detail-box {
    background-color: #e8ecf5;
    padding: 24px 0;
}

.detail-box:first-child {
    grid-area: 1 / 1 / 2 / 2;
}

.detail-box:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.detail-box:last-child {
    grid-area: 2 / 1 / 3 / 3;
}

.detail-box h1 {
    margin: 0;
}

.percentage {
    max-width: 400px;
    background-color: #8391b0;
    height: 18px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin: 12px auto 0;
}

.percentage .percent-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #fec007;
    border-radius: 0 12px 12px 0;
}

.calendar-con .calendar-wrapper {
    width: 100%;
    margin: 0;
    border-radius: 5px;
    background: #fff;
}

.calendar-con table {
    clear: both;
    width: 100%;
    border: 1px solid #e8ecf5;
    border-radius: 3px;
    border-collapse: collapse;
    color: #444;
}

.calendar-con td {
    height: 39px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid #e8ecf5;
    border-top: 1px solid #e8ecf5;
    width: 14.28571429%;
}

.calendar-con td.not-current {
    color: silver;
}

.calendar-con td.today {
    font-weight: 700;
    color: #28283b;
    font-size: 1.5em;
}

.calendar-con thead td {
    border: none;
    color: #28283b;
    text-transform: uppercase;
    font-size: 20px;
}

.calendar-con tbody {
    display: none;
}

.calendar-con #btnPrev {
    float: left;
}

.calendar-con #btnPrev:before {
    content: "\f104";
    font-family: FontAwesome;
    padding-right: 4px;
}

.calendar-con #btnNext {
    float: right;
}

.calendar-con #btnNext:after {
    content: "\f105";
    font-family: FontAwesome;
    padding-left: 4px;
}

.calendar-con #btnPrev,
#btnNext {
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: silver;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.calendar-con #btnPrev:hover,
.calendar-con #btnNext:hover {
    color: #28283b;
    font-weight: 700;
}

.year-select .form-select {
    padding: 0.175rem 1.25rem 0.175rem 0.2rem;
    background-position: right 0.2rem center;
}

.suggestions-control {
    display: flex;
    justify-content: space-between;
}

.suggestions-control .input-group {
    max-width: 240px;
}

.suggestions-control .form-check {
    border-bottom: 1px solid #ddd;
    padding-right: 60px;
}

.suggestions-control .form-check-input,
.sugg-box .form-check-input {
    border: 2px solid var(--pc);
}

.sugg-box {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.sugg-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sugg-avatar {
    padding-top: 5px;
}

.sugg-txt {
    text-align: start;
    flex-grow: 1;
}

.sugg-txt label {
    font-size: 20px;
    color: var(--pc);
    margin: 0;
    font-weight: bold;
}

.sugg-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 24px;
    padding-right: 15px;
}

.survey-box-2 .survey-tr {
    gap: 0;
}

.survey-box-2 .survey-tr.survey-head .survey-td {
    background-color: #e8ecf5 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.survey-box-2 .survey-head .survey-td {
    border-radius: 0;
    border-right: none;
    color: var(--sc);
}

.survey-box-2 .survey-td {
    border-right: none;
    border-color: #ddd;
    color: var(--pc);
}

.survey-box-2 .survey-td:last-child {
    border-right: 1px solid #ddd;
}

.survey-box-2 .survey-td:last-child a {
    margin-right: 10px;
}

.survey-box-2 .survey-td:last-child a:last-child {
    margin-right: 0;
}

.survey-box-2 .survey-tr:last-child .survey-td {
    border-radius: 0;
    border-color: #ddd;
}

.survey-box-2 .survey-tr:nth-child(even) .survey-td {
    background-color: #fff;
}

.survey-box-2 .survey-tr:nth-child(odd) .survey-td {
    background-color: #f3f3f3;
}

.survey-box-2 .survey-tr {
    grid-template-columns: 1fr 80px 76px 58px;
}

.grey {
    color: #696969;
}

.brdr-btm {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

#AddNewSurveyForm {
    text-align: left;
}

.name-of-survey {
    position: relative;
    display: inline-block;
}

.name-of-survey input[type="text"] {
    font-size: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 40px 12px 12px;
}

.name-of-survey .survey-edit {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
}

.form-box {
    border-bottom: 1px solid #ddd;
    position: relative;
    margin-top: 10px;
    position: relative;
}

.form-box::after {
    content: "";
    border-width: 8px;
    border-style: solid;
    border-color: #444;
    border-top-color: transparent;
    border-left-color: transparent;
    position: absolute;
    bottom: -1px;
    right: 0;
}

.q-actions {
    position: absolute;
    right: 0;
}

.form-box h5 {
    text-align: start;
    color: #444;
}

.add-form button {
    height: 58px;
    width: 58px;
    font-size: 30px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
}

.side-sur {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
}

.side-sur-box {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.side-sur-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.side-title {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: #696969;
    text-align: left;
}

.side-actions {
    line-height: 20px;
}

.side-date {
    font-size: 14px;
}

.download-survey a {
    font-size: 20px;
    color: var(--sc);
    margin-left: 10px;
}

.sep-box {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.sep-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.survey-charts {
    display: flex;
    justify-content: space-between;
}

.vertical-charts-con {
    display: flex;
    gap: var(--bs-gutter-x);
    justify-content: center;
    margin-bottom: 30px;
}

.vertical-chart {
    width: 60px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.v-chart-header {
    background-color: #8391b0;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    text-align: right;
    padding-right: 6px;
}

.v-chart-header sup {
    font-size: 8px;
}

.v-chart-body {
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

.v-chart-bar {
    width: 14px;
    border-radius: 7px;
    background-color: #e8ecf5;
    position: relative;
    height: 86px;
    margin: auto;
}

.v-chart-bar span {
    border-radius: 7px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fec007;
}

.v-chart-footer {
    background-color: #fec007;
    text-align: center;
    color: #fff;
    border-radius: 4px;
}

.horizontal-chart {
    background-color: #e8ecf5;
    padding: 10px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
}

.horizontal-percentage {
    font-size: 20px;
}

.horizontal-chart .percentage {
    width: 100%;
    height: 12px;
    background: #fff;
}

.percentage-info {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.horizontal-chart-no span {
    background-color: #8391b0;
    color: #fff;
    border-radius: 4px;
    padding: 4px 30px;
    display: inline;
}

.horizontal-chart-no sup {
    font-size: 9px;
}

.yesno-chart-con {
    max-width: 500px;
    margin: 30px auto 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 40px;
    font-size: 14px;
}

.yesno-chart-con > div {
    display: flex;
    gap: 10px;
    margin: 5px 0;
}

.yesno-chart-con > div > .percentage {
    flex-grow: 1;
    margin: 4px 0;
    height: 20px;
    background-color: #e8ecf5;
}

.yesno-title {
    font-size: 18px;
    font-weight: bold;
    width: 32px;
}

.yes-chart .yesno-title {
    color: #1b8552;
}

.no-chart .yesno-title {
    color: #db3647;
}

.yes-chart .percent-bar {
    background-color: #1b8552;
}

.no-chart .percent-bar {
    background-color: #db3647;
}

.yesno-chart-con .chart-details {
    width: 70px;
    text-align: left;
}

.reply-box {
    max-width: 800px;
    margin: 0 auto;
}

.reply-title span {
    font-size: 22px;
}

.reply-box .chat-avatar {
    display: inline-block;
    margin-right: 10px;
    height: 40px;
    width: 40px;
}

.replay-txt {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 24px;
}

.replay-txt p {
    margin: 0;
}

/*
*###################################################################
*										Ahmed Essonoutty Style
*###################################################################
*/

.chatSentImage {
    max-height: 150px;
}

.chatSentImage:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 400px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0);
    }

    to {
        -webkit-transform: scale(1);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .navbar-nav {
        column-gap: 5px;
        li {
            font-size: 4px;
        }
    }
    #MessageBody {
        &::placeholder {
            font-size: 10px;
        }
    }
    .welcome-mssg {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .app-title {
        font-size: 35px;
        color: var(--pc);
        margin-bottom: 25px;
    }

    .main-logo {
        max-width: 100px;
    }

    .nav-smile img {
        max-height: 20px;
    }
    .nav-username {
        font-size: 14px;
        padding: 4px 30px;
        margin: 0 5px;
    }

    .star-rate {
        max-width: 100%;
    }
    .modal-content {
        width: 400px;
    }
}

.rating-info {
    font-size: 12px;
    gap: 25px;
}

.pagination li.page-item {
    width: 50%;
    margin-top: 10px;
}

.pagination li.page-item a {
    color: var(--pc);
}

.yes.ActiveAnswer {
    box-shadow: inset 0 0 12px 2px #002514;
}

.no.ActiveAnswer {
    box-shadow: inset 0 0 12px 2px #63161e;
}

.chat-box .massg-recieved .mssg-content,
.sugg-txt {
    word-break: break-all;
}

.chat-filter a.active,
a#filterLabeled.labeled-message.active {
    box-shadow: 0 0 4px 2px #00000045 inset;
}

/*
*###################################################################
*										Ahmed Essonoutty Style
*###################################################################
*/

.modal-body .btn-close {
    float: right;
    clear: both;
}

.modal-body .row {
    clear: both;
}

.modal-body .sugg-actions {
    padding-right: 0;
}

.form-box textarea {
    width: 100%;
    border: none;
}

@media (min-width: 576px) {
    .navbar-nav {
        column-gap: 5px;
        li a {
            font-size: 5px;
        }
    }
    .nav-smile img {
        max-height: 35px;
    }
    .nav-username {
        font-size: 15px;
        padding: 2px 20px;
        margin: 0 5px;
    }

    .rating-info {
        font-size: 15px;
        gap: 25px;
    }
    .star-rate {
        width: 50%;
    }

    .survey-tr {
        grid-template-columns: 1fr 96px 84px 54px;
        gap: 10px;
    }

    .survey-box-2 .survey-tr {
        grid-template-columns: 1fr 96px 110px 60px;
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        column-gap: 5px;
    }
    .nav-smile img {
        max-height: 42px;
    }
    .nav-username {
        font-size: 14px;
        padding: 4px 30px;
    }
    .rating-info {
        font-size: 16px;
        gap: 35px;
    }
    .col-md-offset-1 {
        margin-right: 8.33333333%;
        margin-left: 0;
    }

    .left-md-center {
        text-align: left !important;
    }

    .right-md-center {
        text-align: right !important;
    }

    .left-md-center img {
        margin-left: 0;
    }

    .right-md-center img {
        margin-right: 0;
    }

    .inline-img {
        float: left;
        margin-right: 15px;
    }

    .inline-video {
        width: 50%;
    }

    .survey-tr {
        grid-template-columns: 1fr 108px 96px 60px;
        gap: 15px;
        font-size: 16px;
    }

    .survey-box-2 .survey-tr {
        grid-template-columns: 1fr 125px 128px 70px;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        column-gap: 5px;
        li a {
            font-size: 12px;
        }
    }
    .rating-info {
        font-size: 17px;
        gap: 45px;
    }
    .desktop {
        display: flex;
    }

    .mobile {
        display: none;
    }

    .survey-tr {
        grid-template-columns: 1fr 120px 120px 90px;
        gap: 15px;
    }

    .survey-box-2 .survey-tr {
        grid-template-columns: 1fr 120px 135px 90px;
    }

    .vertical-charts-con {
        justify-content: left;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-nav {
        column-gap: 10px;
        li a {
            font-size: 14px;
        }
    }
    .survey-tr {
        grid-template-columns: 1fr 174px 138px 84px;
        gap: 15px;
        font-size: 18px;
    }

    .survey-box-2 .survey-tr {
        grid-template-columns: 1fr 174px 170px 120px;
        font-size: 18px;
    }
}
