.buttonYellow {
    width: 100%;
    padding: 8px;
    background: #e39f20;
    border-radius: 0;
    border: 0px solid #151e2f;
    color: #fff;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    overflow: hidden;
    transition: 500ms all;
}

.buttonYellow:hover,
.buttonYellow:focus {
    box-shadow: 0 0.5em 0.5em -0.4em #d99100;
    color: #fff;
    transition: 500ms all;
}

.buttonBlack {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #151e2f;
    border: 1px solid #151e2f;
    border-radius: 0px;
    color: #fff;
    font-size: 1rem;
}

.buttonBlack:hover,
.buttonBlack:focus {
    border: 1px solid #e39f20;
    background: #e39f20;
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
    transition: 250ms all;
    color: #fff;
}


/* Clickable Button */

.custom-click-default-btn {
    width: 100%;
    padding: 6px 10px;
    background: #151e2f;
    border: 1px solid #151e2f;
    border-radius: 0px;
    color: #fff;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 150px;
    text-align: center;
}

.custom-click-default-btn::-moz-focus-inner {
    border: none;
}


/* Overlay */

.custom-click-default-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}


/* Ripple */

.custom-click-default-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    /* Safari */
    height: 32px;
    /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}


/* Hover, Focus */

.custom-click-default-btn:hover {
    border: 1px solid #e39f20;
    background: #e39f20;
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
    transition: 250ms all;
    color: #fff;
}


/* Active */

.custom-click-default-btn:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.custom-click-default-btn:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}


/* Disabled */


/* .custom-click-default-btn:disabled {
   color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
   background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
   box-shadow: none;
   cursor: initial;
} */


/* .custom-click-default-btn:disabled::before {
   opacity: 0;
}

.custom-click-default-btn:disabled::after {
   opacity: 0;
} */


/* Clickable Button */


/* Clickable Button */

.custom-click-secondory-btn {
    width: 100%;
    padding: 6px 10px;
    border-radius: 5px;
    background: #e39f20;
    border: 1px solid #e39f20;
    border-radius: 0px;
    color: #fff;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    overflow: hidden;
}

.custom-click-secondory-btn::-moz-focus-inner {
    border: none;
}

.custom-click-secondory-btn.color-revert,
.custom-click-default-btn.color-revert:hover {
    border: 1px solid #151e2f;
    background: #151e2f;
}

.custom-click-default-btn.color-revert {
    border: 1px solid #e39f20;
    background: #e39f20;
}

.accept-btn {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.reject-btn {
    background-color: #ff0000;
    border-color: #ff0000;
}


/* Overlay */

.custom-click-secondory-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}


/* Ripple */

.custom-click-secondory-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    /* Safari */
    height: 32px;
    /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}


/* Hover, Focus */

.custom-click-secondory-btn:hover {
    border: 1px solid #151e2f;
    background: #151e2f;
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
    transition: 250ms all;
    color: #fff;
}

.custom-click-secondory-btn.color-revert:hover {
    background: #e39f20;
    border: 1px solid #e39f20;
}


/* Active */

.custom-click-secondory-btn:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.custom-click-secondory-btn:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}


/* Disabled */

.custom-click-secondory-btn:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.custom-click-secondory-btn:disabled::before {
    opacity: 0;
}

.custom-click-secondory-btn:disabled::after {
    opacity: 0;
}


/* Clickable Button */


/* Clickable Button */

.custom-click-social-btn {
    width: 100%;
    padding: 8px 10px;
    border-radius: 0px;
    color: #fff;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    overflow: hidden;
}

.custom-click-social-btn::-moz-focus-inner {
    border: none;
}


/* Overlay */

.custom-click-social-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}


/* Ripple */

.custom-click-social-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    /* Safari */
    height: 32px;
    /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}


/* Hover, Focus */

.custom-click-social-btn:hover {
    text-decoration: none;
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
    transition: 250ms all;
    color: #fff;
}


/* Active */

.custom-click-social-btn:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.custom-click-social-btn:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}


/* Disabled */

.custom-click-social-btn:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.custom-click-social-btn:disabled::before {
    opacity: 0;
}

.custom-click-social-btn:disabled::after {
    opacity: 0;
}


/* Clickable Button */

.btn-clear-custom {
    background-color: #d3d3d3;
    border: 1px solid #d3d3d3;
    color: #505050;
}

