/* Global Styles */
:root {
    --mainColor: #FDC46F;
    --secColor: #009647;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    direction: rtl;
    background-color: #FEFBF6;
    text-align: right;
    font-family: 'Almarai', sans-serif;
}

/* End Global Style */

/* Dashboard Login */
.dashbard-login-page {
    display: flex;
    height: 100vh;
}

.dashbard-login-bg {
    flex: 4;
    background: #009647;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.dashboard-login-content {
    flex: 4.5;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashbard-login-page .site-logo {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.dl-img {
    margin-top: 100px;
    text-align: center;
}

.dashboard-login-content h2 {
    font: normal normal bold 50px/78px Almarai;
    letter-spacing: 0px;
    color: #000000;
}

.dashboard-login-content p {
    font: normal normal normal 14px/26px Almarai;
    letter-spacing: 0px;
    color: #6F7A74;
    max-width: 410px;
}

.dlc-form {
    margin-top: 70px;
    max-width: 300px;
}

.dlc-form h3 {
    font: normal normal bold 24px/38px Almarai;
    letter-spacing: 0px;
    color: #000000;
}

.upload-image span {
    margin-left: 50px;
    cursor: pointer;
}

.dashboard-profile-content .form-group.input-with-icon label {
    display: block;
}

.upload-image:hover {
    border-color: var(--mainColor);
}

.dlc-form .form-group input {
    border: none;
    border-bottom: 1px solid #9EB9AB;
    width: 100%;
    padding: 10px;
    transition: all .3s linear;
    outline: none;
    margin-left: 4px;
    font-family: 'Tajawal', sans-serif;
    background: transparent;
}

.dlc-form .form-group {
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.dlc-form .form-group input:focus {
    border-bottom-color: var(--secColor);
}

.dlc-form .form-group input:focus::placeholder {
    color: var(--secColor);
}

.custom-upload-box .d-flex {
    column-gap: 30px;
}

.custom-upload-box .d-flex img {
    position: relative;
    right: 200px;
    height: auto;
}

.profile-form-area .form-btn {}

.dlc-form .btn-group .btn {
    width: 100%;
    background: var(--mainColor);
    color: #111;
    border-radius: 0;
    width: 100%;
    display: block;
    height: 50px;
    padding: 0;
    font: normal normal bold 18px/29px Almarai;
}

.dlc-form .form-group.btn-group {
    width: 100%;
    margin-bottom: 0;
}

/* End Dashboard Login */


/* Dashboard Sidebar */
.dashboard-sidebar {
    background: #009647;
    position: fixed;
    top: 0;
    right: 0;
    width: 330px;
    height: 100vh;
    padding: 60px 0;
}

.sidebar-logo-box {
    margin-bottom: 70px;
    text-align: center;
}

.sidebar-menu-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-menu-list ul li.active a {
    background: var(--mainColor);
}

.sidebar-menu-list ul li a {
    padding: 18px 50px;
    display: block;
    text-decoration: none;
    font: normal normal normal 14px/16px Almarai;
    color: #fff;
    transition: all .3s linear;
}

.sidebar-menu-list ul li a:hover {
    background: var(--mainColor);
}

.sidebar-menu-list ul li {
    margin-bottom: 2px;
}

/* End Dashboard Sidebar */

/* Dashboard Navbar */
.dashboard-page-content {
    width: calc(100% - 330px);
    margin-right: auto;
}

.l-item {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 50px;
}

.user-box img {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    margin-left: 8px;
}

.user-box span {
    font: normal normal normal 14px/16px Almarai;
    color: #111;
}

.dashbaord-navbar {
    padding: 25px 0;
    border-bottom: 0.4px solid #70707033;
}

.r-item p {
    margin-bottom: 0;
    font: normal normal normal 14px/16px Almarai;
    letter-spacing: 0px;
    color: #6F7A74;
}

.r-item span {
    font: normal normal bold 20px/31px Almarai;
    color: #111;
    display: block;
    margin-bottom: 8px;
}

/* End Dashboard Navbar */

/* Dashbaord Profile */
.input-box input {
    background: #FDC46F1A;
    border: none;
    outline: 1px solid transparent;
    transition: all .3s linear;
    width: 100%;
    height: 50px;
    text-indent: 40px;
}

.input-box input:focus {
    outline: 1px solid var(--mainColor);
    background: #fff;
}


.form-group.input-with-icon textarea {
    background: #FDC46F1A;
    border: none;
    outline: 1px solid transparent;
    transition: all .3s linear;
    width: 100%;
    min-height: 150px;
    padding: 20px;
    text-indent: 30px;
}

.dashboard-profile-content .form-group {
    margin-bottom: 10px;
}

.dashboard-profile-content .form-group.input-with-icon {
    position: relative;
}

.dashboard-profile-content .form-group.input-with-icon i.fa {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

.input-box {
    position: relative;
}

.d-user-area h5 {
    font: normal normal bold 24px/38px Almarai;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 8px;
}

.d-user-area span {
    font: normal normal normal 18px/20px Almarai;
    letter-spacing: 0px;
    color: #6F7A74;
}

.profile-form-area form h4 {
    font: normal normal bold 20px/31px Almarai;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 35px;
}

.donw-area {
    margin-top: 50px;
}

.profile-form-area {
    max-width: 85%;
}

.form-btn .btn {
    background: var(--mainColor);
    color: #111;
    border-radius: 0;
    height: 50px;
    width: 160px;
    font-weight: bold;
    transition: all .3s linear;
    border: 1px solid var(--mainColor);
}

.profile-form-area .form-btn .btn:hover {
    background: transparent;
    color: var(--mainColor);
}

.dashboard-profile-content .form-group.input-with-icon label {
    font: normal normal normal 14px/16px Almarai;
    letter-spacing: 0px;
    color: #1C1C1C;
    margin-bottom: 15px;
}

.dashboard-profile-content {
    padding: 50px 0;
}

.d-user-area {
    display: flex;
    column-gap: 15px;
    align-items: center;
    margin-bottom: 70px;
}

.dashboard-profile-content .form-group.textarea-with-icon i.fa {
    top: 25px;
    transform: unset;
}

.profile-form-area form .dashboard-page-title h4 {
    font: normal normal bold 32px/47px Almarai;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 0;
}

.profile-form-area form .dashboard-page-title p {
    font: normal normal normal 16px/29px Almarai;
    letter-spacing: 0px;
    color: #707070;
    margin: 0;
}

.dashboard-page-title {
    margin-bottom: 20px;
}

.input-box textarea:focus {
    outline: 1px solid var(--mainColor);
    background: #fff;
}

/* End Dashbaord Profile */

/* Dashboard Stocks */
.sidebar-blogs-list.news-slider {
    background: #DFDDD8;
    padding: 25px;
}

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


.new-item:before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    opacity: .6;
    z-index: 1;
    transition: all .3s linear;
}

.news-slider .new-item .new-card-info {
}

.section-title .l-item a.title-link .icon i {
    transform: rotate(-45deg);
}

.news-slider .new-item .new-card-info h4 {
    font: normal normal bold 14px/26px Almarai;
    color: #FFFFFF;
    opacity: 1;
    margin: 0;
    max-width: 60%;
}

.new-card-time {
    text-align: right;
    font: normal normal 300 10px/34px Almarai;
    letter-spacing: 0px;
    color: #EFEFEF;
    opacity: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 6px;
}

.news-slider .new-item:hover:before {
    opacity: 0.2;
}

.new-item {
    position: relative;
    direction: ltr;
    margin-bottom: 30px;
}

.sidebar-blogs-list.news-slider>h4 {
    font: normal normal bold 20px/31px Almarai;
    color: #111;
    margin-bottom: 25px;
}

.news-slider .new-item .new-card-info h4 a {
    text-decoration: none;
    color: #fff;
}

.side-blog-item:last-of-type .new-item {
    margin-bottom: 0;
}

.stocks-table table {
    width: 100%;
    text-align: center;
}

.stocks-table table thead {
    border-bottom: 0.4px solid #70707033;
}

.stocks-table tr th,
.stocks-table tr td {
    padding: 18px 0;
}

.stocks-table table tbody tr:nth-of-type(odd) {
    background: #FEF6E8;
}

.stocks-table {
    max-height: 700px;
    overflow: auto;
}

.stocks-table::-webkit-scrollbar {
    width: 4px;
}

.stocks-table::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.stocks-table::-webkit-scrollbar-thumb {
    background: #D3D3D3;
    border-radius: 10px;
}

.stocks-table::-webkit-scrollbar-thumb:hover {

    background: #555;
}

.stocks-table-title h4 {
    font: normal normal bold 20px/31px Almarai;
    letter-spacing: 0px;
    margin-bottom: 30px;
}

.stocks-shorts-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.ss-item {
    flex: 1;
    background: #FEF0DB;
    padding: 20px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.ss-after {
    position: absolute;
    top: -13px;
    left: -13px;
}

.ss-after span {
    display: block;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 40px;
    border: 10px solid #ECA63C;
    position: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
}

.ss-item:last-of-type {
    background: #EEF1E9;
}

.ss-item .ss-after span:last-of-type {
    top: -13px;
    left: -13px;
    width: 70px;
    height: 70px;
}

.ss-icon {
    height: 50px;
    width: 50px;
    border: 1px solid #1FA15C4D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}

.ss-item:last-of-type .ss-after span {
    border-color: #7FA186;
}

.ss-ocn h4 {
    font: normal normal normal 14px/16px Almarai;
    letter-spacing: 0px;
    color: #838383;
    margin-bottom: 0;
}

.ss-ocn span.num {
    font: normal normal bold 52px/82px Almarai;
    letter-spacing: 0px;
    color: #000000;
}

.stocks-table-container {
    margin-top: 50px;
    padding: 24px;
    background: #fff;
}

.dashboard-sidebar:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 100%;
    height: 239px;
    background: url(../img/sidebar-sub.svg);
    z-index: -1;
}

/* End Dashboard Stocks */

/* Dashboard Committeess */
.dashboard-committees-area ul#pills-tab {
    background: #FEF0DB;
    padding: 10px;
    column-gap: 20px;
}

.dashboard-committees-area .dashboard-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-committees-area .dashboard-section-title h4 {
    font: normal normal bold 32px/37px Almarai;
    margin-bottom: 0;
    letter-spacing: 0px;
    color: #000000;
}

.dashboard-committees-area .nav-pills .nav-link.active {
    background: var(--mainColor);
    color: #111;
}

.dashboard-committees-area .nav-pills .nav-link {
    font: normal normal normal 14px/22px Almarai;
    color: #707070;
    border-radius: 0;
}

.dashboard-committees-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

.dashboard-committees-list .dc-item {
    padding: 40px 46px;
    background: #fff;
    transition: all .3s linear;
    border: 2px solid transparent;
    text-align: center;
    overflow: hidden;
}

.dashboard-committees-list .dc-item:hover {
    box-shadow: 0px 0px 35px #FDC46F12;
    border: 2px solid #1FA15C;
}

.dashboard-committees-list .dc-item h5 {
    font: normal normal bold 20px/37px Almarai;
}

.dashboard-committees-list .dc-item p {
    font: normal normal normal 14px/22px Almarai;
    color: #707070;
    /* or 4 if para */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}

.dashboard-committees-list .dc-item button.btn {
    background: var(--mainColor);
    height: 40px;
    border-radius: 0;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    padding: 0 36px;
    font: normal normal bold 14px/17px Almarai;
}

/* End Dashboard Committess */

/* Dashboard Certificate */
.certificate-box {
    text-align: center;
    position: relative;
    max-width: 75%;
    margin: 20px auto;
    background: #fff;
    padding: 80px 25px;
    overflow: hidden;
}

.certificate-box:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1px solid #707070;
    z-index: 2;
}

.certificate-box:after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    border: 1px solid #707070;
    z-index: 2;
}

.certificate-box>div {
    position: relative;
    z-index: 4;
}

.dlc-form .form-group .flex {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.dlc-form .form-group .flex label {
    white-space: nowrap;
    font-size: 14px;
}

.download-certificate .btn {
    background: var(--mainColor);
    color: #111;
    font-weight: bold;
    border: 1px solid transparent;
    height: 50px;
    padding: 0 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    transition: all .3s linear;
}

.download-certificate {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-certificate .btn:hover {
    background: transparent;
    color: var(--mainColor);
    border-color: var(--mainColor);
}

.certificate-footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 50px;
    margin-bottom: 50px;
}

.certificate-box .site-logo {
    position: absolute;
    top: 70px;
    right: 70px;
}

.certificate-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.certificate-content .cc-titles h4 {
    font: normal normal bold 40px/52px Almarai;
    letter-spacing: 0px;
    color: #000000;
    margin: 0;
}

.certificate-content .cc-titles span {
    font: normal normal normal 18px/20px Almarai;
}

.certificate-content .cc-titles .p-with-trans-arro {
    margin-top: 25px;
    margin-bottom: 35px;
}

.certificate-content .cc-titles .p-with-trans-arro p {
    background: #1FA15C;
    display: inline-block;
    color: #fff;
    padding: 7px 70px;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.certificate-content .cc-titles .p-with-trans-arro p:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-color: transparent;
    border-width: 40px;
    border-style: solid;
    border-right-color: #fefbf6;
}

.certificate-content .cc-titles .p-with-trans-arro p:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-color: transparent;
    border-width: 40px;
    border-style: solid;
    border-left-color: #fefbf6;
}

.certificate-content {
    margin-top: 60px;
}

.certificate-content .cc-main ul li span {
    font: normal normal normal 18px/28px Almarai;
    letter-spacing: 0px;
    color: #6F7A74;
}

.certificate-content .cc-main ul li b {
    font: normal normal bold 18px/28px Almarai;
    color: #111;
}

.certificate-content .cc-main ul li {
    margin-bottom: 10px;
}

.certificate-footer .r-item span,
.certificate-footer .l-item span {
    font: normal normal normal 14px/16px Almarai;
    letter-spacing: 0px;
    color: #6F7A74;
    margin: 0;
    padding-top: 10px;
    border-top: 2px solid #6f7a7433;
}

.tt-before:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -140px;
    width: 370px;
    height: 170px;
    background: #1FA15C;
    transform: rotate(-45deg);
    border-bottom: 30px solid var(--mainColor);
}

