﻿/*common start*/

html,
body,
form {
    background-color: white !important;
    font-size: 16px !important;
    color: #201747;
}

::-webkit-scrollbar {
    9width: inherit !important;
    9height: inherit !important;
}

html:lang(ar),
body:lang(ar),
form:lang(ar) {
    direction: rtl;
    text-align: right;
}

a {
    color: #201747;
}

body {
    min-height: 100vh;
}
/*a:hover,
a:active,
a:focus {
	text-decoration: none;
}

a[href]:hover,
a[href]:active,
a[href]:focus {
	text-decoration: underline;
}*/

a:visited {
    color: inherit;
}

*:focus {
    /*outline: none !important;*/
}

.no-border {
    border: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}


/*a.skip-content {
	padding: 0.5em 1em;
	position: fixed;
	top: -10em;
	left: 0;
	color: white !important;
	line-height: 2em;
	text-align: center;
	z-index: 3;
	background-color: #80132a;
}

a.skip-content:lang(ar) {
	left: unset;
	right: 0;
}

a.skip-content:active,
a.skip-content:focus,
a.skip-content:hover {
	top: 0.5em;
}*/

label {
    /*font-family: 'helveticaneuemedium', Arial;*/
    margin-bottom: .5rem;
}

    label:lang(ar) {
        font-family: 'ge_thameen_bold', Arial;
    }

.body-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
}

.flex-wrapper-column {
    display: flex;
    flex-direction: column;
}

.flex-wrapper-row {
    display: flex;
    flex-direction: row;
}

.flex-full {
    flex: 1;
}

.flex-spaced {
    justify-content: space-between;
}

.flex-v-center {
    align-items: center;
}

.side-padding {
    padding: 2.5rem 3.75rem;
}

em.error {
    color: red;
    font-style: initial;
    font-size: 0.875rem;
}


/*common end*/


/*header start*/