.btn-clear-custom:hover {
    border: 1px solid #151e2f;
    background: #151e2f;
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
    transition: 250ms all;
    color: #fff;
}

.btn-custom {
    background-color: #151e2f;
    color: #fff;
}

.btn-custom:hover {
    border: 1px solid #e39f20;
    background: #e39f20;
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
    transition: 250ms all;
    color: #fff;
}

.btn-color-facebook {
    background-color: #3c5a99;
}

.btn-color-googlePlus {
    background-color: #f95341;
}

.btn-color-linkedIn {
    background-color: #007ab6;
}

.gridHeader {
    font-size: 1rem;
    background-color: #e39f20;
    color: #fff;
    padding: 8px 10px !important;
}

.gridTextColor {
    color: #e39f20;
}

.gridBtn {
    min-width: 170px;
    border: none;
    padding: 8px 0px;
}

.gridBtn:hover {
    transition: 500ms all;
}

.gridBtn-1 {
    background-color: #151e2f;
    color: #fff;
}

.gridBtn-2 {
    background-color: #e39f20;
    color: #fff;
}

.gridBtn-3 {
    background-color: #8b9ab7;
    color: #fff;
}

.gridNotifyTime {
    color: #8b9ab7;
    font-weight: 700;
}

.gridCusMarT {
    margin-top: 14px;
}


/* Table as Theme */

.tableTheme thead tr {
    background-color: #e39f20;
    color: #fff;
}

.tableTheme tbody tr {
    border-bottom: 1px solid #bbb;
}

.tableTheme tbody tr td button:hover,
.btnTableGuild:hover {
    transition: 500ms all;
}

.theme-table-padding td {
    padding: 10px 0.1px !important;
}

.theme-table-btn-width {
    width: 120px;
}

.tableTheme .tableCategory {
    color: #e39f20;
    font-weight: 600;
}

.tableTheme .tableCategoryPara {
    color: #000;
    font-weight: 600;
}

.tableTheme .h-p-thead-padding td {
    padding: 10px 10px !important;
}

.tableTheme .h-p-tbody-padding td {
    padding: 20px 10px !important;
}


/* Table as Theme */


/* scroll */


/* width */

::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #fff;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #e39f20;
}


/* scroll */


/* Owl Carousel */


/* .owl-carousel {
    max-width: 1200px;
    width: 100%;
    padding: 30px 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

.owl-nav button span {
    font-size: 30px;
    height: 100%;
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav {
    margin: 0;
}

.btn-wrap {
    text-align: center;
    width: 100%;
}

.owl-carousel button {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.owl-theme .owl-nav .disabled,
button.disabled {
    opacity: 0.6;
} */


/* Owl Carousel */

a:hover {
    text-decoration: none;
}

.topicsCustom {
    background-color: #e39f20;
    font-size: 1.1rem;
    color: #fff;
    padding: 8px 10px;
    margin-bottom: 0.5rem;
}

.forum-topic-bg {
    background-image: url(../images/Dashboard/forum-topic/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    min-height: auto;
    border: 1px solid #e39f20;
    padding: 10px 20px;
}

.forum-topic-bg:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: 500ms all;
}


/* filter dropdown */

