@font-face {
    font-family: 'Edmondsans';
    src: url('../../fonts/Edmondsans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bold-font: 'Quicksand', sans-serif;
    --light-font: 'Edmondsans', sans-serif;
    --primary-color: #2557a7;
    --secondary-color: #11a15f;
}

body {
    font-size: 18px;
    font-family: 'Quicksand', sans-serif;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
    background-color: #fff;
}


/* Change Autocomplete styles in Chrome*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    /* -webkit-animation: autofillnone 0s forwards;
    animation: autofillnone 0s forwards; */
    font-size: 18px !important;
    font-family: var(--light-font) !important;
    color: #999999 !important;
    background-color: #f2f2f2 !important;
    /* border: 1px solid green; */
    -webkit-text-fill-color: #999999;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;

}
.p-login-section input:-webkit-autofill,
.p-login-section input:-webkit-autofill:hover,
.p-login-section input:-webkit-autofill:focus{
    padding-left: 15px !important;
}


/* Change Autocomplete styles in Chrome*/

@keyframes autofill {
    100% {
        width: 408px;
        display: block;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: 0 calc(100% + 1px), 0 0;
        background-size: 100% 4px;
        box-shadow: none;
        border: 0;
        font-weight: 300;
        -webkit-font-smoothing: antialiased;
        font-size: 15px !important;
        line-height: 1.5;
        outline: 0 none;
        padding: .25rem 0;
        transition: border-color .2s linear;
        color: #b3b3b3;
        border-radius: 0;
        height: 40px;
    }
}

@-webkit-keyframes autofill {
    100% {
        background-image: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
        width: 408px;
        display: block;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: 0 calc(100% + 1px), 0 0;
        background-size: 100% 4px;
        box-shadow: none;
        border: 0;
        font-weight: 300;
        -webkit-font-smoothing: antialiased;
        font-size: 15px !important;
        line-height: 1.5;
        outline: 0 none;
        padding: .25rem 0;
        transition: border-color .2s linear;
        color: #b3b3b3;
        border-radius: 0;
        height: 40px;
    }
}

@keyframes autofillnone {
    100% {
        background: none;
        width: 408px;
        display: block;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: 0 calc(100% + 1px), 0 0;
        background-size: 100% 4px;
        box-shadow: none;
        border: 0;
        font-weight: 300;
        -webkit-font-smoothing: antialiased;
        font-size: 15px !important;
        line-height: 1.5;
        outline: 0 none;
        padding: .25rem 0;
        transition: border-color .2s linear;
        color: #b3b3b3;
        border-radius: 0;
        height: 40px;
    }
}

@-webkit-keyframes autofillnone {
    100% {
        background: none;
        width: 100%;
        display: block;
        background-color: transparent;
        background-repeat: no-repeat;
        box-shadow: none;
        border: 0;
        font-weight: 300;
        -webkit-font-smoothing: antialiased;
        font-size: 15px !important;
        line-height: 1.5;
        outline: 0 none;
        padding: .25rem 0;
        transition: border-color .2s linear;
        color: #b3b3b3;
        border-radius: 70px;
        height: 40px;
    }
}


/*autofill section styles*/

ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

a:hover {
    text-decoration: none;
    color: #4c6280;
    transition: all 0.3s ease-in-out;
}

a:focus {
    outline: none;
}

a {
    color: #fff;
}

input {
    outline: none;
    font-family: var(--light-font);
}

input:focus {
    outline: none;
}

button {
    outline: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.container-custom {
    max-width: 100%;
}

.login-wrapper {
    background-image: url('../../images/login-bg.jpg');
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    min-height: 100vh;
}

.login-right {
    padding-left: 80px !important;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 95px;
}

.login-logo img {
    width: 360px;
}

.log-in-bg {
    background-color: var(--primary-color);
    border-radius: 0 50px 50px 0;
    min-height: 100vh;
    max-width: 624px;
    width: 100%;
    position: relative;
    padding: 100px 142px 95px 72px;
}

.login-form-head h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: var(--bold-font);
}

.login-form-head p {
    font-family: var(--light-font);
    font-size: 20px;
}

.p-login-section label {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--bold-font);
    font-weight: 700;
}

.p-checkbox-section .p-checkbox {
    text-align: left;
    display: block;
    font-family: var(--light-font) !important;
    font-weight: initial;
}

.p-checkbox-section .p-checkbox:hover {
    color: var(--secondary-color);
}

.p-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.p-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.p-checkbox.p-checkbox--brand>span {
    border: 2px solid var(--secondary-color);
}

.p-checkbox>span {
    border-radius: 40px;
    background: none;
    position: absolute;
    top: 4px;
    left: 0;
    height: 18px;
    width: 18px
}

.p-checkbox.p-checkbox--brand>input:checked~span {
    border: 2px solid var(--secondary-color);
}

.p-checkbox:hover>input:not([disabled]):checked~span,
.p-checkbox>input:checked~span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.p-checkbox>input:checked~span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: none;
}

.p-checkbox>input:checked~span:after {
    display: block;
}

.p-checkbox.p-checkbox--brand>span:after {
    border: solid var(--secondary-color);
}

.p-checkbox>span:after {
    border: solid #bfc7d7;
}

.p-checkbox>span:after {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin-left: -2px;
    margin-top: -6px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0/*rtl:ignore*/
    !important;
    -webkit-transform: rotate(45deg)/*rtl:ignore*/
;
    transform: rotate(45deg)/*rtl:ignore*/
;
}

.p-form__actions .btn-brand {
    border-radius: 50px;
    background-color: var(--secondary-color);
    font-family: var(--bold-font);
}

.p-form__actions .btn-brand:hover {
    /*background-color: var(--primary-color);*/
    color: #fff;
}