.header-actions {
    padding: .625rem 2.75rem;
}

    .header-actions .logo-wrapper a {
        display: block;
    }

        .header-actions .logo-wrapper a img {
            width: 150px;
            height: 70px;
            max-width: unset
        }

    .header-actions .actions-wrapper {
        margin: 2px 0 0 1rem;
        justify-content: flex-end;
        width: 100%;
        align-items: center;
    }

        .header-actions .actions-wrapper:lang(en) {
            margin: 0px 0 0 1rem;
        }

        .header-actions .actions-wrapper:lang(ar) {
            margin: 0px 1rem 0 0;
        }

        .header-actions .actions-wrapper > div {
            height: 100%
        }

        .header-actions .actions-wrapper div .top {
            align-items: center;
            justify-content: flex-end;
            position: relative;
            top: 22px;
            z-index: 1;
        }

        .header-actions .actions-wrapper .top > div:first-child > a:first-child {
            position: relative;
            padding-right: 15px
        }

            .header-actions .actions-wrapper .top > div:first-child > a:first-child:before, .header-actions .actions-wrapper a.language-english:before {
                transition: all 0.4s;
                position: absolute;
                content: '';
                right: 0;
                top: 4px;
                border: solid #a1a0a5;
                border-width: 0 2px 2px 0;
                display: inline-block;
                padding: 3px;
                transform: rotate( 45deg );
                -webkit-transform: rotate( 45deg );
            }

        .header-actions .actions-wrapper a {
            margin: 0 .5rem;
            color: #a1a0a5;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }

            .header-actions .actions-wrapper a:hover {
                color: #cb9c69;
                text-decoration: none
            }

        .header-actions .actions-wrapper > a:last-child:lang(en) {
            margin-right: 0;
        }

        .header-actions .actions-wrapper > a:last-child:lang(ar) {
            margin-left: 0;
        }

        .header-actions .actions-wrapper a.language-arabic {
            font-family: 'ge_thameen_regular', Arial;
            background-image: url(../images/lebanon-flag.svg);
            background-size: 20px;
            background-position: left top;
            background-repeat: no-repeat;
            padding-left: 25px;
            padding-right: 0 !important
        }

        .header-actions .actions-wrapper a.language-english {
            background-image: url(../images/united-kingdom-flag.svg);
            background-size: 20px;
            background-position: right -1px;
            background-repeat: no-repeat;
            padding-right: 25px;
            position: relative;
            padding-left: 0
        }

            .header-actions .actions-wrapper a.language-english:before, .header-actions .actions-wrapper a.language-arabic:before {
                display: none !important;
            }

        .header-actions .actions-wrapper a.notifications-link {
            position: relative;
        }

        .header-actions .actions-wrapper .notification-area {
        }

        .header-actions .actions-wrapper a.notifications-link .count {
            position: absolute;
            background-color: red;
            border-radius: 30px;
            padding: .12rem 0.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: .6rem;
            top: -4px;
            /*font-family: 'helveticaneuemedium';*/
        }

            .header-actions .actions-wrapper a.notifications-link .count:lang(en) {
                right: -7px;
            }

            .header-actions .actions-wrapper a.notifications-link .count:lang(ar) {
                left: -7px;
            }

            .header-actions .actions-wrapper a.notifications-link .count.empty {
                display: none;
            }

        .header-actions .actions-wrapper .notifications-content {
            position: absolute;
            right: 0px;
            background: #fff;
            box-shadow: 0px 3px 6px #4e4270;
            border-radius: 5px;
            width: 250px;
            max-height: 300px;
            opacity: 0;
            top: 100px;
            visibility: hidden;
            transition: all 0.4s
        }

            .header-actions .actions-wrapper .notifications-content:lang(ar) {
                left: 0;
                right: unset
            }

        .header-actions .actions-wrapper .ac .notifications-content {
            top: 50px;
            opacity: 1;
            visibility: visible
        }

        .header-actions .actions-wrapper .notifications-content ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
        }

        .header-actions .actions-wrapper a.notifications-link:before {
            content: '';
            position: absolute;
            height: 16px;
            width: 16px;
            top: 36px;
            left: 4px;
            transform: scaleY(.75) rotate(45deg);
            background-color: #fff;
            box-shadow: -2px -3px 4px rgb(0 0 0 / 8%), 0 4px 7px rgb(0 0 0 / 8%);
            z-index: 1;
            display: none
        }

        .header-actions .actions-wrapper .notifications-content:lang(ar):before {
            right: 37px;
            left: unset
        }

        .header-actions .actions-wrapper a.notifications-link:after {
            content: '';
            position: absolute;
            height: 13px;
            width: 30px;
            top: 44px;
            left: -4px;
            background-color: #fff;
            z-index: 1;
            display: none
        }

        .header-actions .actions-wrapper .notifications-content:lang(ar):after {
            right: 30px;
            left: unset
        }

        .header-actions .actions-wrapper .ac a.notifications-link:before, .header-actions .actions-wrapper .ac a.notifications-link:after {
            display: block
        }

        .header-actions .actions-wrapper .notifications-content a {
            margin: 0 !important;
            padding: 8px 20px;
            display: block;
            border-top: 1px solid #E2E2E2;
            color: #251359;
        }

        .header-actions .actions-wrapper .notifications-content li.unread {
            background: #f1f1f1;
        }

        .header-actions .actions-wrapper .notifications-content a:hover {
            color: #cb9c69;
        }

        .header-actions .actions-wrapper .notifications-content li:first-child a {
            border: none
        }

        .header-actions .actions-wrapper a svg {
            fill: #aaaaaa;
            width: 22px;
            height: 24px;
        }

        .header-actions .actions-wrapper .profile-link-wrapper:lang(en) {
            /*margin-left: 2.75rem;*/
            margin-right: 0;
        }

        .header-actions .actions-wrapper .profile-link-wrapper:lang(ar) {
            /*margin-right: 2.75rem;*/
            margin-left: 0;
        }

        .header-actions .actions-wrapper a.profile-link-wrapper .name:lang(en) {
            margin-right: .9rem;
        }

        .header-actions .actions-wrapper a.profile-link-wrapper .name:lang(ar) {
            margin-left: .9rem;
        }

        .header-actions .actions-wrapper a.profile-link-wrapper .image {
            position: relative;
        }

            .header-actions .actions-wrapper a.profile-link-wrapper .image svg {
                width: 2.25rem;
                height: 2.25rem;
            }

            .header-actions .actions-wrapper a.profile-link-wrapper .image img {
                width: 2.25rem;
                height: 2.25rem;
                border-radius: 30px;
                position: absolute;
            }

                .header-actions .actions-wrapper a.profile-link-wrapper .image img:lang(en) {
                    right: 0;
                }

                .header-actions .actions-wrapper a.profile-link-wrapper .image img:lang(ar) {
                    left: 0;
                }

        .header-actions .actions-wrapper .login-button-wrapper {
            position: static;
            background-image: url(../images/usr.svg);
            background-repeat: no-repeat;
            background-size: 36px;
            padding-top: 8px;
            padding-bottom: 10px;
        }

            .header-actions .actions-wrapper .login-button-wrapper:lang(en) {
                margin-left: 0;
                padding-right: 42px;
                background-position: right 0px;
            }

            .header-actions .actions-wrapper .login-button-wrapper:lang(ar) {
                margin-right: 0;
                padding-left: 42px;
                background-position: left 0px;
            }

        .header-actions .actions-wrapper a.login-button:after {
            content: none;
        }

        .header-actions .actions-wrapper a.login-button .image svg {
            width: 2.25rem;
            height: 2.25rem;
        }

    .header-actions .login-dropdown {
        border: 0;
        padding: 1.875rem;
        white-space: nowrap;
        min-width: 25rem;
        top: 0;
        border-radius: 0;
        transform: none !important;
        font-size: 0.875rem;
        transition: all 0.4s;
        opacity: 0;
        display: block;
        visibility: hidden;
    }

        .header-actions .login-dropdown.show {
            top: calc(100% + .625rem + 2.5rem) !important;
            opacity: 1;
            visibility: visible;
            margin-top: 0
        }

        .header-actions .login-dropdown:lang(en) {
            right: 0 !important;
            left: unset !important;
        }

        .header-actions .login-dropdown:lang(ar) {
            right: unset !important;
            left: 0 !important;
        }

        .header-actions .login-dropdown h1 {
            font-size: 1.5rem;
            margin-bottom: 1.875rem;
            text-align: center;
        }

        .header-actions .login-dropdown .form-group {
            min-width: 14rem;
            margin-bottom: 0;
        }

            .header-actions .login-dropdown .form-group .field-control {
                position: relative;
                margin-bottom: 1.25rem;
            }

                .header-actions .login-dropdown .form-group .field-control .form-control {
                    border-radius: 4px;
                    border-color: #a1a0a5;
                    color: inherit;
                    font-size: inherit;
                    padding: 0.75rem;
                    height: 2.5rem;
                    box-shadow: none;
                    transition: all 0.4s
                }

                    .header-actions .login-dropdown .form-group .field-control .form-control:focus {
                        border-color: #201747
                    }

                    .header-actions .login-dropdown .form-group .field-control .form-control:lang(en) {
                        padding-left: calc(.875rem + 1rem + .8125rem);
                    }

                    .header-actions .login-dropdown .form-group .field-control .form-control:lang(ar) {
                        padding-right: calc(.875rem + 1rem + .8125rem);
                    }

                .header-actions .login-dropdown .form-group .field-control.password-field .form-control:lang(en) {
                    padding-right: calc(.875rem + 1rem + .8125rem);
                }

                .header-actions .login-dropdown .form-group .field-control.password-field .form-control:lang(ar) {
                    padding-left: calc(.875rem + 1rem + .8125rem);
                }

                .header-actions .login-dropdown .form-group .field-control .icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: absolute;
                    top: 0;
                    height: 2.5rem;
                    margin: 0;
                }

                    .header-actions .login-dropdown .form-group .field-control .icon:lang(en) {
                        left: 0;
                        padding: 0 .8125rem 0 1rem;
                    }

                    .header-actions .login-dropdown .form-group .field-control .icon:lang(ar) {
                        right: 0;
                        padding: 0 1rem 0 .8125rem;
                    }

                .header-actions .login-dropdown .form-group .field-control.password-field .icon.toggle-password:lang(en) {
                    right: 0;
                    left: unset;
                }

                .header-actions .login-dropdown .form-group .field-control.password-field .icon.toggle-password:lang(ar) {
                    right: unset;
                    left: 0;
                }

                .header-actions .login-dropdown .form-group .field-control .icon a {
                    margin: 0;
                }

                .header-actions .login-dropdown .form-group .field-control .icon svg {
                    width: .875rem;
                    height: .875rem;
                }

                .header-actions .login-dropdown .form-group .field-control.checkbox-field {
                    display: flex;
                    align-items: center;
                }

                    .header-actions .login-dropdown .form-group .field-control.checkbox-field input {
                        width: 1rem;
                        height: 1rem;
                    }

                        .header-actions .login-dropdown .form-group .field-control.checkbox-field input:lang(en) {
                            margin-right: .5rem;
                        }

                        .header-actions .login-dropdown .form-group .field-control.checkbox-field input:lang(ar) {
                            margin-left: .5rem;
                        }

                    .header-actions .login-dropdown .form-group .field-control.checkbox-field label {
                        margin: 0;
                        font-size: 0.875rem
                    }

        .header-actions .login-dropdown .link {
            display: flex;
            justify-content: flex-end;
        }

            .header-actions .login-dropdown .link > div {
                padding: 0
            }

                .header-actions .login-dropdown .link > div + div:lang(en) {
                    text-align: right
                }

                .header-actions .login-dropdown .link > div + div:lang(ar) {
                    text-align: left
                }

            .header-actions .login-dropdown .link a {
                display: inline-block;
                font-size: 0.875rem;
                margin: 0;
                color: #201747;
                text-decoration: underline;
                margin-top: 0.6875rem;
                transition: all 0.4s;
            }

                .header-actions .login-dropdown .link a:hover {
                    color: #cb9c69;
                    text-decoration: none;
                }

        .header-actions .login-dropdown .btn {
            width: 100%;
            margin: 0;
            font-size: 1rem;
            justify-content: center;
        }

    .header-actions .actions-wrapper div .bottom {
        align-items: flex-end;
        flex: 1;
        /*padding-bottom: 5px;*/
        position: relative;
        margin-top: -15px;
        margin-bottom: -15px;
    }

        .header-actions .actions-wrapper div .bottom:lang(en) {
            padding-left: 3.3rem;
        }

        .header-actions .actions-wrapper div .bottom:lang(ar) {
            padding-right: 3.75rem;
        }

        .header-actions .actions-wrapper div .bottom a {
            /*padding: .1rem 0.75rem;*/
            padding: 1rem 1.5rem;
            font-size: 1.5rem;
            text-decoration: none;
            /*text-transform: uppercase;*/
            font-weight: initial;
            transition: all 0.4s;
            z-index: 2;
            position: relative;
            /*font-family: 'helveticaneuemedium';*/
        }

            .header-actions .actions-wrapper div .bottom a + a {
                margin: 0 !important;
            }

            .header-actions .actions-wrapper div .bottom a:lang(en) {
                margin: 0 1.5rem 0 0;
            }

            .header-actions .actions-wrapper div .bottom a:lang(ar) {
                margin: 0 0 0 1.5rem;
                font-family: inherit;
                font-weight: 700
            }

            .header-actions .actions-wrapper div .bottom a.active {
                /*color: #201747;
                background-color: #e0e0e0;*/
                color: #cb9c69;
                background-color: #201747;
            }

            .header-actions .actions-wrapper div .bottom a + a.active {
                background-color: #5b5082;
            }

            .header-actions .actions-wrapper div .bottom a:not(.active):hover {
                color: #cb9c69
            }
/*header end*/
/*body start*/
.body-section {
    flex: 1;
    background-image: url(../images/background.jpg);
    background-size: cover;
    min-height: 48rem;
}

    .body-section.inner-page {
        background-image: none;
        background-color: #201747;
        min-height: unset;
    }

.arrow-nav a {
    display: inline-block;
    margin-bottom: 1rem;
}

    .arrow-nav a:lang(ar) {
        transform: scaleX(-1);
    }

.form-section {
    background-color: white;
}

    .form-section .title {
        border-bottom: 1px solid #a1a0a5;
        font-size: 1rem;
        padding: 1.25rem;
        margin: 0;
    }

    .form-section .layout {
        padding: 1.25rem;
    }

        .form-section .layout label {
            margin-bottom: 0;
            display: flex;
            justify-content: flex-end;
            text-align: right;
            line-height: 1.1875rem;
            padding: .6rem 0;
        }

            .form-section .layout label.disabled {
                color: #a1a0a5;
            }

    .form-section .form-control {
        border-color: #a1a0a5;
    }

        .form-section .form-control.disabled {
            background-color: #f9f9f9;
        }

    .form-section ::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #a1a0a5;
        opacity: 1;
        /* Firefox */
    }

    .form-section :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #a1a0a5;
    }

    .form-section ::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #a1a0a5;
    }

    .form-section .actions-wrapper {
        padding: 1.25rem;
        display: flex;
        justify-content: flex-end;
    }

.category-thumbnail-wrapper {
    flex: 0 0 25%;
    flex-wrap: wrap;
}