.dropbtn {
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 4px 10px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* filter dropdown */


/* LAWYER PROFILE PAGE */

.card {
    height: 100%;
}

.box {
    padding: 20px;
    background-color: #f5f6fa;
    min-height: 430px;
    display: flex;
    flex-direction: column;
}

.profile-text {
    line-height: 16px;
}

.High-btn {
    height: 25px;
    display: flex !important;
    align-items: center !important;
    width: 63px;
    justify-content: center !important;
}

.box-para {
    margin-bottom: 20px;
    font-size: 16px;
    margin-top: 10px;
}

.end-btn {
    display: flex;
    align-items: baseline !important;
    justify-content: end;
}

.cusReferralCount {
    border-radius: 100px;
    background-color: #e39f20;
    color: #fff;
    padding: 2px 8px;
}


/* LAWYER PROFILE CSS END */

.tableTheme1 {
    background-color: #e39f20;
    padding: 0.5rem 1rem;
}

.box-5 {
    padding: 10px;
    background-color: #f5f6fa;
    min-height: 423px;
}

.img-btn1 {
    background-color: #151e2f !important;
}


/* SETTINGS CSS */

.tableTheme-1 {
    background-color: #e39f20;
    padding: 0.5rem 1rem;
}

.setting-option-box {
    margin-top: 0.5rem;
    background-color: #f5f6fa;
    padding: 10px 20px 10px 10px;
}


/* SETTINGS CSS */


/* Create Post CSS */

.img-btn {
    background-color: #151e2f !important;
}

.draft-btn {
    background-color: #eaeaea !important;
    width: 100%;
    padding: 5px 5px;
    background: #151e2f;
    border-radius: 0px;
    color: #fff;
    font-size: 1rem;
}

.pub-btn {
    width: 100%;
    padding: 5px 5px;
    border-radius: 5px;
    background: #151e2f;
    border: 1px solid #151e2f;
    border-radius: 0px;
    color: #fff;
    font-size: 1rem;
    justify-content: space-between;
    transition: all 0.3s ease-in-out !important;
}

.pub-btn:hover,
.pub-btn:focus {
    background: #e39f20;
    border-color: #e39f20;
}

.add-btn {
    padding: 5px 5px;
    border-radius: 5px;
    background: #151e2f;
    border: 1px solid #151e2f;
    border-radius: 0px;
    color: #fff;
    font-size: 1rem;
    justify-content: space-between;
}


/* Create Post CSS END */


/* QUESTION FORM CSS */

.Questionbox-1 {
    padding: 20px;
    background-color: #f5f6fa;
    min-height: 450px;
}

.form-check-input:checked {
    color: #e39f20 !important;
    background-color: #e39f20 !important;
    border-color: #e39f20 !important;
}

.specify-color {
    accent-color: #e39f20 !important;
    border-color: #e39f20 !important;
}


/* Chat Search Field */

.chatHearder {
    background-color: #eff0f2;
    padding: 9.5px;
    text-align: end;
    font-size: 1rem;
}

.chatLeft {
    padding: 10px;
    background-color: #fbfbfb !important;
}

.cusShadow {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
}

.chatRightShareBtn {
    background-color: #fff;
    border: none;
}

.chatRightShareBtnActive {
    border-bottom: 2px solid #e39f20;
}

.chatAddUserBtn {
    background-color: #fbedd2;
    border: none;
    border-radius: 5px;
    color: #e39f20;
    padding: 5px 20px;
}

.startVideoCall {
    display: none;
}

.startVideoIcon:hover,
.startChatIcon:hover {
    cursor: pointer;
    transform: scale(0.9);
    transition: 800ms all;
}


/* user carousel */

.main-content {
    position: relative;
}

.main-content .owl-theme .custom-nav {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
}

.main-content .owl-theme .custom-nav .owl-prev,
.main-content .owl-theme .custom-nav .owl-next {
    position: absolute;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content .owl-theme .custom-nav .owl-prev i,
.main-content .owl-theme .custom-nav .owl-next i {
    font-size: 1.5rem;
    color: #e39f20;
    font-weight: 100;
}

.main-content .owl-theme .custom-nav .owl-prev {
    left: -30px;
}

.main-content .owl-theme .custom-nav .owl-next {
    right: -30px;
}


/* .custom-2-nav .owl-prev,
.custom-2-nav .owl-next {
    font-size: 1.5rem !important;
    background-color: #fff !important;
    border: 0;
    color: #151E2F !important;
} */


/* user carousel */

.hoverPointer:hover {
    cursor: pointer;
    transform: scale(0.89);
    transition: 500ms all;
}

.statusBtn {
    background-color: #fff !important;
    color: #e39f20 !important;
    border: 1px solid #e39f20 !important;
}

.statusBtn:hover,
.statusBtn:focus,
.statusBtn:active {
    background-color: #e39f20 !important;
    color: #fff !important;
    border: 1px solid #e39f20 !important;
}


/* MANAGE QUETIONS */

.box-7 {
    padding: 12px;
    background-color: #f5f6fa;
    min-height: 390px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}


/* Dropdown Button */

.dd-button {
    border: 1px solid grey;
    border-radius: 0;
    font-size: small;
    background-color: #f5f6fa;
    width: 118px;
    padding: 3px 3px;
}

.dd-input+.dd-menu {
    display: none;
}

.dd-input:checked+.dd-menu {
    display: block;
}

.dd-input {
    display: none;
}


/* DROPDOWN */

.form-control-ques {
    display: block;
    width: 100%;
    height: 40px;
    padding: 1.5rem 1.375rem;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 0.83;
    color: #495057;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 0px solid #d9dfe7;
    border-radius: 0px;
    -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.Questionbox-2 {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background-color: #ffffff;
    min-height: 200px;
}

.btnTableGuild2 {
    background-color: #151e2f !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 60px !important;
    width: 335px;
}


/* MANAGE QUETIONS */

.secondaryHeaderFontSize {
    font-size: 1.3rem !important;
    font-weight: 600;
}


/* Custom Checkbox */

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.styled-checkbox:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #e39f20;
}

.styled-checkbox:hover:before {
    opacity: 0.8;
}

.styled-checkbox:checked:before {
    background: #e39f20;
}

.styled-checkbox:disabled {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0px 0 white, 4px -2px 0 white, 4px 0px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white, 4px -10px 0 white;
    transform: rotate(45deg);
}


/* Custom Checkbox */

.customShadow {
    box-shadow: 0px 1px 35px -20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 1px 35px -20px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 35px -20px rgba(0, 0, 0, 0.5);
}

.input-icon-container {
    padding-bottom: 1em;
}

.right-inner-addon {
    position: relative;
}

.right-inner-addon input {
    padding-right: 35px !important;
}

.right-inner-addon img {
    position: absolute;
    right: 0px;
    padding: 15px;
    pointer-events: none;
}

.right-inner-addon-b {
    position: relative;
}

.right-inner-addon-b input {
    padding-right: 35px !important;
}

.right-inner-addon-b img {
    position: absolute;
    right: 0px;
    padding: 9px 12px;
    pointer-events: none;
}

.auth-bg-section {
    background-image: url(../images/login-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #6e00ff;
}

.profile-status-position {
    position: relative;
    top: -50px;
    right: -90px;
}

.profile-action-position {
    position: relative;
    top: -60px;
}

.h-p-button-outline {
    border: 1px solid #e39f20;
    color: #e39f20;
    padding: 6px 0px;
    background-color: #fff;
}

.fw-theme-bold {
    font-weight: 600;
}

.status-complete {
    background-color: #dcffdf;
    color: #06ab48;
    padding: 5px 10px;
}

.dashboard-bg {
    background-image: url(../images/Dashboard/dashboard_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
}

.homeCardCus:hover {
    text-decoration: none;
}

.sideBar-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin: 20px 0 40px 10px;
}

.sideBar-logout:hover {
    text-decoration: none;
    color: #fff;
}

.pendingBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fbe1b0;
    border-radius: 6.09045px;
    width: 100px;
    height: 39px;
    border-style: none;
    padding: 10px 10px;
}

.line-dec {
    width: 150%;
    height: 1px;
    background-color: #151e2f;
}


/* UPLOAD FILES */

.border-container {
    height: 180px;
    border: 2px dashed #e39f20;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.border-container p {
    color: #e39f20;
    font-weight: 500;
    font-size: 24px;
}


/* UPLOAD FILES */

.theme-link {
    color: #000000 !important;
}

.theme-link:hover {
    color: #000000 !important;
    text-decoration: none !important;
}

.dashboard-screen-height {
    height: 85vh;
}

.Lawfirm-table td,
.Lawfirm-table th {
    padding: 15px;
}

.pend-btn {
    padding: 3px 0;
    width: 75px;
    height: 28px;
    background-color: #f0ad4e;
}

.Accept-btn {
    padding: 3px 0;
    width: 75px;
    height: 28px;
    background-color: #5cb85c;
}

.redcross {
    cursor: pointer;
}

#file-browser {
    cursor: pointer;
}


/* desktop Media Query */

@media screen and (min-width: 1024px) {}


/* desktop Media Query */


/* tablet Media Query */

@media screen and (min-width: 767px) and (max-width: 1023px) {}


/* tablet Media Query */


/* Mobile Media Query */

@media screen and (max-width: 767px) {
    table {
        width: 100%;
        display: block;
        overflow-y: scroll !important;
    }
    .gridHeaderMargin {
        margin: 0 !important;
    }
    .theme-table-padding td {
        padding: 10px 7px;
    }
}


/* Mobile Media Query */

#addQuestions {
    cursor: pointer;
}