.p-input-edit {
    font-family: var(--light-font);
    color: #808080;
    display: inline-block;
    cursor: pointer;
}

.p-input-edit:hover {
    color: var(--secondary-color);
}

.p-edit-form-footer .p-form__actions .btn.btn-default:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.p-email-form label,
.p-pswrd-form label {
    color: var(--secondary-color);
}

.p-email-form,
.p-pswrd-form {
    position: relative;
}

.p-form__actions .btn {
    font-size: 19px;
    font-weight: 700;
    width: 210px;
    height: 54px;
    color: #ffffff;
    border: none;
}

.login-form-left img.shape-login-bg {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    transform: translate3d(66%, 30%, 0);
}

.p-login-section .form-group input.form-control+span.green-border {
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background-color: var(--secondary-color);
    display: block;
}

.p-login-section .form-group input.form-control {
    width: 330px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0 calc(100% + 1px), 0 0;
    background-size: 100% 4px;
    box-shadow: none;
    border: 0;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 1.5;
    outline: 0 none;
    padding: .25rem 0;
    transition: border-color .2s linear;
    color: #fff;
    border-radius: 0;
    height: 40px;
    font-family: var(--light-font);
}

.p-login-section .form-group input::placeholder {
    font-size: 18px;
    color: #fff;
}

.p-login-section .form-group input[type="password"].form-control {
    font-size: 16px;
}

.p-login-section .form-group input[type="password"]::placeholder {
    font-size: 18px;
}

form.p-login-form {
    margin-top: 50px;
}

.p-login-form .p-pswrd-form {
    margin-top: 38px;
}

.p-login-form .p-rmber-form {
    margin-top: 65px;
    margin-bottom: 43px;
    display: flex;
    justify-content: space-between;
}

.forget-psword {
    position: relative;
    z-index: 9;
}


/* DASHBORED
============== */

.p-aside-menu-wrapper {
    position: relative;
    width: 380px;
    max-width: 100%;
    display: inline-block;
    padding-top: 55px;
}

.p-aside-menu {
    background-color: var(--primary-color);
    position: fixed;
    width: 380px;
    height: 100vh;
    top: 0;
    left: 0;
    max-width: 100%;
    border-radius: 0px 30px 30px 0px;
    padding-left: 70px;
    background-image: url('../../images/p-menu-icon-btm.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 300px;
}

.p-aside-menu-head {
    margin-top: 64px
}

.p-aside-menu-head a {
    display: inline-block;
    cursor: pointer;
}

.p-aside-menu-head a img {
    width: 230px;
}

.p-header-logo a img {
    width: 230px;
}

ul.p-aside-menu-nav li {
    line-height: 60px;
}

ul.p-aside-menu-nav li a {
    position: relative;
    display: inline-block;
    font-family: var(--bold-font);
    font-weight: 700;
    font-size: 18px;
}

ul.p-aside-menu-nav li a:hover {
    color: #ffffff;
}

ul.p-aside-menu-nav li a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width .3s;
    bottom: 8px;
    position: relative;
    border-radius: 10px;
}

ul.p-aside-menu-nav li a:hover::after {
    width: 100%;
    /* transition: width .3s; */
}

ul.p-aside-menu-nav li a.current-item::after {
    width: 100%;
    /* transition: width .3s; */
}

ul.p-aside-menu-nav li {
    position: relative;
}

ul.p-aside-menu-nav li .p-report-count {
    position: absolute;
    color: #660099;
    background-color: #fff;
    display: inline-block;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    font-weight: 700;
    font-size: 14px;
}

.p-header-topbar-user-warpper a {
    display: inline-flex;
    overflow: hidden;
    width: 73px;
    height: 73px;
    border-radius: 50%;
}

.p-header-topbar-user-warpper a span {
    display: flex;
    justify-content: center;
    align-items: center
}

.p-header-topbar-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 45px 0 0;
}

.p-header-top-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.p-grid-header {
    padding-right: 50px;
}

.p-welcome-head h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.p-welcome-head {
    background-color: var(--secondary-color);
    width: 391px;
    height: 60px;
    max-width: 100%;
    text-align: center;
    background-size: cover;
    padding-top: 12px;
    border-radius: 80px;
}

.p-page-dashboard {
    background-image: url('../../images/main-bg-2.jpg');
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    height: 100vh;
}

.p-content-sec {
    padding: 0 60px;
}

.p-welcome-sub-head {
    padding-left: 17px;
    padding-top: 25px;
}

.p-welcome-sub-head p {
    margin-bottom: 0;
    color: #808080;
    font-family: var(--light-font);
}

.p-dashboard-portlet {
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 12px;
    border: none;
    margin-bottom: 36px;
    width: 100%;
    height: 197px;
    text-align: center;
    justify-content: center;
}

.p-portlet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.p-portlet-head h3 {
    font-size: 20px;
    font-weight: 700;
}

.p-widget h2 {
    font-size: 90px;
    font-weight: 700;
}

.p-dashboard-col {
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
    max-width: 26%;
}

.p-dashboard-graph {
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 12px;
    width: 408px;
    height: 430px;
    max-width: 100%;
    padding: 20px 50px;
}

canvas {
    display: block;
    max-width: 330px;
    margin: 10px auto;
    height: auto;
}

.p-dasbord-shape img.dash-shape {
    position: fixed;
    right: 0;
    top: 65px;
    z-index: 1;
    height: 100vh;
}

.dropdown-menu {
    width: 340px;
    position: absolute;
    will-change: transform;
    top: 0px;
    left: 0px;
    transform: translate3d(-262px, 85px, 0px);
    display: none;
}

.is-active .dropdown-menu {
    display: block;
}

.p-header-user-dropdown {
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
}

.p-profile-head {
    background-color: var(--primary-color);
}