.category-thumbnail {
    background-color: white;
    padding: 1.875rem;
    /*margin-bottom: 1.875rem;*/
    text-decoration: none;
    transition: all 0.4s;
}

    .category-thumbnail:hover {
        background-color: #e0e0e0;
    }

    .category-thumbnail[aria-expanded="true"] {
        margin-top: 1rem;
    }

    .category-thumbnail svg {
        width: 3.75rem;
    }

    .category-thumbnail h1 {
        font-size: 1.25rem;
        margin: 0;
        margin-top: 1rem;
        color: #201747;
        text-decoration: none;
    }

.categories-section .accordion {
    font-size: 0.875rem;
}

.categories-section .col-md-3 {
    min-width: 357.3px;
}

    .categories-section .col-md-3:lang(en):first-child {
        margin-left: -15px
    }

    .categories-section .col-md-3:lang(ar):first-child {
        margin-right: -15px
    }

.categories-section .accordion.main-accordion > .card {
    position: relative;
    overflow: initial;
    border: 0;
    border-radius: 0;
    background-color: transparent;
}

    .categories-section .accordion.main-accordion > .card > .card-header {
        padding: 0;
        border: 0;
        background-color: transparent;
    }

.categories-section .accordion.main-accordion .category-collapse {
    position: absolute;
    top: 100%;
    width: calc(200% + 30px);
}

    .categories-section .accordion.main-accordion .category-collapse .collapse {
    }

    .categories-section .accordion.main-accordion .category-collapse .card-body {
        padding: 1.25rem 1.875rem;
    }

        .categories-section .accordion.main-accordion .category-collapse .card-body:lang(en) ul {
            padding-left: 15px;
        }

        .categories-section .accordion.main-accordion .category-collapse .card-body:lang(ar) ul {
            padding-right: 15px;
        }

        .categories-section .accordion.main-accordion .category-collapse .card-body ul li {
            padding-bottom: 8px
        }

    .categories-section .accordion.main-accordion .category-collapse:lang(en) {
        left: 0;
    }

    .categories-section .accordion.main-accordion .category-collapse:lang(ar) {
        right: 0;
    }

.categories-section .accordion.main-accordion .accordion.form-accordion .card {
    border-color: #201747;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.categories-section .accordion.main-accordion .accordion.form-accordion .card-header {
    padding: 0;
    border-bottom: 0;
}

    .categories-section .accordion.main-accordion .accordion.form-accordion .card-header .btn {
        border-radius: 0;
        background-color: white;
        color: #201747 !important;
        border-bottom: 1px solid #201747;
        box-shadow: none;
        width: 100%;
        text-align: initial;
        padding: 1rem 1.875rem;
        font-size: 0.875rem;
        position: relative;
        transition: all 0.4s;
    }

        .categories-section .accordion.main-accordion .accordion.form-accordion .card-header .btn:hover {
            background-color: #e0e0e0;
        }

        .categories-section .accordion.main-accordion .accordion.form-accordion .card-header .btn:after {
            transition: all 0.4s;
            position: absolute;
            content: '';
            right: 25px;
            top: 20px;
            border: solid #201747;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
            transform: rotate( 45deg );
            -webkit-transform: rotate( 45deg );
        }

        .categories-section .accordion.main-accordion .accordion.form-accordion .card-header .btn:lang(ar):after {
            right: unset;
            left: 25px;
        }

        .categories-section .accordion.main-accordion .accordion.form-accordion .card-header .btn[aria-expanded="true"]:after {
            transform: rotate( -135deg );
            -webkit-transform: rotate( -135deg );
            top: 25px;
        }

.categories-section .accordion.main-accordion .accordion.form-accordion .card .card-body .title {
    font-size: 0.875rem;
}

.categories-section .accordion.main-accordion .accordion.form-accordion .card .card-body .btn {
    width: 100%;
    background-color: white;
    color: #201747 !important;
    border: 1px solid #201747;
    box-shadow: none;
    height: 28px;
    font-size: 0.875rem;
    padding: 0;
    line-height: 25px;
    font-weight: bold
}

    .categories-section .accordion.main-accordion .accordion.form-accordion .card .card-body .btn:hover,
    .categories-section .accordion.main-accordion .accordion.form-accordion .card .card-body .btn:active,
    .categories-section .accordion.main-accordion .accordion.form-accordion .card .card-body .btn:focus {
        background-color: #201747;
        color: white !important;
    }

.categories-section .accordion.main-accordion .accordion.form-accordion .card .card-body .error {
    margin-bottom: .3rem;
    display: inline-block;
    font-size: 0.75rem
}


/*dashboard start*/

.top-row:after {
    content: "";
    height: 1px;
    width: calc(100% - 30px);
    background-color: white;
    margin: 0 auto 30px auto;
}

.counters-section a {
    display: block;
    text-decoration: none;
}

.counters-section .cursor-pointer > div:hover {
    transition: all 0.4s
}

.counter-wrapper {
    height: 8.875rem;
    display: flex;
    padding: 1.875rem;
    color: white;
    margin-bottom: 30px;
    align-items: center;
}

    .counter-wrapper.all {
        background-color: rgb(139, 15, 87);
        transition: all 0.4s
    }

        .counter-wrapper.all:hover,
        .counter-wrapper.all:active,
        .counter-wrapper.all:focus {
            background-color: rgb(119, 5, 77);
        }

.cursor-pointer.ac .counter-wrapper {
    border: white solid 2px;
    box-shadow: 0px 5px 9px rgb(79 67 125);
}

.counter-wrapper.completed {
    background-color: rgb(0, 116, 130);
}

    .counter-wrapper.completed:hover,
    .counter-wrapper.completed:active,
    .counter-wrapper.completed:focus {
        background-color: rgb(0, 97, 110);
    }

.counter-wrapper.in-progress {
    background-color: rgb(203, 156, 105);
}

    .counter-wrapper.in-progress:hover,
    .counter-wrapper.in-progress:active,
    .counter-wrapper.in-progress:focus {
        background-color: rgb(183, 134, 81);
    }

.counter-wrapper.rejected {
    background-color: rgb(236, 117, 36);
}

    .counter-wrapper.rejected:hover,
    .counter-wrapper.rejected:active,
    .counter-wrapper.rejected:focus {
        background-color: rgb(192, 94, 27);
    }

.counter-wrapper .icon svg {
    width: 5rem;
}

.counter-wrapper .details {
    flex-wrap: wrap;
    align-content: space-between;
    height: 100%;
}

    .counter-wrapper .details .count {
        font-size: 2.125rem;
        line-height: 2.5625rem;
        width: 100%;
    }

    .counter-wrapper .details .title {
        line-height: 1.1875rem;
        width: 100%;
    }

.eservices-wrapper {
    height: calc(8.875rem + 8.875rem + 30px);
    background-color: white;
}

    .eservices-wrapper > .flex-full {
        /*flex: 1 1;*/
    }

    .eservices-wrapper .title {
        font-size: 1rem;
        padding: 20px 18px 12px 18px;
        border-bottom: 1px solid #a1a0a5;
        margin: 0;
    }

    .eservices-wrapper .nav-tabs {
        padding: .313rem 20px;
        background-color: #f1f1f1;
        border-bottom-color: #a1a0a5;
        display: flex;
        align-items: center;
    }

        .eservices-wrapper .nav-tabs li {
            padding: .15rem 1rem;
            border-radius: 30px;
        }

            .eservices-wrapper .nav-tabs li:lang(en) {
                margin-right: 1.5rem;
            }

            .eservices-wrapper .nav-tabs li:lang(ar) {
                margin-left: 1.5rem;
            }

            .eservices-wrapper .nav-tabs li a {
                color: #a1a0a5;
                text-decoration: none;
                transition: all 0.4s;
                font-size: 0.875rem
            }

                .eservices-wrapper .nav-tabs li a:hover {
                    color: #cb9c69
                }

            .eservices-wrapper .nav-tabs li.active {
                background-color: #cb9c69;
                color: white;
            }

                .eservices-wrapper .nav-tabs li.active a {
                    color: white;
                }

    .eservices-wrapper .tab-content {
        flex: 1;
        overflow-y: auto;
        --scrollbarBG: white;
        --thumbBG: #a1a0a5;
        scrollbar-width: thin;
        scrollbar-color: var(--thumbBG) var(--scrollbarBG);
    }

        .eservices-wrapper .tab-content::-webkit-scrollbar {
            width: 11px;
        }

        .eservices-wrapper .tab-content::-webkit-scrollbar-track {
            background: var(--scrollbarBG);
        }

        .eservices-wrapper .tab-content::-webkit-scrollbar-thumb {
            background-color: var(--thumbBG);
            border-radius: 6px;
            border: 3px solid var(--scrollbarBG);
        }