.tt-after:before {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -140px;
    width: 370px;
    height: 170px;
    background: #1FA15C;
    transform: rotate(-45deg);
    border-top: 30px solid var(--mainColor);
}

.certificate-box .tt-before {
    position: absolute;
    top: 0;
    left: 0;
}

.certificate-box .tt-after {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* End Dashboard Certificate */

/* Dashboard Partnership */
.partnership-success-modal,
.investment-partnership-success-modal {
    position: fixed;
    top: 10%;
    opacity: 0;
    visibility: hidden;
    left: 50%;
    transition: all .3s linear;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0px 3px 35px #00000012;
    text-align: center;
    padding: 50px;
    width: 40%;
    min-height: 40%;
}

.partnership-success-modal.show,
.investment-partnership-success-modal.show {
    top: 50%;
    opacity: 1;
    z-index: 90;
    visibility: visible;
}

.psm-content img {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
}

.close-psm {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
}

.l-item .user-box a {
    text-decoration: none;
    color: inherit;
}

.investment-partnership-success-modal .psm-content p {
    max-width: 70%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.psm-content h4 {
    font: normal normal bold 35px/55px Almarai;
    color: #232121;
}

.psm-content p {
    font: normal normal normal 16px/29px Almarai;
    color: #5B7065;
    margin-bottom: 0;
}

.ll-s {
    margin-top: 15px;
    font: normal normal bold 16px/29px Almarai;
    letter-spacing: 0px;
    color: #111;
    margin-bottom: 20px;
}

.ll-s span {
    color: #5B7065;
    font: normal normal normal 16px/29px Almarai;
}

.psm-content .btn {
    height: 50px;
    background: var(--mainColor);
    border-radius: 0;
    font-weight: bold;
    padding: 0 40px;
    transition: all .3s linear;
    border: 1px solid transparent;
}

.psm-content .btn:hover {
    background-color: transparent;
    border-color: var(--mainColor);
    color: var(--mainColor);
}

.partnership-success-modal:before,
.investment-partnership-success-modal:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: url('../img/subtraction-left.png');
}

.partnership-success-modal:after,
.investment-partnership-success-modal:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: url('../img/subtraction-right.png');
}