.p-p-user-detail {
    padding: 16px 22px;
    color: #fff;
}

.p-p-user-detail p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
}

.p-profile-dtls-list .list-group-item a span {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.p-profile-dtls-list .list-group-item {
    padding: 1.1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.p-profile-dtls-list .list-group-item:hover {
    background-color: #f7f7f7;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.p-log-out a.btn {
    border-radius: 50px;
    background-color: var(--secondary-color);
}

.p-log-out .p-btn-gardient {
    font-size: 16px;
    font-weight: 500;
    width: 120px;
    height: 40px;
    color: #ffffff;
    border: none;
    line-height: 26px;
}

.p-profile-footer {
    padding: 16px 22px;
}

.p-dashboard-widgets {
    padding-left: 12px;
    padding-top: 40px;
}

.p-col-item {
    padding-left: 18px;
    padding-right: 18px;
}

.p-dashboard-copy {
    padding-top: 0;
}

.p-grid-item {
    position: relative;
    z-index: 1;
}

button.p-header-mobile-toggler {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.forget-psword a {
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
}

.forget-psword a:hover {
    color: var(--secondary-color);
}

ul.p-aside-menu-nav li.active a::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: width .3s;
    bottom: 8px;
    position: relative;
}


/* #EDIT PROFILE */

.p-profile-round {
    width: 254px;
    height: 254px;
    border-radius: 50%;
    /* transform: rotate(90deg); */
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
}

.p-profile-pic {
    overflow: hidden;
    width: 216px;
    height: 216px;
    border-radius: 50%;
    /* transform: rotate(-90deg); */
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.75);
}

.p-profile-pic img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.p-profile_change {
    text-align: center;
}

.p-prof-edit {
    height: 77px;
    width: 77px;
    display: inline-block;
    position: absolute;
    right: -28px;
    top: 0;
}

.p-prof-edit a {
    display: block;
    width: 80px;
    height: 77px;
    line-height: 17px;
    cursor: pointer;
}

.p-profile-round::after {
    content: "";
    position: absolute;
    top: 0;
    right: -27px;
    z-index: -1;
    background-image: url("../../images/h-edit-icon-bg.svg");
    height: 77px;
    width: 77px;
    display: inline-block;
}

.p-profile-round::before {
    content: "";
    position: absolute;
    /*background-image: url("../../images/profile-element-1.svg");*/
    display: inline-block;
    left: -19px;
    bottom: -11px;
    z-index: -1;
    width: 232px;
    height: 100px;
}

.p-form-field .form-rounded {
    border-radius: 50px;
}

.p-edit_profile {
    justify-content: center;
    padding-bottom: 60px;
}

.p-form-field input.form-control {
    border: none;
    box-shadow: none;
    height: 65px;
    width: 100%;
    padding: 20px 50px 20px 25px;
    color: #999999;
    background-color: #f2f2f2;
    font-size: 18px;
    font-family: var(--light-font);
}

.p-blog-create h3 {
    text-align: left;
}

.blog-form .p-blog-create .p-c-edit-item:first-child {
    padding: 15px 30px;
}

.blog-form .p-blog-create .p-c-edit-item:first-child h3 {
    padding: 0;
}

.p-form-field {
    width: 546px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    max-width: 100%;
    position: relative;
}

.p-form-field .p-input-edit {
    position: absolute;
    right: 25px;
    top: 18px;
    z-index: 99;
}

.p-form-row {
    text-align: center;
    margin-top: 40px;
}

.p-btn-text-edit {
    position: absolute;
    right: 0;
    top: 0;
}

.p-btn-text-edit .p-btn-edit:hover {
    color: #dadada;
}

.p-btn-text-edit .p-btn-edit {
    color: #808080;
    font-size: 20px;
    line-height: 51px;
    padding: 6px 22px;
}

.p-edit-form-footer {
    margin-top: 35px;
}

.p-edit-form-footer .p-form__actions .btn {
    text-transform: uppercase;
}

.p-edit-form-footer .p-form__actions .btn.btn-default {
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    margin-left: 34px;
    line-height: 40px;
    color: var(--secondary-color);
}

.p-edit-shape img.edit-shape-1 {
    position: fixed;
    right: 0;
    top: 313px;
    z-index: 1;
    height: auto;
}

.p-edit-shape img.edit-shape-2 {
    position: fixed;
    left: calc(60px + 275px);
    top: -10px;
    z-index: 1;
    height: auto;
    width: 275px;
}


/*Reset your password*/

.p-reset-field .p-form__actions .btn {
    width: auto;
    padding: 0.375rem 1.75rem;
}

.p-reset-field .p-form__actions {
    padding-top: 13px;
}

.p-reset-form {
    margin-bottom: 150px;
}


/*Reset your password*/


/*crop profile popup*/

.p-crop-profile-modal .modal-dialog .modal-content {
    color: #ffffff;
    background-color: #202020;
}

.p-crop-profile-modal .modal-dialog .modal-content .modal-header .close {
    color: #ffffff;
}

.p-profile-upload-btn input {
    width: 55%;
    display: inline-block;
    border-radius: 50px;
}

.p-profile-upload-btn {
    text-align: center;
}

.upload-profile-pic-container .croppie-container .cr-boundary {
    width: 450px !important;
    height: 450px !important;
    max-width: 100% !important;
}

.p-form__actions .btn.btn-round {
    border-radius: 50px;
}

.p-crop-profile-modal .p-form__actions .btn {
    width: 160px;
    font-size: 18px;
}

.p-crop-profile-modal .modal-footer.p-form__actions {
    border-top: none;
    justify-content: center;
}


/*crop profile popup*/

.p-edit-shape img.edit-shape-1.p-candid-edit {
    right: 0;
    bottom: 0;
    height: auto;
    top: auto;
}

.p-edit-shape img.edit-shape-2.p-candid-edit {
    left: 255px;
    top: 142px;
    height: auto;
    width: 196px;
}

.p-candidate-edit-profile .p-profile-round::before {
    content: none;
}

.p-candidate-edit-profile .p-profile-round::after {
    content: none;
}

.p-candidate-edit-profile .p-profile-round {
    width: 155px;
    height: 155px;
}

.p-candidate-edit-profile .p-profile-round .p-profile-pic img {
    width: 100%;
}

.p-candidate-edit-profile .p-profile-round .p-profile-pic {
    width: 131px;
    height: 131px;
}

.p-candidate-edit-profile {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.p-candi-prof-details {
    text-align: left;
    padding-left: 35px;
}

.p-inner-nav-top-col .p-back-button {
    position: absolute;
    left: 0;
    top: 0;
}

.p-inner-nav-top-col {
    max-width: 25px;
}

.p-inner-nav-top-col .p-back-button a:hover {
    color: #c039cf;
}

.p-inner-nav-top-col {
    position: relative;
    padding: 0;
}

.p-inner-nav-top-col .p-back-button a {
    font-size: 60px;
    display: inline-block;
    height: 50px;
    line-height: 0;
}

.p-candi-prof-details h2 {
    font-size: 30px;
    font-weight: 700;
}

.p-candi-prof-details h3 {
    font-size: 25px;
    font-weight: 300;
    color: #b3b3b3;
}

.p-c-edit-item {
    background-color: #282828;
    border-radius: 50px;
    padding: 15px 30px;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.p-c-edit-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.p-c-edit-item p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.p-c-edit-item .form-control {
    display: block;
    width: 100%;
    height: auto !important;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #b3b3b3;
    background-color: #282828;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    transition: none;
    background: transparent;
}

.p-c-edit-item textarea {
    resize: none;
}

.p-c-edit-item .form-control:focus {
    box-shadow: none;
}


/* candidates edits */

.p-candid-edit-details {
    margin-top: 35px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 70.666667%;
}

.p-c-btn-item .p-candidate-btn span.p-round-btn-gr {
    background: -moz-linear-gradient(-14678.5% 1078.23% 0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background: -webkit-gradient(linear, -14678.5% 1078.23%, -14676.37% 1078.23%, color-stop(0, rgba(242, 69, 255, 1)), color-stop(0.2135, rgba(170, 43, 203, 1)), color-stop(0.3704, rgba(124, 26, 170, 1)), color-stop(0.4487, rgba(106, 19, 157, 1)), color-stop(0.4919, rgba(97, 16, 150, 1)), color-stop(0.6291, rgba(73, 7, 132, 1)), color-stop(0.7559, rgba(58, 2, 122, 1)), color-stop(0.8615, rgba(53, 0, 118, 1)), color-stop(1, rgba(53, 0, 118, 1)));
    background: -o-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#F245FF', endColorstr='#350076' ,GradientType=0)";
    background: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    width: 47px;
    height: 47px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.p-c-btn-item .p-candidate-btn p {
    display: inline-block;
    color: #b3b3b3;
    font-size: 15px;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 0;
}

.p-c-btn-item .p-candidate-btn:hover p {
    color: #c73bd5;
    transition: all 0.3s ease-in-out;
}

.p-c-btn-item {
    margin-bottom: 10px;
}

button.p-candidate-btn {
    background: transparent;
    padding: 0;
    border: none;
}

.p-candid-edit-options {
    margin-top: 35px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 29.333333%;
    display: flex;
    justify-content: flex-end;
}

.p-candidate-edit-items {
    padding-left: 16px;
}

.p-c-edit-item select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.p-c-edit-item select.form-control option {
    color: #b3b3b3;
    background-color: #333;
}


/* view repoted problems */

.p-inner-heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.p-inner-heading {
    margin-left: 18px;
}

.p-main-heading-gradient {
    background: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    border-radius: 50px;
    padding: 2px;
}

.p-head-text-bg {
    background-color: #202020;
    border-radius: 50px;
    padding: 10px 36px;
}

.p-inner-head-wrap {
    max-width: 100%;
    display: flex;
}

.p-inner-head-wrap .p-back-button {
    position: relative;
}

.p-vr-problems {
    padding: 70px 15px 0;
}

.p-vr-problems .p-candidate-edit-profile {
    margin-left: 40px;
}

.p-rp-issue {
    position: relative;
    border-radius: 20px;
    width: 100%;
    padding: 35px 35px 40px;
    background-color: #282828;
}

.p-rp-issue span {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 10px;
    font-weight: 400;
    color: #b3b3b3;
}

.p-rp-issue .p-chat-text {
    background-color: #282828;
    border: none;
    font-size: 17px;
    color: #b3b3b3;
    outline: none;
    resize: none;
    width: 100%;
}

.p-reported-issue {
    margin-top: 70px;
}

.p-btn-gradient-sm {
    background: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
}

.p-inner-foot-btns .p-btn-small {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 10px 10px;
    width: 144px;
    letter-spacing: 1px;
    background-repeat: no-repeat;
    border: none;
    text-align: center;
    color: #fff;
    margin-right: 24px;
}

.p-inner-foot-btns .p-btn-small:last-child {
    margin: 0;
}

.p-inner-foot-btns .p-btn-small.p-btn-gradient-sm:hover {
    border: 1px solid #fff;
}

.p-inner-foot-btns .p-btn-border {
    border: 1px solid #fff;
}

.p-inner-foot-btns .p-btn-border:hover {
    border: 1px solid #f245ff;
    background: linear-gradient(90deg, #f245ff 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
}

.p-vr-issues .p-rp-issue {
    margin-bottom: 45px;
}

.p-shape-elemets .p-shape-element-1 {
    position: fixed;
    z-index: -1;
}

.p-shape-elemets .p-shape-element-2 {
    position: fixed;
    z-index: -1;
}

.p-vr-elment-shape .p-shape-element-1 {
    right: 110px;
    top: 0;
}

.p-vr-elment-shape .p-shape-element-2 {
    right: 50px;
    bottom: -2px;
}


/* view repoted problems */


/* push notifications */

.p-notify-shapes .p-shape-element-1 {
    right: 0;
    top: 160px;
}

.p-notify-shapes .p-shape-element-2 {
    left: 333px;
    bottom: 0px;
}

.p-notifi-items input[type=checkbox]+label {
    display: inline-block;
    cursor: pointer;
    padding: 0.2em;
    margin: 0;
}

.p-notifi-items input[type=checkbox] {
    display: none;
}

.p-notifi-items input[type=checkbox]+label:before {
    content: "";
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    width: 17px;
    height: 17px;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 20px;
    color: transparent;
    transition: .2s;
    vertical-align: middle;
}

.p-notifi-items input[type=checkbox]+label:active:before {
    transform: scale(0);
}

.p-notifi-items input[type=checkbox]:checked+label:before {
    background: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    border-color: transparent;
    color: #fff;
    width: 17px;
    height: 17px;
    border: none;
}

.p-notifi-items input[type=checkbox]:disabled+label:before {
    transform: scale(1);
    border-color: #aaa;
}

.p-notifi-items input[type=checkbox]:checked:disabled+label:before {
    transform: scale(1);
    background: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    border-color: transparent;
    width: 17px;
    height: 17px;
    border: none;
}

.p-grps-head h3 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 3px;
}

.p-notifi-items label {
    font-size: 15px;
    font-weight: 400;
    color: #b3b3b3;
}

.p-notifi-items {
    margin-bottom: 20px;
}

.p-notify-grps .p-add-grp-btn {
    font-size: 15px;
    font-weight: 400;
    display: block;
    padding-left: 5px;
}

.p-notify-grps .p-add-grp-btn span {
    color: #b3b3b3;
    display: inline-block;
    padding-left: 20px;
}

.p-notify-grps .p-add-grp-btn:hover,
.p-notify-grps .p-add-grp-btn:hover span {
    color: #c73bd5;
    transition: all 0.3s ease-in-out;
}

.p-notifi-items label:hover {
    color: #c73bd5;
    transition: all 0.3s ease-in-out;
}

.p-notify-right-item h3 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 3px;
}

.p-notify-right-item a {
    position: relative;
    display: flex;
    align-items: center;
}

.p-notify-right-item p {
    font-size: 15px;
    font-weight: 400;
    color: #b3b3b3;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 172px;
    margin: 0;
}

.p-notify-right-item span {
    color: #b3b3b3;
    font-size: 9px;
    display: inline-block;
}

.p-notify-right-item {
    margin-top: 50px;
}

.p-p-notofy-right {
    padding-left: 62px;
}

.p-push-notifi-wrap {
    margin-bottom: 50px;
}


/* push notifications */


/* view report styles */

.p-report-item {
    position: relative;
    text-align: center;
}

.p-report-item-wrap .p-report-round {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 62px;
    font-weight: 700;
    color: #fff;
    background-color: #282828;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    line-height: 175px;
    padding: 20px 20px;
}

.p-report-round {
    position: relative;
}

.p-report-text {
    text-align: center;
    padding-top: 25px;
}

.p-report-text p {
    font-size: 14px;
    color: #fff;
}

.p-report-text p span {
    font-weight: 700;
}

.p-report-item-wrap {
    text-align: center;
    display: inline-block;
    position: relative;
}

.p-view-reports [class*="col-"] {
    margin-bottom: 30px;
    -ms-flex: 0 0 23%;
    flex: 0 0 100%;
    max-width: 23%;
}

.p-view-reports {
    padding: 75px 0 45px;
}

.p-report-round::before {
    content: "";
    background: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 32.28%, rgba(124, 26, 170, 1) 55.99%, rgba(106, 19, 157, 1) 67.84%, rgba(97, 16, 150, 1) 69.76%, rgba(73, 7, 132, 1) 75.84%, rgba(58, 2, 122, 1) 81.47%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    position: absolute;
    left: -3px;
    top: -3px;
    width: 182px;
    height: 182px;
    border-radius: 50%;
    display: inline-block;
    z-index: -1;
}

.p-report-shape-el img {
    position: absolute;
    top: -3px;
    left: 18px;
    z-index: -1;
}

.vr-shape-el-2 img {
    left: 28px;
    top: 0;
}

.vr-shape-el-3 img {
    top: 1px;
    left: 7px;
}

.vr-shape-el-4 img {
    top: -5px;
    left: 53px;
}

.vr-shape-el-5 img {
    top: -3px;
    left: -9px;
}

.vr-shape-el-6 img {
    bottom: 70px;
    left: -6px;
    top: initial;
}

.vr-shape-el-2 .p-report-round::before {
    transform: rotate(55deg);
}

.vr-shape-el-3 .p-report-round::before {
    transform: rotate(90deg);
}

.vr-shape-el-4 .p-report-round::before {
    transform: rotate(90deg);
}

.vr-shape-el-5 .p-report-round::before {
    transform: rotate(220deg);
}

.vr-shape-el-6 .p-report-round::before {
    transform: rotate(-90deg);
}

.vr-shape-el-7 .p-report-round::before {
    transform: rotate(-60deg);
}

.vr-shape-el-8 .p-report-round::before {
    transform: rotate(40deg);
}


/* view report styles */


/* SECOND COMBINED CSS */

.p-module-border-wrap {
    width: 100%;
    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, #f245ff, #350076);
    padding: 3px;
    border-radius: 50px;
}

.p-module form {
    background: #202020;
    color: #333;
    height: 100%;
    width: 100%;
    display: flex;
    padding: 15px;
    border-radius: 50px;
}

.p-search-filter-icon,
.p-search-candidates {
    width: 65px;
}

.p-search-field {
    width: calc(100% - 50px);
}

.p-search-candidates img {
    width: 25px;
    margin-left: 10px;
}

form .p-search-field input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #666666;
}

.p-search-filter-icon {
    width: 50px;
}

.p-search-filter-icon img {
    float: right;
    margin-right: 10px;
}

.p-filter-btn {
    background-image: url('../../images/filter.svg');
    background-color: transparent;
    background-repeat: no-repeat;
    width: 28px;
    border: none;
    text-indent: -9999px;
    outline: none;
    float: right;
    margin-right: 10px;
    height: 26px;
    /*cursor: auto !important;*/
}

.p-single-candidate {
    padding: 40px 0;
}

.p-single-candidate .p-each-candidate {
    background-color: #282828;
    height: 45px;
    border-radius: 50px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 15px;
    position: relative;
}

.p-single-candidate .p-each-candidate:hover:after {
    content: '';
    position: absolute;
    background: linear-gradient(to right, #f245ff, #350076);
    width: calc(100% + 2px);
    height: 47px;
    top: -1px;
    left: -1px;
    border-radius: 50px;
    z-index: -1;
}

.p-single-candidate .p-each-candidate .p-candidate-online {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
}

.p-single-candidate .p-each-candidate .p-candidate-online>span {
    border-radius: 10px;
    height: 12px;
    width: 12px;
    background-color: #b3b3b3;
    display: block;
    margin: auto;
}

.p-single-candidate .p-each-candidate .p-candidate-online>span.p-online {
    background-image: linear-gradient(to right, #f245ff, #350076);
}

.p-single-candidate .p-each-candidate .p-candidate-avtar img {
    border-radius: 30px;
    width: 30px;
    height: 30px;
}

.p-single-candidate .p-each-candidate .p-candidate-name,
.p-single-candidate .p-each-candidate .p-candidate-place {
    width: 40%;
    padding: 0 19px;
    color: #b3b3b3;
}

.p-single-candidate .p-each-candidate .p-candidate-edit-profile {
    width: calc(20% - 75px);
    text-align: right;
    padding-right: 25px;
    min-width: 60px;
}

.p-single-candidate .p-each-candidate .p-candidate-edit-profile a {
    color: #b3b3b3;
}

.p-single-candidate .p-each-candidate .p-candidate-edit-profile a:hover {
    color: #de3ef0;
}

ul.p-aside-menu-nav li.active a::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: width .3s;
    bottom: 8px;
    position: relative;
}

.dash-shape2 {
    left: 380px;
    height: 325px;
    top: 270px;
    position: fixed;
    z-index: 1;
}

.p-problems-title {
    margin-bottom: 60px;
}

.p-reported-problems.p-single-candidate .p-each-candidate .p-candidate-edit-profile {
    width: calc(20% - 30px) !important;
}

.p-reported-problems.p-single-candidate .p-candidate-avtar {
    padding-left: 25px;
}

.p-reported-problems.p-single-candidate .p-each-candidate .p-candidate-name,
.p-reported-problems.p-single-candidate .p-each-candidate .p-candidate-place {
    width: 30%;
}

.p-reported-problems.p-single-candidate .p-each-candidate .p-problem-status {
    width: 20%;
    color: #b3b3b3;
}

.p-Unresolved .p-candidate-name,
.p-Unresolved .p-candidate-place,
.p-Unresolved .p-problem-status {
    font-weight: 900;
}

.p-dasbord-shape img.dash-shape3 {
    position: fixed;
    right: 0;
    top: 280px;
    z-index: 1;
    height: 450px;
}

.p-dasbord-shape img.dash-shape4 {
    position: fixed;
    right: 20%;
    top: 0px;
    z-index: 1;
    width: 130px;
    height: 110px;
}

.p-single-candidate .p-each-candidate.p-Unresolved::after {
    content: '';
    position: absolute;
    background: linear-gradient(to right, #f245ff, #350076);
    width: calc(100% + 2px);
    height: 47px;
    top: -1px;
    left: -1px;
    border-radius: 50px;
    z-index: -1;
}


/* SECOND COMBINED CSS */

.p-c-edit-item .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 20px;
    font-size: 16px;
    outline: none;
}

.p-c-edit-item .select2-container .select2-selection--single {
    height: auto;
    outline: none !important;
}

.page-candidate-edit .select2-dropdown {
    background-color: #282828;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
}

.page-candidate-edit .select2-dropdown .select2-results__option {
    color: #b3b3b3;
    font-size: 16px;
    padding: 6px 19px;
}

.p-candidate-edit-items .p-c-edit-item:first-child {
    padding: 15px 10px
}

.p-candidate-edit-items .p-c-edit-item:first-child h3 {
    padding: 0px 30px 0 20px;
}

.page-candidate-edit .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background-color: #333;
}

#company_nm {
    padding-left: 20px;
}

.p-c-btn-item input[type=radio] {
    display: none;
}

.p-c-btn-item label.button-label {
    cursor: pointer;
}

.p-c-edit-form .modal-footer {
    border-top: none;
    padding: 17px 17px;
    justify-content: flex-start;
    margin-top: 20px;
}

.p-c-edit-item .form-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

.p-c-edit-item .form-group.p-experience-list .form-control {
    width: 148px;
    display: inline-block;
    padding-right: 8px;
}

.p-search-field .select2-container .select2-selection--single {
    height: auto;
    outline: none !important;
}

.page-re-problem .select2-dropdown {
    background-color: #202020;
}

.no-record {
    text-align: center;
}

.p-admin-row-left {
    justify-content: flex-start;
    align-items: center;
}

.p-admin-row-right {
    justify-content: flex-end;
    align-items: center;
}

.p-form-issue-chat .p-inner-foot-btns {
    margin-bottom: 60px;
}

.p-form-issue-chat .form-group {
    margin-bottom: 0;
}


/* Scrollbar Styling */

.p-rp-chat-wrapper::-webkit-scrollbar {
    width: 8px;
}

.p-rp-chat-wrapper::-webkit-scrollbar-track {
    background-color: #333333d4;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.p-rp-chat-wrapper::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #383838;
}

.p-admin-row-left,
.p-admin-row-right {
    margin-bottom: 45px;
}

.p-rp-issue.p-mb-0 {
    margin-bottom: 0;
}

.p-rp-chat-wrapper {
    margin-bottom: 45px;
}

.p-rp-chat-wrapper div.row:last-child {
    margin-bottom: 0;
}

.p-c-edit-item .form-company {
    padding-bottom: 10px;
}

#job_title {
    padding-left: 20px;
}

.datepicker {
    background-color: black;
    width: auto;
    position: absolute;
    transform: initial;
}

.p-date-picker input.form-control {
    background-color: #282828;
    border-radius: 50px;
    margin-bottom: 8px;
    font-size: 15px;
    background-image: -moz-linear-gradient(-212.48% 201.66% 0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background-image: -webkit-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background-image: -o-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background-image: -ms-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background-image: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    width: 248px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0 calc(100% + 1px), 0 0;
    background-size: 100% 4px;
    box-shadow: none;
    border: 0;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
    padding: .25rem 0;
    transition: border-color .2s linear;
    color: #b3b3b3;
    border-radius: 0;
    height: 40px;
}

.select2-results__options {
    height: 150px;
    overflow: auto;
}

#select2-founded-container {
    padding-left: 0px;
}

.p-reply .p-rp-issue {
    position: relative;
    display: flex;
    align-items: center;
}

.p-reply .p-rp-issue .p-chat-text {
    margin-right: 15px;
}

.p-reply .p-rp-issue .p-chat-text::-webkit-scrollbar {
    width: 8px;
}

.p-reply .p-rp-issue .p-chat-text::-webkit-scrollbar-track {
    background-color: #333333d4;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.p-reply .p-rp-issue .p-chat-text::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #383838;
}

.p-push-notifi-page .modal .modal-content .modal-header {
    border-bottom: none;
}

.p-push-notifi-page .modal .modal-content .modal-body::-webkit-scrollbar {
    width: 10px;
}

.p-push-notifi-page .modal .modal-content .modal-body::-webkit-scrollbar-track {
    background-color: #333333d4;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.p-push-notifi-page .modal .modal-content .modal-body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #383838;
}

.p-c-edit-item .select2-container--default .select2-selection--multiple {
    background-color: #282828;
}

.p-c-edit-item .select2-container--default .select2-selection--multiple {
    border: none;
}

.p-c-edit-item .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
}