.tab-content .fa, .tab-content .fas {
    position: relative;
    top: 5px;
}

    .tab-content .fa[ref="removeLink"] {
        top: 0
    }

.eservices-wrapper .tab-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .eservices-wrapper .tab-content ul li {
        padding: 1rem 2.25rem;
        border-bottom: 1px solid #a1a0a5;
        font-size: 0.875rem;
        transition: all 0.4s;
    }

        .eservices-wrapper .tab-content ul li:hover {
            background-color: #e0e0e0;
        }

.inbox-table-wrapper {
    background-color: white;
    /*font-family: 'helveticaneue', Arial;*/
}

    .inbox-table-wrapper:lang(ar) {
        font-family: 'ge_thameen_regular', Arial;
    }

    .inbox-table-wrapper .title {
        font-size: 1rem;
        padding: 20px 18px 12px 18px;
        border-bottom: 1px solid #a1a0a5;
        margin: 0;
    }


/*dashboard end*/


/*body end*/


/*footer start*/

.footer-section {
    z-index: 0;
}

    .footer-section .footer-wrapper {
        background-color: #f1f1f1;
        color: #a1a0a5;
        padding: 1.875rem 2.75rem 2.5rem 2.75rem;
    }

    .footer-section h1 {
        color: #201747;
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        transition: all 0.4s;
        margin-top: 0;
        font-weight: normal;
        line-height: 1.2
    }

    .footer-section a:hover h1 {
        color: #cb9c69;
        cursor: pointer;
    }

    .footer-section a:hover {
        text-decoration: none
    }

    .footer-section li a {
        font-size: 0.75rem;
        color: #a1a0a5;
    }

    .footer-section .social-media-icons a {
        cursor: pointer
    }

        .footer-section .social-media-icons a:lang(en) {
            margin-left: 1.875rem;
        }

        .footer-section .social-media-icons a:lang(ar) {
            margin-right: 1.875rem;
        }

        .footer-section .social-media-icons a:first-child:lang(en) {
            margin-left: 0;
        }

        .footer-section .social-media-icons a:first-child:lang(ar) {
            margin-right: 0;
        }

        .footer-section .social-media-icons a svg {
            fill: #cb9c69;
            transition: all 0.4s;
        }

        .footer-section .social-media-icons a:hover svg,
        .footer-section .social-media-icons a:active svg,
        .footer-section .social-media-icons a:focus svg {
            fill: #201747;
        }

.footer-wrapper > .flex-wrapper-row {
    justify-content: space-between;
}

    .footer-wrapper > .flex-wrapper-row > div:lang(en) {
        margin-right: 1rem;
    }

    .footer-wrapper > .flex-wrapper-row > div:lang(ar) {
        margin-left: 1rem;
    }

    .footer-wrapper > .flex-wrapper-row > div:last-child {
        align-items: flex-end;
    }

        .footer-wrapper > .flex-wrapper-row > div:last-child:lang(en) {
            margin-right: 0;
        }

        .footer-wrapper > .flex-wrapper-row > div:last-child:lang(ar) {
            margin-left: 0;
        }

.footer-section .sitemap-block {
    flex: 1;
}

    .footer-section .sitemap-block > div {
        flex: 1;
    }

        .footer-section .sitemap-block > div:lang(en) {
            margin-right: 1rem;
        }

        .footer-section .sitemap-block > div:lang(ar) {
            margin-left: 1rem;
        }

        .footer-section .sitemap-block > div:last-child:lang(en) {
            margin-right: 0;
        }

        .footer-section .sitemap-block > div:last-child:lang(ar) {
            margin-left: 0;
        }

    .footer-section .sitemap-block ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .footer-section .sitemap-block ul li {
        }

    .footer-section .sitemap-block a,
    .footer-section .sitemap-block h1 {
        display: inline-block;
        width: fit-content;
    }

.footer-section .social-media-wrapper .social-media .social-media-icons i {
    color: #262626;
    background-color: white;
    padding: .5rem;
    border-radius: 30px;
}


/*footer end*/

.panel.panel-default {
    border: none;
    margin: 2.5rem 1.875rem !important;
    border-radius: 5px;
}

    .panel.panel-default .card {
        border-radius: 0;
    }

.formio-form label {
    font-size: 0.875rem;
    font-weight: normal;
    color: #201747
}

.formio-form .table > thead > tr > th {
    font-size: 0.875rem;
    font-weight: normal;
    color: #201747
}

.formio-form .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #007681 !important
}

.formio-form .btn-primary, .forget-password .btn-primary {
    background-color: #cb9c69 !important;
    border-color: #cb9c69;
    transition: all 0.4s
}

.formio-form .formio-button-remove-row {
    min-width: unset !important;
    width: 38px;
    height: 38px;
    background-color: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

    .formio-form .formio-button-remove-row i {
        font-size: 26px;
        color: #890C58;
    }

.formio-form .btn-primary:active, .formio-form .btn-primary:hover, .formio-form .btn-primary:focus {
    background-color: #201747 !important;
    border-color: #201747 !important;
    box-shadow: none !important
}

.formio-form .list-inline > li button, .formio-form .formio-button-add-row {
    min-width: 0;
    background-color: #007681 !important;
    border-color: #007681 !important;
}

.formio-form .list-inline {
    margin-bottom: 30px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: -5px;
    display: inline-block;
    width: 100%;
}

    .formio-form .list-inline > li:nth-child(1) {
        float: left;
    }

    .formio-form .list-inline > li:nth-child(2) {
        float: right;
    }

    .formio-form .list-inline > li:lang(ar):nth-child(2) {
        float: right;
        margin: 0;
    }

    .formio-form .list-inline > li:nth-child(3) {
        float: right;
        padding-right: 0
    }

    .formio-form .list-inline > li:lang(ar):nth-child(3) {
        float: left;
        padding-left: 0;
        margin-left: 0.3rem;
    }

    .formio-form .list-inline:after {
        content: '';
        height: 0;
        clear: both;
    }

.formio-form .list-group {
    font-size: 0.75rem;
    color: #201747;
}

    .formio-form .list-group strong {
        font-weight: normal;
        font-size: 0.875rem;
        /*font-family: 'helveticaneuemedium';*/
    }

        .formio-form .list-group strong:lang(ar) {
            font-family: 'ge_thameen_bold'
        }

.formio-form .form-control {
    transition: all 0.4s
}

    .formio-form .form-control:focus {
        border-color: #201747
    }

.formio-component-file .fileSelector {
    color: #201747;
    font-size: 0.875rem;
    border: 1px dashed #cb9c69 !important;
}

    .formio-component-file .fileSelector .browse {
        color: #cb9c69
    }

#formFooter button {
    font-size: 1rem;
}

#formFooter #btnSave {
    background-color: #E87722 !important;
    border-color: #E87722 !important;
}

    #formFooter #btnSave:hover {
        background-color: #cb6b24 !important;
        border-color: #cb6b24 !important;
    }

#formFooter .btn-success {
    color: #fff;
    background-color: #cb9c69;
    border-color: #cb9c69;
    box-shadow: none
}

#formFooter .actions-wrapper {
    text-align: center !important
}
/*bootstrap overwrite classes*/
.page-item {
    font-size: 0.875rem
}

    .page-item.active .page-link {
        color: #201747 !important;
        background-color: #e0e0e0 !important;
        border-color: #e0e0e0 !important;
    }

.pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #e0e0e0 !important;
    border-color: #e0e0e0 !important;
    box-shadow: none !important
}

.pagination > li > a, .pagination > li > span {
    transition: all 0.4s;
}

    .pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > span:hover, .pagination > li > span:focus {
        color: #cb9c69 !important
    }

.btn {
    border: 0;
    background-color: #cb9c69;
    color: white !important;
    padding: .5rem 1rem;
    border-radius: 4px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(232, 232, 232, 0.5);
    -moz-box-shadow: 5px 5px 5px 0px rgba(232, 232, 232, 0.5);
    box-shadow: 5px 5px 5px 0px rgba(232, 232, 232, 0.5);
    min-width: 10.3125rem;
    text-decoration: none;
}

    .btn:hover,
    .btn:active,
    .btn:focus, #formFooter .btn-success:hover {
        background-color: #9a7349;
        color: white !important;
    }


/*datatable start*/


