@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,700;1,800;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}

body {
    background-color: #f8f9fd;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #0199db;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.navbar-top {
    display: flex;
    background-color: white;
    height: 70px;
    align-items: center;
    padding: 0 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    column-gap: 2rem;
}

.logo-wrapper {
    width: 200px;
    min-width: 200px;
}

.company-logo-wrapper {
    width: 200px;
    min-width: 200px;
    height: 100%;
}

.company-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-wrapper img {
    width: 100%;
}

.user-logo-wrapper {
    background: transparent !important;
}

.user-logo-wrapper .logo-wrapper a {
    padding: 0;
}

.logo-wrapper h1 {
    color: black;
    font-size: 0.8rem;
}

.profile-wrapper {
    width: calc(100% - 200px);
    text-align: right;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    justify-content: flex-end;
}

.profile-wrapper img.menu-image {
    width: 25px;
    min-width: 25px;
    margin-left: 1rem;
    display: none;
}

@media screen and (max-width: 576px) {
    .logo-wrapper {
        max-width: 140px;
        width: 100%;
        min-width: 100px;
    }

    .company-logo-wrapper {
        max-width: 140px;
        width: 100%;
        min-width: 100px;
    }

    .profile-wrapper {
        width: calc(100% - 140px);
    }
}

.text-copy {
    position: absolute;
    top: 55px;
    left: 250px;
    background-color: #0199db;
    padding: 0.1rem 1rem;
    border-radius: 10px;
    display: none;
}

.text-copy h1 {
    font-size: 0.8rem !important;
    margin: 0 !important;
    color: white !important;
}