.p-c-edit-item .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #282828;
    font-size: 16px;
}

.p-page-dashboard .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background-color: #4a4a4a;
}

.p-page-dashboard .select2-dropdown {
    background-color: #282828;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
}

.p-page-dashboard .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #333;
}

.p-page-dashboard .select2-dropdown .select2-results__option {
    color: #b3b3b3;
    font-size: 16px;
    padding: 6px 19px;
}

.p-c-edit-item .select2-container--default ul.select2-selection__rendered {
    background-color: #282828;
}

.p-c-edit-item .select2-container--default span.select2-selection.select2-selection--multiple {
    background-color: #282828;
}

span.candidate-name {
    padding-left: 0px;
    margin-left: -67px !important;
}

a.status.job-status {
    color: #b3b3b3 !important;
}

a#edit-profile {
    margin-left: -25px;
}

.text-danger {
    color: #f44336!important;
    font-size: 16px;
}

.p-candi-pagination .pagination .page-link {
    background-color: #282828;
    color: #ce3adb;
}

.p-candi-pagination .page-item.active .page-link {
    color: #fff;
    background-color: #340075;
    border-color: #340075;
}

.p-search-close-btn button {
    background-image: url('../../images/close-btn.png');
    background-color: transparent;
    background-repeat: no-repeat;
    width: 18px;
    border: none;
    text-indent: -9999px;
    outline: none;
    float: right;
    margin-right: 10px;
    height: 18px;
    background-size: contain;
    margin-top: 4px;
}