/* End Dashboard Partnership */


/* Dashboard Suggestion */
.sug-box {
    padding: 32px 57px;
    flex: 1;
    text-align: center;
}

.sug-box h4 {
    margin-bottom: 18px;
}

.suggestion-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
    margin-bottom: 40px;
}

.sug-box:first-of-type {
    background: #FEF0DB;
}

.sug-box p {
    font: normal normal normal 14px/22px Almarai;
    color: #707070;
    max-width: 70%;
    margin: 0 auto;
}

.sug-box .btn {
    background: var(--mainColor);
    border-radius: 0;
    margin-top: 25px;
    height: 50px;
    padding: 0 40px;
}

.sug-box .btn i {
    vertical-align: middle;
    margin-right: 5px;
}

.sug-box:last-of-type {
    background: #EEF1E9;
}

.sug-box:last-of-type .btn {
    background: #1FA15C;
    color: #fff;
}

.sug-box .btn span {
    font-weight: bold;
}

.nice-select.select.wide {
    background: #FDC46F1A;
    border: none;
    outline: 1px solid transparent;
    transition: all .3s linear;
    width: 100%;
    height: 50px;
    text-indent: 30px;
    padding-right: 18px;
    padding-left: 30px;
    position: relative;
    text-align: right !important;
    line-height: 50px;
}