.profile-status-position-1 {
    position: relative;
    top: -26px;
}

.profile-status-position-2 {
    text-align: end;
    position: relative;
    bottom: -9px;
}

@media screen and (min-width: 414px) and (max-width: 896px) {}

.clrBlack {
    color: #000 !important;
}

.btn-width {
    min-width: 150px;
    text-align: center;
}

.prof-box {
    position: relative;
    width: auto;
    margin: 0 auto !important;
}

.veri {
    position: absolute;
    bottom: 60px;
    right: -30px;
}

.forumDes {
    min-height: 43px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inv-prev tr td:last-child {
    text-align: right;
}



/*custom css*/
#overlay1{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgb(0 0 0 / 61%); /* Semi-transparent black */z-index:998; /* Just behind the modal */display:none; /* Hidden by default */}

/* Simple styling for modal */
.new-modal{display:none;}
.visible{display:block;}
#timeModal1{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background-color:white;padding:3rem 1rem;box-shadow:0 0 10px rgba(0,0,0,0.1);z-index:1000;border-radius:6px;}
#timeModal1 h3{margin-bottom:1rem;font-size:2rem;font-weight:600;}
#timeModal1 input{display:block;margin-bottom:10px;width:100%;}
#submitTime:disabled{background-color:#ccc;cursor:not-allowed;}
.time-prnt{}
.time-prnt p.secondaryHeaderFontSize{margin:1rem 0 1.5rem 0;}
.time-prnt table{}
.time-prnt table tbody{}
.time-prnt table tbody tr{}
.time-prnt table tbody tr td{}
.time-prnt table tbody tr td span{color:red;}
.time-prnt table tbody tr td span.off{color:red;}
.time-prnt table tbody tr td:last-child{text-align:end;}
.time-prnt table tbody tr td label.switch{}
#timeModal .btn-close{position:absolute;right:-20px;top:-20px;}
#timeModal .feild-wrap{}
#timeModal .feild-wrap input{width:100%;}
#timeModal button#submitTime{margin:auto;display:table;background:#000;color:#fff;border:0;font-size:1.2rem;padding:0.2rem 1.2rem;margin-top:20px;}
#timeModal1 h3 span{color:#e39f20;}
#timeModal1 button#closeModal{position:absolute;right:-10px;background-color:#e39f20!important;top:-15px;width:30px;height:30px;border-radius:50%;outline:none;border:0;font-size:18px;font-weight:500;}
#timeModal1 label{font-size:1rem;color:#000;}
.time-prnt button#submitHours1{width:100%;padding:6px 10px;background:#151e2f;border:1px solid #151e2f;border-radius:0px;color:#fff;font-size:1rem;position:relative;display:inline-block;box-sizing:border-box;overflow:hidden;min-width:150px;text-align:center;}
.time-prnt button#submitTime1{border:0;outline:0;}
.new-modal{}
.new-modal 
button#submitTime1{border:0;outline:none;background:#000;color:#fff;font-size:1rem;line-height:1.5;padding:0.3em 1.5em;border-radius:5px;margin-top:1em;}
#timeModal1 button#closeModal:hover{background-color:gray!important;}
div#confirmModal{}
div#confirmModal .modal-content{text-align:center;padding:2em 2em 4em 2em;}
div#confirmModal .modal-content .modal-header{background:#fff;border:0;justify-content:center;width:100%;}
div#confirmModal .modal-content .modal-footer{background:#fff;border:0;justify-content:center;padding:0;margin-top:2rem;gap:20px;}
div#confirmModal .modal-content .modal-body{}
div#confirmModal .modal-content button.btn-close{position:absolute;right:-10px;top:-10px;}
div#confirmModal .modal-content .modal-header h5#confirmModalLabel{font-size:2rem;font-weight:500;}
div#confirmModal .modal-content .modal-body p{font-size:2rem;line-height:1.5;font-weight:400;margin:0;}
div#confirmModal .modal-content .modal-footer button{font-size:1rem;border:0;margin:0;padding:0.3rem 1.2rem;transition:0.4s linear;}
.btn-yellow{background:#e39f20;}
.btn-blue{background:#151E2F;}
div#confirmModal .modal-content .modal-footer button:hover{background:#000;transform:translateY(-10px);}

.custom-click-default-btn:disabled {pointer-events: none;opacity: 0.5}
p#timerText {
    font-size: 1.4rem;
    color: red;
}

input{outline: none !important}
.form-control:focus, .hover-search-form input.hover-search-input:focus{border-color:transparent; }
.otp-inputs input::placeholder {opacity: 0.5; }