.p-search-user .p-search-field {}

.p-search-user .p-search-field input:-webkit-autofill,
.p-search-user .p-search-field input:-webkit-autofill:active,
.p-search-user .p-search-field input:-webkit-autofill:focus {
    -webkit-animation: autofillnone 0s forwards;
    animation: autofillnone 0s forwards;
    font-size: 15px !important;
}


/**/

.p-auth-prof-pic {
    overflow: hidden;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-auth-prof-pic img {
    max-width: 100%;
}

.uploadOuter {
    text-align: center;
    padding: 20px;
}

.dragBox {
    width: 230px;
    height: 43px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    line-height: 41px;
    color: #999;
    border: 1px dashed #8c8c8c;
    display: inline-block;
    transition: transform 0.3s;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
}

.dragBox input[type="file"] {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
}

.draging {
    transform: scale(1.1);
}

.p-image-up-edit::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: -1;
    background-image: url('../../images/h-edit-icon-bg.svg');
    height: 47px;
    width: 47px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
}

.p-blog-banner-up {
    position: relative;
    margin-top: 20px;
}

.p-image-up-edit {
    height: 22px;
    width: 22px;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 99;
}

.p-blog-banner-img {
    background-color: #ffffff;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.p-image-up-edit a {
    display: block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    cursor: pointer;
}