.nice-select:after {
    right: unset;
    left: 12px;
}

.nice-select .option {
    padding-right: 18px;
    padding-left: 29px;
    text-align: right;
    text-transform: capitalize;
}

.form-group.select-with-icon {
    position: relative;
}

.form-group.select-with-icon i.fa {
    position: absolute;
    top: 18px;
    right: 16px;
}

.form-group.select-with-icon label {
    font: normal normal normal 14px/16px Almarai;
    letter-spacing: 0px;
    color: #1C1C1C;
    margin-bottom: 15px;
}

.dashboard-mobile-open-btn {
    display: none;
}

.mt-4as {
    margin-top: 80px;
}

.custom-file-input {
    background: #FEF6E8;
    min-height: 200px;
    position: relative;
}

.custom-file-input input {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
}

.custom-file-input i#uploadIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.68;
    right: unset;
    font-size: 40px;
    z-index: 1;
}

/* End dashboard suggestion */


.upload-image input {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    cursor: pointer;
}

.upload-image {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: inline-block;
    background-repeat: no-repeat;
    background-image:
        url('http://icons.iconarchive.com/icons/martz90/circle/512/camera-icon.png');
    background-size: 20px 20px;
    border: 1px solid #ccc;
    padding: 10px 30px;
    background-position: 26% center;
    margin-bottom: 15px;
    transition: all .3s linear;
    position: absolute;
}