/*
 * Table styles
 */

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0;
    /*
   * Header and footer styles
   */
    /*
   * Body styles
   */
}

    table.dataTable thead th,
    table.dataTable tfoot th {
        font-weight: bold;
    }

    table.dataTable thead th,
    table.dataTable thead td {
        padding: 16px 18px;
        border-bottom: 1px solid #000000;
    }

        table.dataTable thead th:active,
        table.dataTable thead td:active {
            outline: none;
        }

    table.dataTable tfoot th,
    table.dataTable tfoot td {
        padding: 10px 18px 6px 18px;
        border-top: 1px solid #000000;
    }

    table.dataTable thead .sorting,
    table.dataTable thead .sorting_asc,
    table.dataTable thead .sorting_desc,
    table.dataTable thead .sorting_asc_disabled,
    table.dataTable thead .sorting_desc_disabled {
        cursor: pointer;
        *cursor: hand;
        background-repeat: no-repeat;
        background-position: center right;
    }

    table.dataTable thead .sorting {
        background-image: url("../images/sort_both.png");
    }

    table.dataTable thead .sorting_asc {
        background-image: url("../images/sort_asc.png") !important;
    }

    table.dataTable thead .sorting_desc {
        background-image: url("../images/sort_desc.png") !important;
    }

    table.dataTable thead .sorting_asc_disabled {
        background-image: url("../images/sort_asc_disabled.png");
    }

    table.dataTable thead .sorting_desc_disabled {
        background-image: url("../images/sort_desc_disabled.png");
    }

    table.dataTable tbody tr {
        background-color: #ffffff;
    }

        table.dataTable tbody tr.selected {
            background-color: #f1f1f1;
        }

    table.dataTable tbody th,
    table.dataTable tbody td {
        padding: 8px 10px;
    }

    table.dataTable.row-border tbody th,
    table.dataTable.row-border tbody td,
    table.dataTable.display tbody th,
    table.dataTable.display tbody td {
        border-top: 1px solid #000000;
    }

        table.dataTable.display tbody td svg {
            fill: #dbdbdb;
        }

    table.dataTable.row-border tbody tr:first-child th,
    table.dataTable.row-border tbody tr:first-child td,
    table.dataTable.display tbody tr:first-child th,
    table.dataTable.display tbody tr:first-child td {
        border-top: none;
    }

    table.dataTable.cell-border tbody th,
    table.dataTable.cell-border tbody td {
        border-top: 1px solid #000000;
        border-right: 1px solid #000000;
    }

    table.dataTable.cell-border tbody tr th:first-child,
    table.dataTable.cell-border tbody tr td:first-child {
        border-left: 1px solid #000000;
    }

    table.dataTable.cell-border tbody tr:first-child th,
    table.dataTable.cell-border tbody tr:first-child td {
        border-top: none;
    }

    table.dataTable.stripe tbody tr.odd,
    table.dataTable.display tbody tr.odd {
        background-color: #ffffff;
    }

        table.dataTable.stripe tbody tr.odd.selected,
        table.dataTable.display tbody tr.odd.selected {
            background-color: #ebebeb;
        }

    table.dataTable.hover tbody tr:hover,
    table.dataTable.display tbody tr:hover {
        background-color: #f6f6f6;
    }

        table.dataTable.hover tbody tr:hover.selected,
        table.dataTable.display tbody tr:hover.selected {
            background-color: #e8e8e8;
        }

    table.dataTable.order-column tbody tr > .sorting_1,
    table.dataTable.order-column tbody tr > .sorting_2,
    table.dataTable.order-column tbody tr > .sorting_3,
    table.dataTable.display tbody tr > .sorting_1,
    table.dataTable.display tbody tr > .sorting_2,
    table.dataTable.display tbody tr > .sorting_3 {
        background-color: #fafafa;
    }

    table.dataTable.order-column tbody tr.selected > .sorting_1,
    table.dataTable.order-column tbody tr.selected > .sorting_2,
    table.dataTable.order-column tbody tr.selected > .sorting_3,
    table.dataTable.display tbody tr.selected > .sorting_1,
    table.dataTable.display tbody tr.selected > .sorting_2,
    table.dataTable.display tbody tr.selected > .sorting_3 {
        background-color: #ececec;
    }

    table.dataTable.display tbody tr.odd > .sorting_1,
    table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
        background-color: #f1f1f1;
    }

    table.dataTable.display tbody tr.odd > .sorting_2,
    table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
        background-color: #f3f3f3;
    }

    table.dataTable.display tbody tr.odd > .sorting_3,
    table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
        background-color: whitesmoke;
    }

    table.dataTable.display tbody tr.odd.selected > .sorting_1,
    table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
        background-color: #e4e4e4;
    }

    table.dataTable.display tbody tr.odd.selected > .sorting_2,
    table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
        background-color: #e6e6e6;
    }

    table.dataTable.display tbody tr.odd.selected > .sorting_3,
    table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
        background-color: #e8e8e8;
    }

    table.dataTable.display tbody tr.even > .sorting_1,
    table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
        background-color: #fafafa;
    }

    table.dataTable.display tbody tr.even > .sorting_2,
    table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
        background-color: #fcfcfc;
    }

    table.dataTable.display tbody tr.even > .sorting_3,
    table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
        background-color: #fefefe;
    }

    table.dataTable.display tbody tr.even.selected > .sorting_1,
    table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
        background-color: #ececec;
    }

    table.dataTable.display tbody tr.even.selected > .sorting_2,
    table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
        background-color: #eeeeee;
    }

    table.dataTable.display tbody tr.even.selected > .sorting_3,
    table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
        background-color: #f0f0f0;
    }

    table.dataTable.display tbody tr:hover > .sorting_1,
    table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
        background-color: #eaeaea;
    }

    table.dataTable.display tbody tr:hover > .sorting_2,
    table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
        background-color: #ececec;
    }

    table.dataTable.display tbody tr:hover > .sorting_3,
    table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
        background-color: #efefef;
    }

    table.dataTable.display tbody tr:hover.selected > .sorting_1,
    table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
        background-color: #dddddd;
    }

    table.dataTable.display tbody tr:hover.selected > .sorting_2,
    table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
        background-color: #dfdfdf;
    }

    table.dataTable.display tbody tr:hover.selected > .sorting_3,
    table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
        background-color: #e2e2e2;
    }

    table.dataTable.no-footer {
        border-bottom: 1px solid #000000;
        width: 100% !important;
    }

    table.dataTable.nowrap th,
    table.dataTable.nowrap td {
        white-space: nowrap;
    }

    table.dataTable.compact thead th,
    table.dataTable.compact thead td {
        padding: 4px 17px;
    }

    table.dataTable.compact tfoot th,
    table.dataTable.compact tfoot td {
        padding: 4px;
    }

    table.dataTable.compact tbody th,
    table.dataTable.compact tbody td {
        padding: 4px;
    }

    table.dataTable th.dt-left,
    table.dataTable td.dt-left {
        text-align: left;
    }

    table.dataTable th.dt-center,
    table.dataTable td.dt-center,
    table.dataTable td.dataTables_empty {
        text-align: center;
    }

    table.dataTable th.dt-right,
    table.dataTable td.dt-right {
        text-align: right;
    }

    table.dataTable th.dt-justify,
    table.dataTable td.dt-justify {
        text-align: justify;
    }

    table.dataTable th.dt-nowrap,
    table.dataTable td.dt-nowrap {
        white-space: nowrap;
    }

    table.dataTable thead th.dt-head-left,
    table.dataTable thead td.dt-head-left,
    table.dataTable tfoot th.dt-head-left,
    table.dataTable tfoot td.dt-head-left {
        text-align: left;
    }

    table.dataTable thead th.dt-head-center,
    table.dataTable thead td.dt-head-center,
    table.dataTable tfoot th.dt-head-center,
    table.dataTable tfoot td.dt-head-center {
        text-align: center;
    }

    table.dataTable thead th.dt-head-right,
    table.dataTable thead td.dt-head-right,
    table.dataTable tfoot th.dt-head-right,
    table.dataTable tfoot td.dt-head-right {
        text-align: right;
    }

    table.dataTable thead th.dt-head-justify,
    table.dataTable thead td.dt-head-justify,
    table.dataTable tfoot th.dt-head-justify,
    table.dataTable tfoot td.dt-head-justify {
        text-align: justify;
    }

    table.dataTable thead th.dt-head-nowrap,
    table.dataTable thead td.dt-head-nowrap,
    table.dataTable tfoot th.dt-head-nowrap,
    table.dataTable tfoot td.dt-head-nowrap {
        white-space: nowrap;
    }

    table.dataTable tbody th.dt-body-left,
    table.dataTable tbody td.dt-body-left {
        text-align: left;
    }

    table.dataTable tbody th.dt-body-center,
    table.dataTable tbody td.dt-body-center {
        text-align: center;
    }

    table.dataTable tbody th.dt-body-right,
    table.dataTable tbody td.dt-body-right {
        text-align: right;
    }

    table.dataTable tbody th.dt-body-justify,
    table.dataTable tbody td.dt-body-justify {
        text-align: justify;
    }

    table.dataTable tbody th.dt-body-nowrap,
    table.dataTable tbody td.dt-body-nowrap {
        white-space: nowrap;
    }

    table.dataTable,
    table.dataTable th,
    table.dataTable td {
        box-sizing: content-box;
    }