.id-code {
    position: absolute;
    top: 80px;
    left: 250px;
    background-color: white;
    padding: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.id-code h2 {
    font-size: 0.9rem;
    margin: 0;
}

.id-code h1 span img {
    width: 20px;
    cursor: pointer;
}

.id-code h1 {
    font-size: 1rem !important;
    margin: 0 !important;
    cursor: pointer;
}

.id-code h1 span:nth-of-type(1) {
    font-weight: 700;
}

@media screen and (max-width: 991px) {
    .id-code {
        left: 25px;
    }

    .text-copy {
        left: 25px;
    }
}

.profile-wrapper img.profile-image {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-wrapper h1 {
    color: #404040;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
}

.sidebar {
    width: 230px;
    background-color: white;
    position: fixed;
    left: 0;
    top: 70px;
    height: calc(100vh - 70px);
    /* padding: 0 1rem; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    /* overflow: auto; */
}

.company-logo {
    text-align: center;
    background-color: transparent !important;
    cursor: unset !important;
    height: 100%;
    max-height: 100px;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    /* padding-top: 1.5rem; */
    margin-bottom: 0px;
    padding: 1rem;
}

.siderbar-modules-wrapper {
    overflow-y: auto;
}

.sidebar ul:nth-of-type(2) {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.sidebar ul li {
    border-radius: 10px;
    background-color: #f8f9fd;
    cursor: pointer;
}

.setting-dropdown-hide {
    display: none !important;
}

.setting-collapse {
    position: relative;
}

.setting-collapse-radius {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.setting-dropdown {
    /* position: absolute; */
    /* background-color: #6dace4; */
    background-color: #ffffff;
    top: 100%;
    width: 100%;
    border-radius: 10px;
    padding: 0 !important;
    z-index: 2;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.setting-dropdown li {
    background-color: transparent !important;
    border-radius: 0 !important;
}

.setting-dropdown li.active,
.setting-dropdown li:hover {
    /* background-color: white !important; */
    background-color: #6dace4 !important;
}

.setting-dropdown li:first-child.active,
.setting-dropdown li:first-child:hover {
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}

.setting-dropdown li:last-child.active,
.setting-dropdown li:last-child:hover {
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

.setting-dropdown li a span,
.setting-dropdown li a span {
    /* color: white !important; */
    color: #404040 !important;
}

.setting-dropdown li a svg path,
.setting-dropdown li a svg path {
    fill: #404040 !important;
    stroke: #404040 !important;
}

.setting-dropdown li.active a span,
.setting-dropdown li:hover a span {
    color: #ffffff !important;
}

.setting-dropdown li.active a svg path,
.setting-dropdown li:hover a svg path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

.sidebar ul li.active {
    background-color: #6dace4;
}

.dropdown-icon path {
    fill: transparent !important;
}

.sidebar ul li.active a svg path {
    fill: white;
    stroke: white;
}

.sidebar ul li.active a span {
    color: white;
}

.sidebar ul li:hover {
    background-color: #6dace4;
}

.sidebar ul li:hover a svg path {
    fill: white;
    stroke: white;
}

.sidebar ul li:hover a span {
    color: white;
}

.sidebar ul li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    column-gap: 0.6rem;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: #404040;
}

.sidebar-toggle {
    position: absolute;
    right: 0px;
    top: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    z-index: 2;
    cursor: pointer;
}

.sidebar-toggle .menu-close {
    width: 18px;
    min-width: 18px;
    display: none;
}

.sidebar.open .sidebar-toggle .menu-close {
    display: block;
    position: absolute;
    left: -25px;
    top: -5px;
}

.sidebar.open .sidebar-toggle {
    background: transparent;
}

.home-section {
    position: relative;
    top: 85px;
}

.mobile-profile {
    display: none;
}

@media screen and (min-width: 992px) {
    .home-section {
        left: 230px;
        width: calc(100% - 230px);
    }
}

@media screen and (max-width: 991px) {
    .profile-wrapper img.menu-image {

        display: block;
    }

    .sidebar {
        left: -230px;
        transition: all 0.5s;
    }

    .sidebar-toggle {
        display: block;
    }

    .open {
        left: 0px;
    }

    .siderbar-modules-wrapper {
        margin-top: 30px;
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .sidebar {
        /* justify-content: unset; */
        row-gap: 0.5rem;
    }
}

@media screen and (max-width: 576px) {

    .navbar-top .profile-wrapper img.profile-image,
    .navbar-top .profile-wrapper h1 {
        display: none;
    }

    .mobile-profile {
        display: block;
        background: transparent !important;
    }

    .mobile-profile .profile-wrapper {
        width: 100%;
        justify-content: flex-start;
    }

    .sidebar {
        width: 100%;
        left: -100%;
    }

    .open {
        left: 0;
    }
}

/* homepage */
.filter-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: white;
    padding: 1rem 0.5rem;
    border-radius: 10px;
}

.filter-right {
    display: flex;
    align-items: center;
}

.filter-right .search-field-wrapper {
    min-width: 150px;
}

.filter-check label {
    white-space: nowrap !important;
}

.filter-check {
    display: flex;
    column-gap: 0.3rem;
}

@media screen and (max-width: 767px) {
    .filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-right .form-field {
        width: 100%;
        align-items: flex-start;
    }

    .filter-right .form-field .filter-check {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-right {
        flex-direction: column;
        width: 100%;
    }
}

.common-heading h1 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #404040;
    margin: 0;
}

.search-field-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
    column-gap: 1rem;
}

.search-field {
    position: relative;
    width: 100%;
    height: 40px;
}

.search-field img {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translate(0%, -50%);
    width: 20px;
}

.search-field input::placeholder {}

.search-field input {
    height: 40px;
    border: 1px solid #e3e3e3 !important;
    box-shadow: none;
    background-color: white;
    outline: none;
    border-radius: 10px;
    width: 100%;
    font-size: 0.9rem;
    padding-left: 30px;
    color: #404040;
}

.search-field-wrapper a {
    text-decoration: none;
}

.search-field-wrapper a button {
    white-space: nowrap;
    height: 45px;
    border-radius: 10px;
    background-color: #6dace4;
    color: white;
    border: 1px solid #6dace4 !important;
    box-shadow: none;
    font-size: 0.9rem;
    padding: 0 1rem;
}

.company-card {
    background-color: white;
    padding: 0.5rem 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

@media screen and (min-width: 577px) {
    .company-card-table div {
        width: 33.33%;
    }

    .company-card-table .company-card-action {
        justify-content: flex-end;
    }

    .company-card-table .company-user-status {
        text-align: center;
    }
}

.company-card-dashboard {
    align-items: flex-start;
    flex-wrap: wrap;
}

.company-card-dashboard .company-card-profile {
    width: 25%;
    overflow: hidden;
    padding-right: 5px;
    min-width: 250px;
}

.company-card-dashboard .company-card-profile h1 span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
}

.company-user-status p {
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
    .company-user-status {
        display: flex;
        flex-direction: row;
        align-items: center;
        column-gap: 1rem;
    }

    .company-user-status p {
        margin-bottom: 0px;
    }

    .company-card {
        flex-direction: column;
        row-gap: 1rem;
    }
}

.no-record h1 {
    color: #bdbdbd;
    font-weight: 400;
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
    width: 100%;
    padding: 1rem 0rem;
}

.company-card-profile {
    display: flex;
    align-items: center;
    column-gap: 0.8rem;
}

.company-card-profile h1 {
    color: #404040;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 0.1rem;
}

.company-card-profile h1 span {
    color: #404040;
    font-weight: 400;
    font-size: 0.8rem;
}

.total-user {
    width: 25%;
}

.total-user h1 {
    color: #404040;
    font-size: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 0.1rem;
}

.total-user h1 span {
    color: #404040;
    font-weight: 500;
    font-size: 1.2rem;
}

.video-type h1 {
    color: #404040;
    font-size: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 0.1rem;
}

.video-type {
    width: 25%;
}

.video-type div {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.2rem;
    column-gap: 0.2rem;
    max-width: 250px;
}

.company-card-profile img.profile-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid lightgray !important;
}

.company-card-action {
    display: flex;
    column-gap: 1.5rem;
    align-items: center;
}

.company-card-action a {
    text-decoration: none;
}

.company-card-action a img {
    width: 21px;
}

.company-list-table-pagination {
    display: flex;
    column-gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.company-list-table-pagination button {
    width: 30px;
    height: 30px;
    background-color: white;
    border: 1px solid #e8e8e8 !important;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.company-list-table-pagination button img {
    width: 9px;
}

.company-list-table-pagination button:nth-of-type(2) img,
.company-list-table-pagination button:nth-of-type(3) img {
    width: 8px;
}

.company-list-table-pagination h1 {
    color: #404040;
    font-size: 0.9rem;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .company-card-dashboard .company-card-profile {
        width: 20%;
    }

    .total-user {
        width: 20%;
    }

    .video-type {
        width: 20%;
    }
}

@media screen and (max-width: 767px) {
    .company-card-dashboard .company-card-profile {
        width: 100%;
    }

    .total-user {
        width: 100%;
    }

    .video-type {
        width: 100%;
    }

    .company-card-dashboard {
        flex-direction: column;
        row-gap: 1rem;
    }

    .total-user h1 {
        flex-direction: row;
        column-gap: 0.5rem;
    }
}

@media screen and (max-width: 576px) {
    .search-field-wrapper {
        flex-direction: column;
        row-gap: 1rem;
    }

    .search-field-wrapper a {
        width: 100%;
    }

    .search-field-wrapper a button {
        width: 100%;
    }

    .company-card-action {
        width: 100%;
        justify-content: center;
    }

    .company-card-action a img {
        width: 15px;
    }
}

/* login */
.form-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container.login-container {
    min-height: 100vh;
}

.login-wrapper {
    background-color: white;
    width: 95%;
    max-width: 800px;
    border-radius: 10px;
    padding: 4rem 1rem;
    box-shadow: 2px 10px 50px 10px #00000012;
}

.login-form {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    width: 60%;
    margin: 0 auto;
}

.login-form img.logo {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.form-heading {
    color: #6dace4;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.verfication-successfull .form-heading {
    font-size: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.budget-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.budget-wrapper .form-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
}

.budget-wrapper .form-field label {
    margin-bottom: 0;
    text-align: center;
}

.budget-wrapper .form-field input {
    width: 40px;
    height: 40px;
    padding-left: 0;
    text-align: center;
}

@media screen and (max-width: 576px) {
    .budget-wrapper {
        flex-direction: column;
        row-gap: 1rem;
        align-items: unset;
    }

    .budget-wrapper .form-field {
        justify-content: space-between;
    }
}

.form-field a {
    text-decoration: none;
    color: #404040;
    font-size: 0.9rem;
    text-align: right;
}

.form-field .otp-container {
    display: flex;
    column-gap: 1rem;
    justify-content: center;
}

.form-field .otp-container input {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
}

.form-field h1 {
    font-size: 0.9rem;
    font-weight: 400;
}

.form-field h1 a {
    color: #6dace4;
}

.form-field label {
    color: #404040;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-field input {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background-color: #f9fbff !important;
    outline: none !important;
    box-shadow: none !important;
    padding-left: 1rem;
    font-size: 0.9rem;
}

.form-field textarea {
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background-color: #f9fbff !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 1rem;
    font-size: 0.9rem;
}

.form-field button {
    background-color: #6dace4;
    color: white;
    height: 50px;
    border: none !important;
    border-radius: 10px;
}

@media screen and (max-width: 576px) {
    .form-field .otp-container input {
        height: 40px;
        width: 40px;
    }

    .form-field .otp-container {
        column-gap: 0.7rem;
    }

    .login-wrapper {
        padding: 2rem 1rem;
    }

    .login-form {
        width: 80%;
    }
}

/* modal */

.delete-modal-header {
    background-color: #4a4b4cd2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(50%);
}

.delete-modal-header-content {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffefef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-modal-header-content img {
    width: 20px;
}

.delete-modal-content {
    border-radius: 20px;
    border: none;
}

.delete-modal-body {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.delete-modal-body h1 {
    font-size: 1rem;
    color: #404040;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.delete-modal-body p {
    color: #858585;
    font-size: 0.9rem;
    font-weight: 300;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 0;
}

.modal-button {
    display: flex;
    justify-content: flex-end;
    column-gap: 0.5rem;
}

.modal-button button {
    background-color: white;
    border: 0;
    padding: 0.2rem 1rem;
    border-radius: 5px;
    color: #404040;
    font-size: 0.9rem;
}

.modal-button button:nth-of-type(2) {
    color: white;
    background-color: #ff525c;
}

/* addcompany */
.form-wrapper {
    background-color: white;
    width: 95%;
    max-width: 800px;
    border-radius: 10px;
    padding: 4rem 1rem;
    box-shadow: 2px 10px 50px 10px #00000012;
}

.form-wrapper-heading {
    position: relative;
}

.form-box {
    width: 60%;
    margin: 0 auto;
    padding: 2rem 0rem;
}

.form-wrapper-heading a {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(0%, -50%);
}

.form-wrapper-heading a img {
    width: 18px;
}

.form-wrapper-heading h1 {
    color: #6dace4;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    padding: 0rem 1rem;
}

.form-field .upload-file {
    width: 120px;
    height: 110px;
    background: #f8f9fd;
    display: table;
    color: #b6b6b6;
    cursor: pointer;
    border: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 15px;
    row-gap: 0.5rem;
    margin: 0;
}

.image-view {
    position: relative;
    width: 120px;
    height: 110px;
    border: 1px dashed #e3e3e3;
    border-radius: 15px;
    overflow: hidden;
}

.image-view img.image-viewer {
    width: 120px;
    height: 110px;
    object-fit: cover;
}

.image-view img.close-icon {
    width: 14px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    cursor: pointer;
}

.form-field .upload-file img {
    width: 40px;
}

.form-field .upload-file input[type="file"] {
    display: none;
}

.form-field .form-field-input {
    position: relative;
}

.form-field .form-field-input img {
    position: absolute;
    right: 10px;
    width: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.form-field .form-field-input input {
    width: 100%;
    padding-right: 40px;
}

@media screen and (max-width: 576px) {
    .form-wrapper {
        padding: 2rem 1rem;
    }

    .form-box {
        width: 80%;
    }
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 1rem;
}

.page-numbers-wrapper {
    display: flex;
    align-items: center;
}

.page-move-btn {
    border: 1px solid #6dace4;
    color: #6dace4;
    border-radius: 20px;
    padding: 0.6rem 1rem;
    background-color: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.8rem;
}

.page-move-btn:active {
    background-color: #00b3ce57;
}

.page-number {
    color: #6dace4;
    font-size: 1rem;
    font-weight: 600;
    height: 45px;
    width: 50px;
    border-radius: 10px;
    border: 1px solid transparent;
    background-color: white;
}

.active-page-number {
    color: white;
    background-color: #6dace4;
}

.page-item.active .page-link {
    background-color: #6dace4;
    border-radius: 10px;
    padding: 0.5rem 1.2rem;
    border: none;
}

.page-link {
    border: none;
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    color: #6dace4;
    font-weight: 600;
}

.page-link:hover {
    background-color: transparent;
}

.page-item.disabled {
    opacity: 0.4 !important;
}

.page-item.disabled .page-link {
    background: transparent !important;
}

@media screen and (max-width: 576px) {
    .button-text {
        display: none;
    }

    .pagination {
        column-gap: 0.3rem;
        justify-content: center;
    }

    .page-item.active .page-link {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* view-page */
.company-view-image {
    width: 100%;
    min-width: 150px;
    max-width: 300px;
    height: 180px;
    border: 1px dashed #b6b6b6;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.company-view-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-detail-table {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    overflow: hidden;
}

.company-detail-table-row {
    display: flex;
    border-bottom: 1px solid #e3e3e3;
}

.company-detail-table-row:last-of-type {
    border-bottom: none;
}

.company-detail-table-col.heading {
    background-color: #f7f7f7;
    width: 30%;
}

.company-detail-table-col.descrition {
    width: 70%;
}

.company-detail-table-col h1 {
    color: #404040;
    margin: 0;
    font-weight: 300;
    font-size: 0.8rem;
    padding: 1rem;
    word-wrap: break-word;
}

.reply-wrapper {
    text-align: right;
    padding-right: 1rem;
}

.reply-field-wrapper input {
    height: 40px;
    width: 100%;
    border: 1px solid #e3e3e3 !important;
    box-shadow: none !important;
    outline: none;
    border-radius: 10px;
    padding-left: 15px;
    font-size: 0.8rem;
    padding-right: 50px;
}

.reply-field-wrapper textarea {
    width: 100%;
    border: 1px solid #e3e3e3 !important;
    box-shadow: none !important;
    outline: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 0.8rem;
}

.reply-field-wrapper button {
    padding: 0 1rem;
    height: 40px;
    background-color: #0199db;
    color: white;
    border-radius: 10px;
    border: none;
    width: 100%;
}

.reply-field-wrapper {
    position: relative;
}

.reply-field-wrapper img {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0%, -50%);
    width: 20px;
    cursor: pointer;
}

.reply-wrapper img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 5px;
    cursor: pointer;
}

.reply-wrapper label {
    font-size: 0.8rem;
    color: #404040;
    margin: 0;
}

@media screen and (max-width: 576px) {
    .form-box.view-box {
        width: 100%;
    }

    .company-detail-table-col h1 {
        padding: 0.7rem 0.3rem;
        font-size: 0.7rem;
    }
}

.inputError {
    border: 1px solid red !important;
    /* privacy */
}

.term-heading h1 {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    color: black;
    font-size: 1.2rem;
}

.term-heading p {
    color: #404040;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    padding: 0.8rem 0rem;
}

.term-heading h1 span {
    color: #838383;
    font-size: 1rem;
}

.term-heading ul {
    list-style: none;
}

.term-heading ul li {
    color: #404040;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    padding: 0.8rem 0rem;
    display: flex;
    column-gap: 0.6rem;
}

.term-heading ul li img {
    width: 16px;
    height: 14px;
    margin-top: 4px;
}

.content-wrapper {
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 10px 50px 10px #00000012;
    padding: 1rem;
}

/* contact */
.form-input-wrapper label {
    color: #404040;
    font-size: 0.9rem;
}

.form-input {
    position: relative;
    height: 45px;
}

.form-input-wrapper img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(0%, -50%);
    width: 15px;
}

.form-input-wrapper input {
    background-color: white;
    border: 1px solid white !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 0.8rem;
    height: 45px;
    border-radius: 10px;
    padding-left: 35px;
    color: #404040;
}

.form-input-wrapper textarea {
    background-color: white;
    border: 1px solid white !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 0.8rem;
    height: 45px;
    border-radius: 10px;
    padding: 1rem;
    color: #404040;
    height: 200px;
    width: 100%;
}

.form-input-wrapper textarea::placeholder {
    color: #b1b1b1;
}

.form-input-wrapper input::placeholder {
    color: #b1b1b1;
}

.form-input-wrapper button {
    height: 55px;
    background-color: #6dace4;
    color: white;
    font-size: 0.9rem;
    border-radius: 10px;
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #6dace4 !important;
    width: 100%;
}

/* Dashbaord Video page */
.reward-button-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.reward-button-wrapper a {
    display: block;
    background-color: #2ecc71;
    color: white !important;
    height: 40px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: none !important;
    padding: 0 1rem;
    text-decoration: none;
    cursor: pointer;
    /* width: fit-content; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spin-btn {
    background-color: #6dace4;
    color: white;
    font-size: 0.9rem;
    height: 40px;
    border: none;
    border-radius: 10px;
    padding: 0rem 1rem;
    cursor: pointer;
}

.spin-btn-wrapper {
    display: flex;
    justify-content: center;
}

.claim-reward-btn {
    background-color: #2ecc71;
    color: white;
    font-size: 0.9rem;
    height: 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 0 1rem;
}

.reward-button-wrapper a img {
    width: 20px;
    margin-right: 1rem;
}

.video-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.module-heading {
    color: black;
    font-size: 1.2rem;
}

.video-heading-calender {
    display: flex;
    justify-content: flex-end;
    width: 70%;
    column-gap: 0.8rem;
}

.calender-input-wrapper {
    position: relative;
    width: 50%;
}

.calender-input-wrapper img {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

#dateInput {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 0.6rem 1.3rem;
    color: #626262;
    font-weight: 400;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
    min-width: 200px;
    cursor: pointer;
}

.calendar-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.calendar {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 290px;
    max-width: 400px;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1;
    display: none;
}

.calender-header {
    background-color: #3498db;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#prevBtn,
#nextBtn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    outline: none !important;
}

#monthYear {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

.day {
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.day.current {
    background-color: #3498db;
    color: white;
}

.day.selected {
    background-color: #2ecc71;
    color: white;
}

.create-video-btn {
    color: white !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    padding: 0.6rem 1.3rem;
    background-color: #6dace4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-wrapper {
    min-height: 330px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    width: 100%;
    height: 100%;
    padding: 0.1rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.video-card-img {
    width: 100%;
    height: 180px;
    cursor: pointer;
}

.video-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-card-desc {
    padding: 0 1rem;
}

.video-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
}

.video-card-heading h1 {
    margin: 0;
    font-size: 1.1rem;
    color: #404040;
    width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-card-heading h2 {
    margin: 0;
    font-size: 0.9rem;
    color: #0199db;
}

.video-card-detail p {
    margin: 0;
    color: #626262;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 0.4rem;
}

.video-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    padding-bottom: 1rem;
}

.video-action {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.video-edit-icon {
    cursor: pointer;
}

.video-delete-icon {
    cursor: pointer;
}

.video-replies-btn {
    background-color: #6dace4;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    color: white !important;
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.7rem;
    font-size: 0.9rem;
}

.video-replies-btn img {
    width: 15px;
}

@media screen and (max-width: 576px) {
    .video-heading-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-heading-calender {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        row-gap: 0.8rem;
    }

    .calender-input-wrapper {
        width: 100%;
    }

    .create-video-btn {
        width: 100%;
        font-size: 0.8rem;
    }
}

/* create-video */
.videoActionPage .form-wrapper {
    padding: 2rem 1rem 1rem 1rem;
}

.create-video-form .form-field .upload-file {
    width: 100%;
    height: 180px;
}

.create-video-form .form-field textarea {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background-color: #f9fbff !important;
    outline: none !important;
    box-shadow: none !important;
    padding-left: 1rem;
    height: 120px;
    resize: none;
}

.create-video-form .image-view {
    width: 100%;
    height: 180px;
}

.create-video-form .image-view img.image-viewer {
    width: 100%;
    height: 100%;
}

#loader-section {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.616);

    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.loader1 {
    display: inline-block;
    font-size: 0px;
    padding: 0px;
}

.loader1 span {
    vertical-align: middle;
    border-radius: 100%;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px 2px;
    -webkit-animation: loader1 0.8s linear infinite alternate;
    animation: loader1 0.8s linear infinite alternate;
}

.loader1 span:nth-child(1) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background: rgba(255, 255, 255, 0.6);
}

.loader1 span:nth-child(2) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    background: rgba(255, 255, 255, 0.8);
}

.loader1 span:nth-child(3) {
    -webkit-animation-delay: -0.26666s;
    animation-delay: -0.26666s;
    background: rgb(255, 255, 255);
}

.loader1 span:nth-child(4) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    background: rgba(255, 255, 255, 0.8);
}

.loader1 span:nth-child(5) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background: rgba(255, 255, 255, 0.4);
}

@keyframes loader1 {
    from {
        transform: scale(0, 0);
    }

    to {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes loader1 {
    from {
        -webkit-transform: scale(0, 0);
    }

    to {
        -webkit-transform: scale(1, 1);
    }
}

/* video-detail-page */
.replies-wrapper {
    width: 100%;
    margin: 0 auto;
}

.video-play-container {
    display: flex;
    column-gap: 1rem;
}

.video-play {
    width: 45%;
    cursor: pointer;
}

.video-play video {
    width: 100%;
    border-radius: 10px;
    max-height: 500px;
    height: 50vh;
    object-fit: cover;
}

.video-detail-wrapper {
    width: 55%;
}

.video-detail-heading {
    display: flex;
    justify-content: space-between;
    column-gap: 1rem;
    width: 60%;
}

.video-detail-name {
    width: 70%;
}

.video-detail-name h1 {
    font-size: 1.2rem;
    color: #404040;
    margin: 0;
}

.video-detail-name p {
    font-size: 0.8rem;
    color: #989898;
}

.video-total-replies h1 {
    font-size: 1.2rem;
    color: #404040;
}

.video-reply-card {
    cursor: pointer;
    width: 100%;
    position: relative;
    height: 170px;
}

.video-reply-card img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}

.video-reply-detail {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.video-reply-detail h1 {
    font-size: 0.75rem;
    margin: 0;
    margin-bottom: 0.2rem;
    color: white;
}

.video-reply-detail p {
    font-size: 0.6rem;
    margin: 0;
    color: white;
    font-weight: 300;
}

.video-replies-heading {
    font-size: 1.2rem;
    color: #404040;
}

.video-detail-action a {
    text-decoration: none !important;
}

.video-modal-body {
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.video-modal-close img {
    width: 20px;
}

.video-modal-body video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 90vh;
    height: 90vh;
}

.video-modal-content {
    background-color: transparent;
    border: none !important;
}

@media screen and (min-width: 1700px) {
    .video-reply-card {
        height: 260px;
    }
}

@media screen and (max-width: 767px) {
    .video-play-container {
        flex-direction: column;
        row-gap: 1rem;
    }

    .video-play {
        width: 100%;
    }

    .video-detail-wrapper {
        width: 100%;
    }

    .video-detail-heading {
        width: 100%;
    }
}

/* user */
.verfication-successfull {
    display: none;
}

/* company setting */
.setting-heading h1 {
    color: #6dace4;
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
}

.setting-container {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 3rem 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
    width: 50%;
    margin: 0 auto;
}

.setting-checkbox-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.setting-checkbox-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
    border: 1px solid #e7e7e7;
    padding: 0.8rem;
    border-radius: 10px;
    width: 100%;
}

.setting-checkbox-wrapper label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #404040;
    margin: 0;
}

.setting-save-btn {
    width: 100%;
}

.setting-save-btn button {
    width: 100%;
    background-color: #6dace4;
    color: white;
    outline: none;
    border-radius: 10px;
    border: none;
    padding: 0.85rem 0;
}

.setting-checkbox-wrapper input[type="checkbox"] {
    position: relative;
    width: 60px;
    height: 30px;
    -webkit-appearance: none;
    appearance: none;
    background: #f0f0f0;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    border: 1px solid #e7e7e7;
}

.setting-checkbox-wrapper input[type="checkbox"]::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6dace4;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    transition: 0.5s;
}

.setting-checkbox-wrapper input[type="checkbox"]:checked::before {
    transform: translate(100%, -50%);
}

.setting-checkbox-wrapper input[type="checkbox"]:checked {
    background: #ffffff;
}

.import-btn {
    display: flex !important;
    white-space: nowrap !important;
    height: 45px !important;
    align-items: center !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    justify-content: center !important;
    margin: 0 !important;
}

@media screen and (max-width: 1199px) {
    .setting-container {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .setting-container {
        width: 75%;
    }
}

@media screen and (max-width: 576px) {
    .setting-container {
        width: 100%;
        padding: 1rem;
    }

    .setting-checkbox-wrapper label {
        font-size: 1rem;
    }

    #importForm {
        width: 100%;
    }

    .import-btn {
        width: 100%;
    }
}

.form-field-checkbox {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    height: 30px;
}

.form-field-checkbox label {
    font-size: 0.8rem;
    font-weight: 400;
}

.help-card {
    background-color: white;
    padding: 0.8rem 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.help-card-profile {
    display: flex;
    flex-direction: column;
    row-gap: 0.2rem;
    overflow: hidden;
    width: calc(100% - 70px);
}

.help-card-action {
    width: 60px;
    display: flex;
    column-gap: 1rem;
    justify-content: flex-end;
}

.help-card-action .reply-btn {
    text-decoration: none;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
}

.help-card-action .reply-btn img {
    width: 20px;
}

.help-card-profile h1 {
    display: flex;
    align-items: flex-start;
    column-gap: 5px;
    margin: 0;
    color: #404040;
}

.help-card-profile h1 img {
    width: 16px;
    min-width: 16px;
}

.help-card-profile h1:nth-of-type(1) {
    font-size: 0.9rem;
    font-weight: 500;
}

.help-card-profile h1:nth-of-type(2) {
    font-weight: 400;
    display: flex;
    column-gap: 5px;
    font-size: 0.9rem;
}

.message-reply-button {
    text-align: right;
}

.help-card-profile .message-detail span {
    font-size: 0.9rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

.help-card-profile .message-reply {
    background-color: #0199db;
    padding: 0.5rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-left: 2rem;
    width: fit-content;
    /* display: none; */
}

.help-card-profile .message-reply span {
    word-break: break-all;
    font-size: 0.9rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 400;
    color: white;
}

/* tab */
.filter-tabs-two {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.tab-list-two::-webkit-scrollbar {
    width: 0px;
    height: 1px;
}

.tab-list-two::-webkit-scrollbar-track {
    background-color: transparent;
}

.tab-list-two::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 5px;
}

.tab-list-two::-webkit-scrollbar-thumb:hover {
    background-color: transparent;
}

.tab-box-two {
    background: white;
    width: fit-content;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    justify-content: center;
}

/* .tab-list-wrapper .tab-box-two:last-of-type {
    background: rgb(240, 240, 240);
} */
.tab-box-two:hover {
    background-color: rgb(235, 233, 233);
}

.tab-list-video .tab-box-two.active {
    background: #0199db;
}

.tab-list-video .tab-box-two.active h1,
.tab-list-video .tab-box-two.active ul li {
    color: white;
}

.tab-box-two h1 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6dace4;
    white-space: nowrap;
    margin-bottom: 0;
}

.back-button img,
.next-button img {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tab-list-two {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    column-gap: 0.5rem;
}

.back-button,
.next-button {
    background-color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.back-button {
    left: 0;
}

.next-button {
    right: 0;
}

.tab-box-two ul {
    list-style: none;
    margin: 0;
}

.tab-box-two ul li {
    display: flex;
    column-gap: 5px;
    align-items: center;
    font-size: 0.8rem;
    color: #404040;
    white-space: nowrap;
}

.tab-box-two ul li img {
    width: 15px;
    min-width: 15px;
    height: 15px;
}

/* record */
.record-frame {
    width: 150px;
    height: 150px;
    /* background-color: red; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
}

.record-frame-top-left {
    width: 30%;
    height: 4px;
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
}

.record-frame-top-left-side {
    width: 4px;
    height: 30%;
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
}

.record-frame-top-right {
    width: 30%;
    height: 4px;
    background-color: white;
    position: absolute;
    right: 0;
    top: 0;
}

.record-frame-top-right-side {
    width: 4px;
    height: 30%;
    background-color: white;
    position: absolute;
    right: 0;
    top: 0;
}

.record-frame-bottom-left {
    width: 30%;
    height: 4px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: 0;
}

.record-frame-bottom-left-side {
    width: 4px;
    height: 30%;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: 0;
}

.record-frame-bottom-right {
    width: 30%;
    height: 4px;
    background-color: white;
    position: absolute;
    right: 0;
    bottom: 0;
}

.record-frame-bottom-right-side {
    width: 4px;
    height: 30%;
    background-color: white;
    position: absolute;
    right: 0;
    bottom: 0;
}

#record-video {
    width: 100%;
    background: black;
    border-radius: 10px;
    height: 100%;
    min-height: 200px;
    max-height: 500px;
}

.controls {
    display: flex;
    width: 100%;
    align-items: center;
    column-gap: 1rem;
}

.controls .controls-btn {
    display: flex;
    column-gap: 1rem;
}

.timer {
    color: #6dace4;
    visibility: hidden;
    font-size: 1.5rem;
    font-weight: 500;
}

.controls .controls-btn button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6dace4;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    color: white;
    font-size: 1rem;
}

.pause-btn,
.stop-btn {
    visibility: hidden;
}

.controls .controls-btn button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.video-container {
    display: none;
}

.start-recording {
    background-color: #2ecc71;
    color: white;
    height: 50px;
    max-width: 200px;
    width: 100%;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.video-record-wrapper {
    position: relative;
}

.record-icon-wrapper {
    display: flex;
    position: absolute;
    left: 10px;
    top: 10px;
    align-items: center;
    column-gap: 0.5rem;
    visibility: hidden;
}

.visible-element {
    visibility: visible;
}

.record-icon-wrapper .record-icon {
    width: 15px;
    min-width: 15px;
    height: 15px;
    min-height: 15px;
    background-color: red;
    border-radius: 50%;
}

.record-icon-wrapper h1 {
    color: white;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* modal */
.confirm-modal-content {
    border-radius: 10px;
}

.confirm-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.confirm-modal-body h1 {
    font-size: 1.3rem;
    max-width: 300px;
    margin: 0 auto;
    color: #212121;
}

.confirm-modal-body-btn button {
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background: white;
    color: #6dace4;
    font-size: 1rem;
    border: 1px solid #6dace4;
}

.confirm-modal-body-btn button:hover {
    background: #6dace4;
    color: white;
}

/* userdashboard */
.user-video-section video {
    width: 100%;
    max-height: 550px;
    border-radius: 10px;
}

.user-video-detail h1 {
    font-size: 1.3rem;
    color: #404040;
}

.user-video-detail p {
    font-size: 1rem;
    color: #626262;
}

.user-record-video a {
    background-color: #ff525c;
    text-decoration: none !important;
    color: white !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.3rem;
    width: fit-content;
    column-gap: 0.7rem;
    font-size: 0.9rem;
    margin-left: auto;
    cursor: pointer;
}

.user-record-video a img {
    width: 1.2rem;
}

@media screen and (max-width: 576px) {
    .user-record-video a {
        margin: 0 auto;
    }
}

.record-heading h1 {
    font-size: 1.5rem;
    color: #212121;
    margin: 0;
}

.stat-card-wrapper {
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.7rem;
    padding: 1rem;
    color: #404040;
    height: 100%;
    min-height: 120px;
}

.stat-card-wrapper-outer:nth-child(even) .stat-card-wrapper {
    background-image: linear-gradient(315deg, #6dace4 0%, #08c8f6 74%);
}

.stat-card-wrapper-outer:nth-child(odd) .stat-card-wrapper {
    background-image: linear-gradient(315deg, #00529b 0%, #02a2ff 74%);
}

.badge-primary {
    background-color: #0199db !important;
}

.stat-card-wrapper h1 {
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
    color: white;
}

.stat-card-wrapper p {
    font-size: 1.4rem;
    margin: 0;
    color: white;
}

/* spinner */
.outer-wrapper {
    position: relative;
    perspective: 500px;
}

.div-one {
    transform-style: preserve-3d;
    transform: rotateX(54deg);
}

.div-two {
    transform-style: preserve-3d;
    transform: rotateX(22deg);
}

.div-three {
    transform-style: preserve-3d;
    transform: rotateX(0deg);
}

.div-four {
    transform-style: preserve-3d;
    transform: rotateX(-22deg);
}

.div-five {
    transform-style: preserve-3d;
    transform: rotateX(-54deg);
}

.outer-one {
    width: 100%;
    bottom: -14px;
}

.outer-two {
    transform: scale(1.12);
    width: 96.7%;
}

.outer-three {
    transform: scale(1.12);
    padding: 0.3rem 0;
    width: 99%;
}

.outer-four {
    transform: scale(1.12);
    width: 96.7%;
}

.outer-five {
    transform: scale(1);
    width: 100%;
    bottom: 14px;
}

.all-images-wrapper {
    display: flex;
}

.image-wrapper {
    width: 20%;
    min-height: 100%;
    padding: 0.5rem;
    border: 1px solid #0000002c;
    position: relative;
    background-color: white;
}

.overlay-div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    height: 90%;
    /* background-color: rgba(0, 0, 0, 0.445); */
    z-index: 10;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.hide-overlay-div {
    height: 0px;
    width: 0px;
}

.overlay-div img {
    height: 100%;
    max-height: 25px;
    pointer-events: none;
}

.image-wrapper .spin-images {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    /* filter: blur(3px); */
    transition: all 1s ease-in-out;
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* max-width: 500px; */
    position: relative;
}

.zoom-view {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.zoom-view img {
    /* width: 100%;
    height: 100%; */
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: all 0.3s;
    transform: scale(0);
    border-radius: 10px;
    transition: all 1s ease-in-out;
    animation: imgShowAnim 1s forwards;
}

/* reward */
.reward-card {
    background-color: white;
    padding: 0.5rem 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
}

.reward-table-content {
    width: 19%;
}

.reward-table-content h1 {
    color: #404040;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 0.1rem;
}

.reward-table-content h1 span {
    color: #404040;
    font-weight: 400;
    font-size: 0.8rem;
}

.reward-table-content h1 span.day-number {
    background-color: #2ecc71;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-table-content h1 img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
}

.spinner-outer-wrapper {
    position: relative;
    top: -500px;
    animation: spinnerShowAnim 2s forwards;
}

.flip-anim-class img {
    animation: flipAnimation 2s forwards;
}

@keyframes flipAnimation {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }

    50% {
        transform: rotateY(180deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(360deg);
        opacity: 1;
    }
}

.action-column {
    width: 15%;
}

.action-column img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 0 !important;
    cursor: pointer;
    object-fit: contain !important;
}

.action-column h1 {
    text-align: center;
}

.discription-content {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
}

.add-reward-btn {
    white-space: nowrap;
    height: 45px;
    border-radius: 10px;
    background-color: #6dace4;
    color: white;
    border: 1px solid #6dace4 !important;
    box-shadow: none;
    font-size: 0.9rem;
    padding: 0 1rem;
}

.reward-view-image {
    width: 100%;
    min-width: 150px;
    height: 180px;
    border: 1px dashed #b6b6b6;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.reward-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-column {
    width: 15%;
}

.description-column {
    width: 50%;
}

.title-column span {
    word-break: break-word;
}

.reward-column {
    width: 15%;
}

@media screen and (max-width: 576px) {
    .reward-card {
        flex-direction: column;
        align-items: center;
        row-gap: 0.5rem;
    }

    .reward-table-content {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .reward-table-content h1 {
        width: 100%;

        justify-content: space-between;
        flex-direction: row;
        align-items: center;
        column-gap: 0.5rem;
    }
}

.reward-animation-class {
    animation: rewardAnimation 0.5s infinite;
}

@keyframes rewardAnimation {
    0% {
        border: 5px solid red;
    }

    50% {
        border: 5px solid yellow;
    }

    100% {
        border: 5px solid red;
    }
}

/* new spinner
.d-none {
    display: none !important;
} */

#stage {
    margin: 0 auto;
    width: 900px;
    /* padding: 0 0 40px; */
    position: relative;
}

.result-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 10px;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.8rem;
    z-index: 20;
    animation: noRewardAnim 1s forwards;
}

@media screen and (max-width: 576px) {
    .result-modal {
        width: 150px;
        height: 150px;
    }

    .reward-modal {
        width: 220px;
        height: 200px;
    }

    .result-modal img {
        width: 40px !important;
    }

    .reward-modal img {
        width: 80px !important;
    }

    .result-modal h1 {
        font-size: 1.1rem;
    }
}

@keyframes noRewardAnim {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.result-modal img {
    width: 80px;
}

.result-modal h1 {
    font-size: 1.5rem;
    margin: 0;
}

.reward-modal img {
    width: 120px;
    border-radius: 20px;
}

.reward-modal-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.5rem;
}

.reward-reveal-style {
    font-size: 1.8rem;
    padding: 0.5rem;
}

.reward-reveal {
    transition: all 0.5s ease-in-out;
}

.reward-inner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.5rem;
}

.reward-inner-text p {
    margin: 0;
}

.better-luck {
    font-size: 1rem;
}

.spinner-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.perspective-on {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}

.perspective-off {
    -webkit-perspective: 0;
    -moz-perspective: 0;
    perspective: 0;
}

#rotate {
    margin: 0 auto 0;
    width: 700px;
    height: 500px;
    padding-top: 225px;
    /* Ensure that we're in 3D space */
    transform-style: preserve-3d;
}

.ring {
    margin: 0 auto;
    height: 130px;
    width: 140px;
    float: left;
    transform-style: preserve-3d;
}

.slot {
    position: absolute;
    height: 130px;
    width: 140px;
    box-sizing: border-box;
    opacity: 0.9;
    color: rgba(0, 0, 0, 0.9);
    background: #fff;
    border: solid 2px #000;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (max-width: 1199px) {
    #rotate {
        width: 540px;
        height: 400px;
    }

    .ring {
        height: 98px;
        width: 108px;
    }

    .slot {
        height: 98px;
        width: 108px;
    }

    #stage {
        width: 730px;
    }
}

@media screen and (max-width: 767px) {
    #rotate {
        width: 400px;
        height: 370px;
    }

    .ring {
        height: 70px;
        width: 80px;
    }

    .slot {
        height: 70px;
        width: 80px;
    }

    #stage {
        width: 576px;
    }

    .go {
        margin-top: 120px !important;
        font-size: 18px !important;
        height: 40px !important;
    }

    .cross-image {
        width: 40px !important;
    }
}

@media screen and (max-width: 576px) {
    #rotate {
        width: 300px;
        height: 277px;
    }

    .ring {
        height: 50px;
        width: 60px;
    }

    .slot {
        height: 50px;
        width: 60px;
    }

    #stage {
        width: 420px;
    }

    .go {
        font-size: 16px !important;
    }

    .cross-image {
        width: 30px !important;
    }
}