.new-item span.blog-imp {
    position: absolute;
    top: 30px;
    right: 0;
    width: 80px;
    height: 40px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background: var(--mainColor);
    color: #111;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: -12px;
}


.form-group.input-with-icon.custom-upload-box {
    margin-bottom: 100px;
    overflow: hidden;
    padding-bottom: 50px;
    padding-top: 30px;
}

.form-group.input-with-icon.custom-upload-box img {
    margin-right: 90px;
}

html[lang=ar] .upload-image.as {
    background-position: 20% 50%;
}


.l-item .lang img,
.l-item .home-p img {
    height: 25px;
    width: auto;
}

.l-item .home-p {
    padding: 8px;
    border: 1px solid transparent;
    transition: all .3s linear;
    border-radius: 100%;
}

.l-item a.home-p:hover {
    border-color: var(--secColor);
    padding: 4px;
    margin-right: 8px;
}



.upload-image-container {
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 30px;
}

.img-area {
    position: relative;
    width: 100%;
    height: 240px;
    background: var(--grey);
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.img-area .icon {
    font-size: 100px;
}

.img-area h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.img-area p {
    color: #999;
}

.img-area p span {
    font-weight: 600;
}

.img-area img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 100;
}

.img-area::before {
    content: attr(data-img);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: all .3s ease;
    z-index: 200;
}