/*
 * Control feature layout
 */

.dataTables_wrapper {
    position: relative;
    clear: both;
    *zoom: 1;
    zoom: 1;
}

    .dataTables_wrapper .dataTables_length {
        color: #aaaaaa;
        padding: 0 .5rem;
    }

        .dataTables_wrapper .dataTables_length label {
            margin-bottom: 0;
            font-size: 0.6875rem;
            /*font-family: 'helveticaneue', Arial;*/
        }

        .dataTables_wrapper .dataTables_length select {
            border: 1px solid #f1f1f1;
            border-radius: 3px;
            padding: 5px;
            background-color: #f1f1f1;
            padding: 4px;
            color: #aaaaaa;
            font-size: 0.6875rem;
        }

    .dataTables_wrapper .dataTables_filter {
        position: relative;
        top: -43px;
        margin-bottom: -42px;
        margin-top: 0 !important
    }

        .dataTables_wrapper .dataTables_filter:lang(en) {
            float: right;
            right: 20px;
            text-align: right;
        }

        .dataTables_wrapper .dataTables_filter:lang(ar) {
            float: left;
            left: 20px;
            text-align: left;
        }

        .dataTables_wrapper .dataTables_filter input {
            border: 1px solid #a1a0a5;
            border-radius: 4px;
            padding: 5px;
            background-color: transparent;
            width: 220px;
            outline: none
        }

            .dataTables_wrapper .dataTables_filter input:lang(en) {
                margin-left: 10px;
            }

            .dataTables_wrapper .dataTables_filter input:lang(ar) {
                margin-right: 10px;
            }

    .dataTables_wrapper .dataTables_info {
        padding: 0;
        color: #363636;
    }

    .dataTables_wrapper .bottom {
        display: flex;
        align-items: center;
        font-size: 0.6875rem;
        padding: .75rem 0;
    }

    .dataTables_wrapper .dataTables_paginate {
        /*float: unset;
  width: fit-content;
  padding: 0 .5rem;
  flex: 1;
  text-align: unset;
  display: flex;
  align-items: center;*/
        padding: 0;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button {
            box-sizing: border-box;
            display: inline-flex;
            min-width: 1.5rem;
            height: 1.5rem;
            padding: .25rem;
            margin-left: 5px;
            text-align: center;
            text-decoration: none !important;
            cursor: pointer;
            *cursor: hand;
            align-items: center;
            justify-content: center;
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button:lang(ar) {
                margin-left: 0;
                margin-right: 5px;
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button.last,
            .dataTables_wrapper .dataTables_paginate .paginate_button.first {
                display: none;
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button.current,
            .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
                color: white !important;
                border: 0;
                background-color: white;
                padding: .25rem;
                background: #ca0000;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 0.6875rem;
                cursor: default;
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button svg {
                width: .25rem;
                fill: #363636;
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
                cursor: default;
                color: #666 !important;
                border: 1px solid transparent;
                background: transparent;
                box-shadow: none;
            }

                .dataTables_wrapper .dataTables_paginate .paginate_button.disabled svg,
                .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover svg,
                .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active svg {
                    fill: #a6a6a6;
                }

            .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
                color: white !important;
                border: 0;
                background: none;
            }

                .dataTables_wrapper .dataTables_paginate .paginate_button:hover svg {
                    fill: #363636;
                }

            .dataTables_wrapper .dataTables_paginate .paginate_button:active {
                outline: none;
                color: white !important;
                border: 0;
                background: none;
            }

                .dataTables_wrapper .dataTables_paginate .paginate_button:active svg {
                    fill: #363636;
                }

        .dataTables_wrapper .dataTables_paginate .paginate_input {
            width: 1.75rem;
            height: 1.75rem;
            border: 1px solid #a6a6a6;
            text-align: center;
        }

        .dataTables_wrapper .dataTables_paginate .ellipsis {
            padding: 0 1em;
        }

    .dataTables_wrapper .dataTables_processing {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 40px;
        margin-left: -50%;
        margin-top: -25px;
        padding-top: 20px;
        text-align: center;
        font-size: 1.2em;
        background-color: white;
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    }

    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_processing,
    .dataTables_wrapper .dataTables_paginate {
        color: #363636;
    }

    .dataTables_wrapper .dataTables_scroll {
        clear: both;
    }

        .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
            *margin-top: -1px;
            -webkit-overflow-scrolling: touch;
        }

            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th,
            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td,
            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th,
            .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
                vertical-align: middle;
            }

                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing,
                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
                .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
                    height: 0;
                    overflow: hidden;
                    margin: 0 !important;
                    padding: 0 !important;
                }

    .dataTables_wrapper.no-footer .dataTables_scrollBody {
        border-bottom: 1px solid #000000;
    }

    .dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
    .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
        border-bottom: none;
    }

    .dataTables_wrapper:after {
        visibility: hidden;
        display: block;
        content: "";
        clear: both;
        height: 0;
    }

@media screen and (max-width: 767px) {
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center;
    }

    .dataTables_wrapper .dataTables_paginate {
        margin-top: 0.5em;
    }
}

@media screen and (max-width: 640px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: center;
    }

    .dataTables_wrapper .dataTables_filter {
        margin-top: 0.5em;
    }
}


/*overwrite datatable css start*/

.inbox-table-wrapper .dataTables_wrapper {
    font-size: 0.875rem;
    /*font-family: 'helveticaneue', Arial;*/
}

    .inbox-table-wrapper .dataTables_wrapper:lang(ar) {
        font-family: 'ge_thameen_regular', Arial;
    }

    .inbox-table-wrapper .dataTables_wrapper#table_donations_wrapper {
        margin-top: 0;
        box-shadow: none;
    }

    .inbox-table-wrapper .dataTables_wrapper table {
        /*border-spacing: 0 1rem;*/
    }

        .inbox-table-wrapper .dataTables_wrapper table thead {
            border-bottom: 1px solid #a1a0a5 !important;
            border-collapse: unset;
            border-spacing: unset;
        }

            .inbox-table-wrapper .dataTables_wrapper table thead tr th {
                color: #a1a0a5;
                /*font-family: 'helveticaneuemedium', Arial;*/
                font-weight: normal;
                font-size: 0.875rem;
                line-height: 1.0625rem;
            }

                .inbox-table-wrapper .dataTables_wrapper table thead tr th:lang(ar) {
                    font-family: 'ge_thameen_bold', Arial;
                }

.inbox-table-wrapper table.dataTable.display tbody tr {
    border-bottom: 1px solid #a1a0a5;
}

.inbox-table-wrapper table.dataTable.display tbody td {
    padding: 10px 18px;
    /*font-family: 'helveticaneue', Arial;*/
}

    .inbox-table-wrapper table.dataTable.display tbody td:lang(ar) {
        font-family: 'ge_thameen_regular', Arial;
    }

.inbox-table-wrapper table.dataTable.display tbody tr td .request-type {
    margin: 0;
    color: #201747;
}

.inbox-table-wrapper table.dataTable.display tbody tr td .payment-method {
    margin: 0;
    color: #a1a0a5;
}

.inbox-table-wrapper table.dataTable.display tbody tr td .status {
    padding: .25rem;
    border-radius: 4px;
    color: white;
}

    .inbox-table-wrapper table.dataTable.display tbody tr td .status.completed {
        background-color: #007482;
    }

    .inbox-table-wrapper table.dataTable.display tbody tr td .status.rejected {
        background-color: #ec7524;
    }

    .inbox-table-wrapper table.dataTable.display tbody tr td .status.in-progress {
        background-color: #cb9c69;
    }

.inbox-table-wrapper table.dataTable.display tbody tr td a svg {
    width: 0.25rem;
}

.inbox-table-wrapper table.dataTable thead th,
.inbox-table-wrapper table.dataTable thead td {
    border: 0;
}

.inbox-table-wrapper table.dataTable.no-footer,
.inbox-table-wrapper table.dataTable.display tbody th,
.inbox-table-wrapper table.dataTable.display tbody td {
    border-color: #a1a0a5;
}

.inbox-table-wrapper table.dataTable.row-border tbody th,
.inbox-table-wrapper table.dataTable.row-border tbody td {
    border-color: #a1a0a5;
}

.inbox-table-wrapper table.dataTable.row-border tbody tr:first-child th,
.inbox-table-wrapper table.dataTable.row-border tbody tr:first-child td,
.inbox-table-wrapper table.dataTable.display tbody tr:first-child th,
.inbox-table-wrapper table.dataTable.display tbody tr:first-child td {
    border-top: 1px solid #a1a0a5;
}