@media screen and (max-width: 420px) {
    #rotate {
        width: 270px;
        height: 270px;
    }

    .ring {
        height: 44px;
        width: 54px;
    }

    .slot {
        height: 44px;
        width: 54px;
    }

    #stage {
        width: 320px;
    }
}

.backface-on {
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    backface-visibility: visible;
}

.slot p {
    font-size: 36px;
    font-weight: bold;
    line-height: 80px;
    margin: 0;
    text-align: center;
}

.go {
    display: block;
    margin-top: 100px;
    padding: 5px 30px;
    font-size: 20px;
    cursor: pointer;
    height: 50px;
}

.tilted {
    transform: rotateY(45deg);
}

/*=====*/
.spin-0 {
    transform: rotateX(-3719deg);
}

.spin-1 {
    transform: rotateX(-3749deg);
}

.spin-2 {
    transform: rotateX(-3779deg);
}

.spin-3 {
    transform: rotateX(-3809deg);
}

.spin-4 {
    transform: rotateX(-3839deg);
}

.spin-5 {
    transform: rotateX(-3869deg);
}

.spin-6 {
    transform: rotateX(-3899deg);
}

.spin-7 {
    transform: rotateX(-3929deg);
}

.spin-8 {
    transform: rotateX(-3959deg);
}