.img-area.active:hover::before {
    opacity: 1;
}

.select-image {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-radius: 0px;
    background: var(--secColor);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}

.select-image:hover {
    background: var(--dark-blue);
}


.top-area .nice-select.form-control {
    width: 100%;
    display: flex;
    align-items: center;
}

html[dir=rtl] .nice-select .list {
    left: unset;
    right: 0;
}

.shareholders-request-page input {
    height: 50px;
    transition: all .3s linear;
}

.shareholders-request-page input:focus {
    box-shadow: none;
    border-color: var(--secColor);
}

.shareholders-request-page textarea {
    min-height: 220px;
}

.row1 a.text-decoration-none {
    background: var(--secColor);
    color: #fff;
    padding: 2px 20px;
    font-size: 14px;
    opacity: 0.8;
    transition: all .3s linear;
}

.row1 a.text-decoration-none:hover {
    opacity: 1;
}
.send.rounded.p-3 {
    background: #f9f9f9 !important;
    border: 1px solid #e5e5e5;
}
.cursor-pointer.rounded.text-white {
    cursor: pointer;
    background: var(--mainColor) !important;
    position: relative;
    min-height: 100px;
}

.text-muted a.link-muted {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
}

.text-muted a.link-muted i {
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--mainColor);
    color: #fff;
    font-size: 16px;
}
.messages p:last-of-type {
    margin: 0;
}
.text-muted ~ hr {
    margin: 10px 0;
}

.text-center img.rounded {
    border-radius: 50px!important;
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

span.invalid-feedback {
    margin-top: 10px
}

.dashbard-login-page .dlc-form .form-group {
    display: block;
}

.profile-form-area input, .profile-form-area select {
    padding: 15px 20px;
    background: rgb(253 196 111 / 10%);
    color: #000;
    border: 1px solid var(--mainColor);
    font-size: 14px;
    margin-top: 4px !important;
}

.profile-form-area select {
    color: #111;
}

.profile-form-area input:disabled {background: rgb(253 196 111 / 3%);color: #111;cursor: not-allowed;}

.profile-form-area input[type=file] {
    color: #111;
}
.profile-form-area .alert-danger, .profile-form-area .alert-danger ~ a {
    width: calc(100% - 24px);
    margin-right: 12px;
    font-size: 14px;
}
.profile-form-area form h4.form-title {
    margin-bottom: 20px;
    margin-top: 10px;
}
div#file-upload {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-wrap: anywhere;
}

div#file-upload input {
    position: absolute;
    inset: 0;
    display: block !important;
    opacity: 0;
    cursor: pointer;
}

.news-slider .new-item .new-card-info h4 {
    text-align: right;
    max-width: 100%;
    margin: 10px 15px 0 0;
    padding-bottom: 15px;
}

.sidebar-blogs-list.news-slider .new-item > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    opacity: .6;
    z-index: 1;
    transition: all .3s linear;
}

.sidebar-blogs-list.news-slider .new-item:before {
    display: none;
}

.sidebar-blogs-list.news-slider .new-card-time {
    margin: 15px 15px 0 0;
    padding: 0;
    line-height: normal;
}
.sidebar-blogs-list.news-slider .new-item > a {display: flex;cursor: pointer;position: relative;}

.side-blog-item .new-item {
    background: #a1a1a1;
}