table.dataTable a.btn-warning, table.dataTable a.btn-info {
    padding: 0 .4em;
    min-width: 0;
    background-color: #007681 !important;
    border-color: #007681 !important;
    font-size: 1rem;
}

    table.dataTable a.btn-warning:lang(ar) i, table.dataTable a.btn-info:lang(ar) i {
        position: relative;
        top: 2px;
    }

    table.dataTable a.btn-warning:hover, table.dataTable a.btn-info:hover {
        background-color: #201747 !important;
        border-color: #201747 !important;
        box-shadow: none !important;
    }

.inbox-table-wrapper table .icon {
    background-color: #ca0000;
    padding: .5rem;
    border-radius: 5px;
    width: 2rem;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .inbox-table-wrapper table .icon svg {
        fill: white;
        width: .75rem;
        height: .75rem;
    }


/*overwrite datatable css end*/


/*datatable end*/

/* datepicker start */
.flatpickr-months {
    padding: 10px 0 5px 0;
}

.flatpickr-current-month {
    font-size: 1rem !important;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    top: 3px !important;
}
/* datepicker end */

.table-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 18px;
}

.cursor-pointer {
    cursor: pointer;
}

.li-active {
    background-color: #f1f1f1
}

.loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.loading-image {
    z-index: 999;
}

.fade {
    opacity: 1 !important;
}

.nav-link {
    background-color: #ddd;
    color: black;
    border-radius: 0px !important;
    padding: 10px 20px;
}

.nav {
    cursor: pointer !important;
}

.nav-link .active {
    border-bottom: 0px !important;
}

.btn-wizard-nav-submit {
    display: none !important;
}

.card-footer:lang(en) {
    text-align: right
}

.card-footer:lang(ar) {
    text-align: left
}

.card-body {
    padding: 15px;
}

    .card-body label, .card-body .form-control {
        font-size: 0.875rem;
        transition: all 0.4s
    }

        .card-body .form-control:focus {
            border-color: #201747;
            box-shadow: none !important
        }

    .card-body .input-group-text {
        font-size: 0.875rem;
    }

.forget-password {
    padding: 2.5rem 2.8rem !important;
    width: 700px;
}

    .forget-password .card {
        border-radius: 0
    }

    .forget-password .card-header {
        /*font-family: 'helveticaneuemedium';*/
        text-align: center
    }

    .forget-password label {
        font-size: 0.875rem;
        display: block;
    }

    .forget-password .card-footer {
        text-align: center !important
    }

.card-footer .btn {
    /*font-family: 'helveticaneuemedium', Arial;*/
}

table.dataTable > tbody > tr.child ul.dtr-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    table.dataTable > tbody > tr.child ul.dtr-details > li {
        flex: 0 0 100%;
        display: flex;
        justify-content: space-between;
    }

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    background-color: #007681;
    border-radius: 4px;
    box-shadow: none;
    line-height: 15px
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:lang(ar), table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:lang(ar) {
    padding-right: 30px;
    padding-left: 0
}

    table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:lang(ar):before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:lang(ar):before {
        left: unset;
        right: 5px;
    }

.swal2-popup.swal2-modal {
    background-color: #201747;
    color: #fff;
    border-radius: 0;
}

.swal2-modal .swal2-title, .swal2-modal .swal2-content {
    color: #fff;
}

.swal2-popup.swal2-modal .swal2-styled {
    line-height: 18px;
}

    .swal2-popup.swal2-modal .swal2-styled.swal2-confirm {
        background-color: #E87722 !important;
        border-color: #E87722 !important;
    }

    .swal2-popup.swal2-modal .swal2-styled.swal2-cancel {
        background-color: #919090 !important;
    }

.pagination > li, .page-item.active .page-link {
    cursor: pointer;
}

    .pagination > li:lang(en) {
        /*font-family: 'helveticaneuemedium';*/
    }

    .pagination > li:lang(ar) {
        font-family: 'ge_thameen_bold';
    }

.formio-form .list-group:lang(ar), .formio-form .pagination {
    padding-right: 0
}

.formio-component-datetime .input-group input[type="text"] {
    border-radius: 4px 0 0 4px !important;
    border-right: 0;
}

.formio-component-datetime .input-group:lang(ar) input[type="text"] {
    border-left: 0;
    border-right: 1px solid #a1a0a5;
    border-radius: 0 4px 4px 0 !important;
}

.formio-component-datetime .input-group-addon:last-child {
    border: 1px solid #a1a0a5;
    border-left: 0;
    left: -1px;
    position: relative;
    border-radius: 0 4px 4px 0;
}

.formio-component-datetime .input-group-addon:lang(ar):last-child {
    border: 1px solid #a1a0a5;
    left: unset;
    border-right: 0;
    right: -1px;
    border-radius: 4px 0 0 4px;
}

.control-label--hidden:lang(ar) {
    right: unset;
    left: 5px
}