.p-blog-btn-top a {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: -moz-linear-gradient(-212.48% 201.66% 0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background: -webkit-gradient(linear, -212.48% 201.66%, -212% 201.66%, color-stop(0, rgba(242, 69, 255, 1)), color-stop(0.2135, rgba(170, 43, 203, 1)), color-stop(0.3704, rgba(124, 26, 170, 1)), color-stop(0.4487, rgba(106, 19, 157, 1)), color-stop(0.4919, rgba(97, 16, 150, 1)), color-stop(0.6291, rgba(73, 7, 132, 1)), color-stop(0.7559, rgba(58, 2, 122, 1)), color-stop(0.8615, rgba(53, 0, 118, 1)), color-stop(1, rgba(53, 0, 118, 1)));
    background: -o-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#F245FF', endColorstr='#350076' ,GradientType=0)";
    background: linear-gradient(90deg, rgba(242, 69, 255, 1) 0%, rgba(170, 43, 203, 1) 21.35%, rgba(124, 26, 170, 1) 37.04%, rgba(106, 19, 157, 1) 44.87%, rgba(97, 16, 150, 1) 49.19%, rgba(73, 7, 132, 1) 62.91%, rgba(58, 2, 122, 1) 75.59%, rgba(53, 0, 118, 1) 86.15%, rgba(53, 0, 118, 1) 100%);
    background-repeat: no-repeat;
    display: inline-block;
    text-align: center;
    padding: 10px 40px;
}

.p-blog-btn-top {
    text-align: right;
    margin-bottom: 30px;
}

.note-toolbar {
    background-color: #e6cef7;
}

.note-dropdown-menu {
    background-color: #e6cef7;
}

.note-dropdown-menu>li>a {
    color: #4c4c4c;
}

.p-single-candidate .p-each-candidate .p-blog-edit {
    padding-right: 100px;
}
.p-aside-menu-scroll {
    height: 560px;
    overflow: hidden;
    overflow-y: auto;
}
.p-aside-menu-scroll::-webkit-scrollbar-track
{
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border-radius: 10px;
    background-color: #0103073d;
}

.p-aside-menu-scroll::-webkit-scrollbar
{
    width: 10px;
    background-color: transparent;
}

.p-aside-menu-scroll::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #0c3981;
}
.p-curency-sign h5{
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color:var(--primary-color);

}
.p-curency-sign{
    padding: 0 5px;
    /*text-align: right;*/
    padding-top: 12px;
    width: 10%;
    text-align: center;
}