.spin-9 {
    transform: rotateX(-3989deg);
}

.spin-10 {
    transform: rotateX(-4019deg);
}

.spin-11 {
    transform: rotateX(-4049deg);
}

.cross-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 70px;
    height: 70px;
}

/*=====*/
@keyframes back-spin {

    /*0%    { transform: rotateX(0deg); }*/
    100% {
        transform: rotateX(30deg);
    }
}

@keyframes tiltin {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(45deg);
    }
}

@keyframes tiltout {
    0% {
        transform: rotateY(45deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

@keyframes spin-0 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3719deg);
    }
}

@keyframes spin-1 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3749deg);
    }
}

@keyframes spin-2 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3779deg);
    }
}

@keyframes spin-3 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3809deg);
    }
}

@keyframes spin-4 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3839deg);
    }
}

@keyframes spin-5 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3869deg);
    }
}

@keyframes spin-6 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3899deg);
    }
}

@keyframes spin-7 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3929deg);
    }
}

@keyframes spin-8 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3959deg);
    }
}

@keyframes spin-9 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-3989deg);
    }
}

@keyframes spin-10 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-4019deg);
    }
}

@keyframes spin-11 {
    0% {
        transform: rotateX(30deg);
    }

    100% {
        transform: rotateX(-4049deg);
    }
}

/* video-size */
.video-wrapper {
    position: relative;
}

.video-size-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
}

.video-size-wrapper button {
    background: #0199db;
    border: none;
    outline: none;
    box-shadow: none;
    height: 40px;
    padding: 0 1rem;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.video-size-wrapper button.radius {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.video-size-menu.radius {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.video-size-wrapper .video-size-menu {
    list-style: none;
    padding-left: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    background-color: white;
    border-radius: 5px;
    display: none;
}

.video-size-wrapper .video-size-menu li {
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid #00000025;
    padding: 0.5rem 0;
    cursor: pointer;
}

.video-size-wrapper .video-size-menu li:hover {
    background-color: #f8f9fd;
}

.video-size-wrapper .video-size-menu li:last-of-type {
    border: none;
}