.formio-form .list-inline > li button:lang(ar), .formio-form .formio-button-add-row:lang(ar) {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

    .formio-form .formio-button-add-row:lang(ar) .fa {
        margin-right: 5px
    }

.table > thead > tr > th:lang(ar) {
    text-align: right
}

.formio-component-resource .control-label--hidden.field-required:lang(ar), .formio-component-select .control-label--hidden.field-required:lang(ar) {
    left: 40px;
    right: auto;
}

.pagination li:lang(ar) {
    display: inline-block
}

.pagination .page-item:first-child .page-link:lang(ar) {
    margin-left: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link:lang(ar) {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination > li > a, .pagination > li > span:lang(ar) {
    margin-left: 0;
    margin-right: -4px
}

.radio-inline:lang(ar), .checkbox-inline:lang(ar) {
    padding-right: 20px;
    padding-left: 0;
}

.radio input[type="radio"]:lang(ar), .radio-inline input[type="radio"]:lang(ar), .checkbox input[type="checkbox"]:lang(ar), .checkbox-inline input[type="checkbox"]:lang(ar) {
    margin-right: -20px;
    margin-left: 0px;
}

.radio-inline + .radio-inline:lang(ar), .checkbox-inline + .checkbox-inline:lang(ar) {
    margin-right: 10px;
    margin-left: 0
}

.flatpickr-calendar.animate.open:lang(ar) {
    left: auto !important;
    right: 105px !important;
}

.form-control.is-invalid:lang(ar), .was-validated .form-control:lang(ar):invalid {
    background-position: left calc(.375em + .1875rem) center;
}

.flatpickr-current-month .numInputWrapper:lang(ar) {
    width: 10ch;
}

.error-section {
    min-height: 50vh;
    display: flex;
}
    /*.error-section .card:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -147px;
        margin: 0 auto;
        width: 100px;
        height: 100px
    }*/
    .error-section > .row {
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

    .error-section .card {
        color: #cb9c69;
        background-color: #201747;
        align-items: center;
        position: relative
    }

        .error-section .card .card-body {
            padding: 30px;
        }

            .error-section .card .card-body p {
                text-transform: uppercase;
            }

    .error-section .btn {
        box-shadow: none !important;
        /*font-family: 'helveticaneuemedium', Arial*/
    }

.payment-status .card-header label {
    font-size: 1.2rem !important
}

    .payment-status .card-header label i {
        position: relative;
        top: 2px;
        margin-right: 5px;
    }

    .payment-status .card-header label:lang(ar) i {
        margin-left: 5px;
    }

.not-found {
    /*font-family: 'helveticaneuemedium', Arial;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .not-found h1 {
        font-size: 13rem;
        flex-grow: 1;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        flex-direction: column
    }

        .not-found h1 p {
            font-size: 3rem;
            margin: 0;
        }

.list-group .list-group-item a {
    color: #cb9c69;
}

    .list-group .list-group-item a:hover {
        color: #201747
    }

.nav-tabs .nav-link:lang(en) {
    margin-right: 1px;
    /*font-family: 'helveticaneuemedium'*/
}

.nav-tabs .nav-link:lang(ar) {
    margin-left: 1px;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    color: #cb9c69;
}

.nav-tabs .nav-link.active {
    margin-bottom: -1px
}

.col-exp .card {
    border: 1px solid transparent;
    border-color: #ddd;
    margin: 1rem 0;
}

    .col-exp .card .card-header {
        background-color: #f5f5f5;
    }

.col-exp .card-header .card-title {
    font-size: 1rem !important;
    font-weight: 400;
    color: #201747;
    /*font-family: 'helveticaneuemedium', Arial;*/
    margin: 0 !important;
    padding: 0;
}

    .col-exp .card-header .card-title:hover {
        color: #cb9c69;
    }

@media only screen and (max-width: 1120px) {
    .categories-section .accordion.main-accordion .category-collapse {
        width: calc(150% + 30px);
    }

    .counters-section {
        padding-bottom: 20px
    }

        .counters-section > .row {
            flex-direction: column;
        }

            .counters-section > .row > .col-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

                .counters-section > .row > .col-6 .counter-wrapper {
                    height: auto;
                    padding: .875rem;
                    margin-bottom: 10px
                }

                    .counters-section > .row > .col-6 .counter-wrapper .details {
                        flex-wrap: inherit;
                        align-content: center;
                        justify-content: space-around;
                    }

                        .counters-section > .row > .col-6 .counter-wrapper .details .count {
                            width: auto;
                            min-width: 50px;
                            align-self: center;
                        }

                        .counters-section > .row > .col-6 .counter-wrapper .details .title {
                            align-self: center
                        }

                    .counters-section > .row > .col-6 .counter-wrapper .icon svg {
                        width: 3rem;
                    }

    .eservices-wrapper {
        height: calc(8.875rem + 8.875rem + 62px);
    }
}

@media only screen and (max-width: 950px) {
    .categories-section .accordion.main-accordion .category-collapse {
        width: calc(110% + 30px);
    }
}

@media only screen and (max-width: 810px) {
    .categories-section .row {
        flex-direction: column;
        row-gap: 20px;
    }

    .categories-section .col-md-3 {
        margin-bottom: 1rem;
        flex: 1;
        max-width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-wrapper > .flex-wrapper-row > div {
        flex-direction: column;
        row-gap: 20px
    }

    .header-actions .logo-wrapper a {
        margin: 0 !important;
    }

    .header-actions .login-button-wrapper .login-dropdown {
        left: 0 !important;
        right: 1px !important
    }

    .categories-section .accordion.main-accordion .category-collapse {
        width: 100%;
        z-index: 1;
    }

    .forget-password {
        width: 100%
    }
}

@media screen and (max-width: 575.98px) {
    .header-actions .actions-wrapper .ac .notifications-content {
        top: 45px
    }

    .header-actions .actions-wrapper .notifications-content {
        right: -5px;
        left: unset
    }

        .header-actions .actions-wrapper .notifications-content:lang(ar) {
            left: -5px;
            right: unset
        }

        .header-actions .actions-wrapper .notifications-content:before {
            right: 7px;
            left: unset
        }

        .header-actions .actions-wrapper .notifications-content:after {
            right: 0px;
            left: unset
        }

        .header-actions .actions-wrapper .notifications-content:lang(ar):before {
            left: 7px;
            right: unset
        }

        .header-actions .actions-wrapper .notifications-content:lang(ar):after {
            left: 0px;
            right: unset
        }

    .header-actions .actions-wrapper div .top.ac {
        z-index: 3
    }

    .body-container {
        overflow-x: hidden
    }

    .footer-wrapper > .flex-wrapper-row {
        flex-direction: column
    }

        .footer-wrapper > .flex-wrapper-row > div, .footer-section .sitemap-block > div {
            margin: 0 !important;
        }

    .footer-section .footer-wrapper .flex-wrapper-row > div.social-media-wrapper.row {
        margin-top: 1rem !important;
    }

    .header-actions .actions-wrapper div .bottom {
        padding-left: 0 !important;
        padding-right: 0 !important;
        justify-content: flex-end
    }

    .dashboard-content .top-row {
        flex-direction: column
    }

        .dashboard-content .top-row > div {
            flex: 0 0 100%;
            max-width: 100%
        }

    .forget-password {
        padding: .625rem !important;
    }
}

@media screen and (max-width: 530px) {
    .header-actions .actions-wrapper .login-button-wrapper {
        margin: 0 !important
    }

    .categories-section .col-md-3 {
        min-width: 0
    }

    .dataTables_wrapper .dataTables_filter {
        float: none !important;
        position: inherit;
        text-align: left !important;
        padding-left: 20px;
        margin: 0;
        padding-top: 20px;
    }

        .dataTables_wrapper .dataTables_filter:lang(ar) {
            text-align: right !important;
            padding-right: 20px;
        }
}

@media screen and (max-width: 490px) {
    .header-actions .login-dropdown {
        min-width: 0
    }

    .header-actions {
        padding: .625rem;
    }

    .side-padding {
        padding: .625rem 1.6rem;
    }

    .footer-section .footer-wrapper {
        padding: .625rem .625rem;
    }

    .header-actions .actions-wrapper div .top {
        flex-wrap: wrap;
        top: 0;
        position: inherit;
    }

    .header-actions .actions-wrapper:lang(en) {
        margin: 0
    }

    .header-actions .actions-wrapper .login-button-wrapper {
        flex: 0 0 100%;
        margin-top: 20px !important;
    }

    .header-actions .actions-wrapper .profile-link-wrapper {
        flex: 0 0 100%;
        justify-content: flex-start;
        margin-left: 0 !important;
        margin-right: 0 !important;
        position: absolute;
        width: 130px;
    }

        .header-actions .actions-wrapper .profile-link-wrapper:lang(en) {
            left: 113px;
            margin-right: 10px;
        }

        .header-actions .actions-wrapper .profile-link-wrapper:lang(ar) {
            right: 113px;
            margin-left: 10px;
        }

    .header-actions .actions-wrapper div .bottom {
        padding-bottom: 0;
    }

    .header-actions .actions-wrapper a.language-arabic {
        margin-right: 0
    }

    .header-actions .actions-wrapper a.language-english {
        margin-left: 0
    }

    .header-actions .actions-wrapper div .bottom a {
        display: inline-block;
        font-size: 1.2rem;
        margin: 0 !important;
        padding: 0.7rem 0.7rem;
    }

    .header-actions .actions-wrapper a.login-button:lang(en) {
        float: right
    }

    .header-actions .actions-wrapper a.login-button:lang(ar) {
        float: left
    }

    .header-actions .actions-wrapper a.profile-link-wrapper .name:lang(en) {
        margin-right: 5px;
    }

    .header-actions .actions-wrapper a.profile-link-wrapper .name:lang(ar) {
        margin-left: 5px;
    }

    .header-actions .actions-wrapper a.notifications-link:lang(en) {
        margin-right: 0
    }

    .header-actions .actions-wrapper a.notifications-link:lang(ar) {
        margin-left: 0
    }

    .panel.panel-default {
        margin: 10px -5px !important;
    }

    .formio-form > div > nav > ul.pagination {
        display: block;
        padding-right: 0;
    }

        .formio-form > div > nav > ul.pagination > li {
            display: block;
            margin-bottom: 5px;
        }

            .formio-form > div > nav > ul.pagination > li > a, .formio-form > div > nav > ul.pagination > li > span {
                float: none
            }

    #formFooter .actions-wrapper button {
        display: block;
        width: 100%;
    }

        #formFooter .actions-wrapper button + button {
            margin-top: -10px;
        }
}

@media screen and (max-width: 360px) {
    .header-actions .actions-wrapper div .top {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .header-actions .actions-wrapper .profile-link-wrapper:lang(en) {
        right: 0;
        left: unset
    }

    .header-actions .actions-wrapper .profile-link-wrapper:lang(ar) {
        left: 0;
        right: unset
    }

    .header-actions .actions-wrapper div .bottom {
        padding-top: 21px;
    }

        .header-actions .actions-wrapper div .bottom a {
            font-size: 1rem;
        }

    .header-actions .actions-wrapper .profile-link-wrapper {
        justify-content: flex-end;
        top: 20px
    }

    .header-actions .actions-wrapper a.notifications-link {
        top: 7px;
    }

    .header-actions .actions-wrapper a.language-arabic {
        margin-right: 8px
    }

    .header-actions .actions-wrapper a.language-english {
        margin-left: 8px
    }

    .header-actions .actions-wrapper div .bottom a {
        font-size: .875rem;
    }
}

.input-validation-error {
    border-color: red !important;
}

.modal-backdrop {
    background-color: #64676a91 !important;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.nodata {
    font-size: 16px;
    color: #888;
    text-align: center;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gridstatuslabel {
    display: inline;
    padding: 0.2em 0.6em 0.3em !important;
    font-size: 85%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}

.panel .panel-default {
    border-bottom: 1px !important;
}

.panel-default > .panel-heading {
    background-color: #f5f5f5 !important;
    font-size: 19px !important;
    border-bottom: 1px solid #cfdbe2 !important;
}

#username-text-error,
#password-text-error {
    display: none !important;
}

#collapseCategoryCityManagement {
    z-index: 1;
}

.fa-phone:lang(en) {
    transform: rotateY(180deg);
}

.account-expiring {
    right: 0;
    left: 0;
    opacity: 0.6;
    z-index: 1000;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

    .account-expiring:hover {
        opacity: 1.0;
    }


.dropdown-item-user:hover, .dropdown-item-user:focus{
    background-color: transparent !important;
}