.p-adress-item .p-adress-edit-item input:focus{
    outline: none;
    box-shadow: none;
}
.p-adress-item .p-adress-edit-item .form-control{
    margin-bottom: 10px;
}
.p-adress-item .p-adress-edit-item select.form-control{
    padding-left: 15px;
    font-size: 15px;
}
.p-view-reject .h-candi-prof-details{
    padding-left: 18px;
}
.p-grid-item-wrapper .h-single-pet-sitter .h-each-pet-sitter{
    padding: 8px 20px;
    height: auto;
}
.p-login-section .form-group {
    width: 330px;
    max-width: 100%;
}
.h-c-edit-item select.form-control.select-item{
    background-repeat: no-repeat;
    -webkit-appearance: none !important;
    background-size: 13px;
    background-position: 97% 15px;
    background-image: url("https://img.icons8.com/ios-filled/24/000000/expand-arrow.png");
}
.h-single-pet-sitter .recruiter-list .h-each-pet-sitter .h-pet-sitter-name{
    word-break: break-all;
}
.h-pet-sitter-record span a{
    display: flex;
}
.p-form__actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.h-candi-pagination{
    float: none !important;
}
.h-candi-pagination ul{
    justify-content: center;
}
#showModal.p-modal{
    padding-right: 0;
}

.pet-news-tab .m-portlet__body a.nav-link.m-tabs__link.active {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    outline: none;
    color: #666666;
}

.pet-news-tab .m-portlet__body .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057 !important;
    background-color: #fff !important;
}

.pet-news-tab .m-portlet__body a.nav-link.m-tabs__link {
    color: #666666 !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.pet-news-tab .tab-content {
    color: #666666;
}

.pet-news-tab .tab-content .nav-tabs .nav-link {
    border: none !important;
}

.pet-news-tab .tab-content .nav-tabs .nav-item {
    padding: 20px 15px 0px 15px !important;
}

.pet-news-tab .tab-content .note-editor.note-airframe
.note-editing-area .note-editable,
.note-editor.note-frame .note-editing-area .note-editable {
    background-color: #F2F2F2 !important;
    font-size: 16px;
    font-family: var(--light-font);
    color: #666666 !important;
}
.star-rating {
    direction: rtl;
    display: inline-flex;
}

.star-rating input[type=radio] {
    display: none
}

.star-rating label {
    color: #bbb;
    font-size: 22px;
    padding: 0;
    cursor: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding-left: 3px;
}

.star-rating input[type=radio]:checked ~ label {
    color: var(--primary-color);
}
/** dispute message modal**/
.modal {
    z-index: 9999999 !important;
}
.btn-group-wrapper .btn{
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-family: var(--heading-font);
    padding: 10px 30px !important;
    border-radius: 30px !important;
    display: inline-block !important;
}
.btn-group-wrapper .btn.btn-default{
    background-color: var(--primary-color);
    color: #fff;
    display: block;
    height: 44px;
    line-height: 22px;
}
.btn-group-wrapper{
    margin-top: 20px;
}
.modal-text-area label {
    color: #000;
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 14px;
    font-weight: 600;
}

#dispute-modal:before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
}
.modal-backdrop{
    display: none;
}
/** end dispute message modal**/
