﻿:root {
    --blue: #007aff;
    --blue-super-dark: #122c66;
    --blue-dark: #173780;
    --blue-mid-light: #3d61b5;
    --blue-light: #e9edf3;
    --orange-color: #ff8a00;
    --secondary-color: #c7442a;
    --background-color: #f7f7f7;
    --text-color: #333333;
    --text-dark: #001935;
    --input-border: rgba(119,119,119,.3);
    /**/
    /* for body background #f0f3fa */
    /* for body background #e6e6e6 */
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    background-color:var(--blue-light);
    color: #001935;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/*Left side Sticky Quick links Start*/
.left-side-sticky {
    position: fixed;
    top: 99px;
    left: 18px;
    bottom: 0;
    margin: auto;
    z-index: 8;
    display: block;
}

.left-side-sticky > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 64px;
}

.left-side-sticky > ul > li {
    display:flex;
}

.left-side-sticky > ul > li > a {
    background-color:#FFFFFF;
    text-decoration: none;
    padding: 5px;
    border-radius:100%;
}

.left-side-sticky > ul > li span {
    width: 100%;
    vertical-align: middle;
}

.left-side-sticky > ul > li > a > img {
    margin-right: 9px;
    width: 70px;
    height: 70px;
}

.left-side-sticky > ul > li .forward-arrow:before {
    right: -16px
}
/*Left side Sticky Quick links End*/

/*Right side Sticky Quick links Start*/
.right-side-sticky {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 150px;
    z-index: 8;
    display: block;
}

    .right-side-sticky > ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        width: 64px;
    }

        .right-side-sticky > ul > li {
            margin-top: 5px;
            transition: .5s all;
            -webkit-transition: .5s all;
            width: 80px;
            height: 80px;
            position: relative;
            right: 0;
            float: right;
        }

            .right-side-sticky > ul > li > a {
                font-size: 1.2rem;
                color: #FFFFFF;
                text-decoration: none;
                white-space: nowrap;
                display: block;
                padding: 8px 9px 8px;
                position: relative;
                font-family: 'Arial';
                line-height: 1.5;
            }

            .right-side-sticky > ul > li span {
                width: 100%;
                vertical-align: middle;
            }

.right-side-sticky > ul > li > a > img {
    margin-right: 9px;
    width: 70px;
    height: 70px;
}

.right-side-sticky > ul > li .forward-arrow:before {
    right: -16px
}
/*Right side Sticky Quick links End*/

a {
    outline: medium none !important;
    color: var(--orange-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

    a:focus {
        color: #ff8a00;
        text-decoration: none !important;
    }

    a:hover {
        color: #ff8a00;
        text-decoration: none !important;
    }

input {
    outline: medium none !important;
    color: #ff8a00;
}

.full-time {
    color: #186fc9;
}

.full-time svg{
    stroke: #186fc9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    color: #001935;
    margin-top: 0px;
    font-weight: 600;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: inherit;
    }

h1 {
    font-size: 42px;
    font-style: normal;
}

h2 {
    font-size: 28px;
    line-height: 38px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-weight: normal;
    line-height: 1.7;
}

small {
    font-size: 80%;
}

*::-moz-selection {
    background: #ff8a00;
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background: #ff8a00;
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: #ff8a00;
    color: #ffffff;
    text-shadow: none;
}

.container-fluid {
    padding: 0 100px;
}

.shadow-custome {
    box-shadow: 0 4px 24px 0 rgba(62, 57, 107, .18);
}

/***************  BG and Text Color ***************/

.bg-dark-blue {
    background-color: var(--blue-dark);
}

.bg-mid-blue {
    background-color: var(--blue-mid-light);
}

.bg-light-blue {
    background-color: var(--blue-light);
}

.text-light {
    color: #979ec2 !important;
}

.text-primary {
    color: #ff8a00 !important;
}

.text-mid-blue {
    color: var(--blue-mid-light);
}

.text-blue {
    color: var(--blue-dark);
}

.bg-main {
    background-color: #e6e6e6;
}

.badge-light-primary {
    background: #d3eafd;
    color: var(--blue-mid-light);
}

.badge-light-danger {
    background: #fdd9d7;
    color: #f44336;
}

.badge-light-warning {
    background: #FFF0D3;
    color: #E6A11E;
}

.status-light-primary {
    background: #504cfe1a;
    color: #504cfe;
    border: 1px solid #504cfe;
}

.status-light-success {
    background: #1481601a;
    color: #14a077;
    border: 1px solid #14a077;
}

.status-light-warning {
    background: #ffb3211a;
    color: #ffb321;
    border: 1px solid #ffb321;
}
.status-light-danger {
    background: #fdd9d7;
    color: #f44336;
    border: 1px solid #f44336;
}
.status-light-light {
    background: #1481601a;
    color: var(--blue-light);
    padding: 3px 5px;
    border: 1px solid var(--blue-light);
}

.status-light-light:hover,.status-light-light:active {
    background: var(--blue-light);
    color: var(--blue-dark);
    padding: 3px 5px;
    border: 1px solid var(--blue-light);
}

.button-status {
    font-weight: 600;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    padding:1px 10px;
    font-size:11px;
}


.badge {
    --bs-badge-padding-x: 0.5em;
    --bs-badge-padding-y: 0.35em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 600;
    --bs-badge-color: #ffffff;
    --bs-badge-border-radius: 2px;
    display: inline-block;
}

.bd-callout-info {
    --bd-callout-color: var(--bs-info-text-emphasis);
    --bd-callout-bg: var(--bs-info-bg-subtle);
    --bd-callout-border: var(--bs-info-border-subtle);
}

.bd-callout-primary {
    --bd-callout-color: var(--bs-info-text-emphasis);
    --bd-callout-bg: var(--bs-info-bg-subtle);
    --bd-callout-border: var(--bs-info-border-subtle);
}


.bd-callout {
    --bs-link-color-rgb: var(--bd-callout-link);
    --bs-code-color: var(--bd-callout-code-color);
    padding: 1rem;
    color: var(--bd-callout-color, inherit);
    background-color: var(--bd-callout-bg, var(--bs-gray-100));
    border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
}


/*************** BG and Text Color End ***************/

/* Section Title */
    
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        margin-bottom: 0px;
    }

    .section-title .title {
        padding-bottom: 15px;
        margin-bottom: 0;
        position: relative;
        text-transform: capitalize;
        letter-spacing: -0.5px;
    }

    .section-title .title:before {
        position: absolute;
        content: "";
        height: 3px;
        width: 40px;
        background: #ff8a00;
        bottom: 0;
        left: 0;
    }

    .section-title p {
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .section-title.center {
        text-align: center;
    }

    .section-title.center .title:before {
        left: 50%;
        margin-left: -20px;
    }

    .section-title-02 {
        margin-bottom: 40px;
    }

    .section-title-02 h2 {
        margin-bottom: 0px;
    }

    .section-title-02 .title {
        margin-bottom: 0px;
    }

    .section-title-02 p {
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .breadcrumb {
        padding-left: 0;
        background: transparent;
        font-weight: 500;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .breadcrumb .breadcrumb-item {
        padding-right: 1px;
    }

    .breadcrumb .breadcrumb-item a {
        color: #e6e6e6;
    }

    .breadcrumb .active span {
        color: #ff8a00;
    }

.breadcrumb-item + .breadcrumb-item::before {
    display:none;
}

.breadcrumb .breadcrumb-item svg {
    padding-right: 1px;
}
/***************************** Ajax Wait *****************************/
.waitLoad {
    background: url(/Content/images/loader.gif);
    background-repeat: no-repeat;
    background-position: right;
}

.ajaxwait {
    position: relative;
    overflow: hidden; /* Hide the button text */
}

.ajaxwait::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/Content/images/ajaxwait.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color:#fff;
}
/***************************** Ajax Wait *****************************/

/***************************** Button *****************************/
.referee {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next line */
    margin-top: 10px;
    align-items: center;
    margin-bottom: 0;
}

.referee li {
    padding:6px;
    margin:2px;
    border: 1px solid #eeeeee;
    display:flex;
    align-items: center;
}

    .referee li .referee-name {
        background: #e6e6e68d;
        padding: 3px 4px;
        font-size: 10px;
        font-weight: 600;
        color: #969696;
        border: 1px solid #ccc;
        margin-right: 15px;
    }
        .referee li .referee-name.active {
            background: var(--blue-mid-light);
            color: var(--blue-light);
            border: 1px solid var(--blue-mid-light);
        }

.referee li .follow {
    padding: 3px;
    font-size: 10px;
    display: flex;
    align-items: center;
    border-radius:0px;
}

.bd-callout-danger {
    --bd-callout-color: var(--bs-danger-text-emphasis);
    --bd-callout-bg: var(--bs-danger-bg-subtle);
    --bd-callout-border: var(--bs-danger-border-subtle);
}

/***************************** Button *****************************/


/***************************** Header *****************************/
    .header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        background: #ffffff;
        border-bottom: 1px solid #e6e6e6;
        box-shadow: 0 0 2rem 0 rgba(33, 37, 41, .1);
        transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
        z-index: 999;
    }

    .header .container-fluid {
        padding: 0 60px;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
/***************************** End Header *****************************/

/***************************** NavBar *****************************/

/*--------------- NAVBAR ---------*/

.navbar {
    padding: 0;
    height: 81px;
}

main {
    margin-top: 80px;
}

.space-t {
    margin-top: 130px;
}

.navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 14px;
    padding: 25px 20px;
    color: var(--text-dark);
    text-transform: capitalize;
}

    .navbar .navbar-nav .nav-link i {
        font-weight: bold;
    }

    .navbar .navbar-nav .nav-link:hover {
        color: #ff8a00;
    }

.navbar-collapse {
    position: relative;
}

.navbar .navbar-nav .nav-item.active .nav-link {
    color: #ff8a00;
}

.navbar-brand {
    padding: 0px;
    margin-right: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
}

    .navbar-brand img {
        height: 60px;
    }

.header .navbar-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .navbar-nav li > a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3px 0px;
    color: #001935;
    text-transform: capitalize;
    font-size: 14px;
}

    .header .navbar-nav li > a:hover {
        color: #ff8a00;
    }

    .header .navbar-nav li > a i {
        margin-left: 5px;
        font-size: 10px;
    }

    .header li > .dropdown-item:focus {
        color: #ff8a00;
        background: none;
    }

    .header li > .dropdown-item:hover {
        color: #ff8a00;
        background: none;
    }

    .header .dropdown-item.active {
        background: none;
    }

    .header .dropdown-item:active {
        background: none;
    }

    .header .dropdown-item:focus {
        background: none;
    }

    .header .dropdown-item:hover {
        background: none;
    }

    .header .dropdown-toggle::after {
        content: none;
    }

    .header .navbar-collapse {
        -webkit-box-align: inherit;
        -ms-flex-align: inherit;
        align-items: inherit;
        margin-left: 40px;
    }

    .header .navbar .dropdown-menu {
        padding: 20px 15px;
        z-index: 1021;
    }

    .header .navbar .dropdown-menu a.dropdown-item {
        min-width: 210px;
    }

    .header .navbar .main-navbar .dropdown-menu li {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header .navbar .dropdown-menu li a i {
        margin-left: auto;
    }

    .header .navbar-nav li > a svg {
        margin-left: 5px;
        font-size: 10px;
    }

    

    .navbar .dropdown > .dropdown-menu li > a {
        font-size: 14px;
        padding: 7px 20px 7px 0;
        border-radius: 3px;
        position: relative;
    }

    .navbar .dropdown > .dropdown-menu li > a:hover {
        color: #ff8a00;
        padding-left: 10px;
    }

.dropdown-menu > li {
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.dropdown-menu > li > a:before {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.main-navbar .dropdown-menu > li > a:hover:before {
    position: absolute;
    left: -2px;
    top: 50%;
    background: #ff8a00;
    width: 4px;
    height: 4px;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50px;
}

.main-navbar .dropdown-menu > li.active > a:before {
    position: absolute;
    left: -2px;
    top: 50%;
    background: #ff8a00;
    width: 4px;
    height: 4px;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50px;
}

/* add-listing */

.header .add-listing {
    -ms-flex-item-align: center;
    align-self: center;
    text-align: right;
}

.add-listing .dropdown-menu {
    top: 50px !important;
    right: 0 !important;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 24px 0 rgba(62,57,107,.18);
    min-width: 250px;
    max-width: 100%;
}

.add-listing .dropstart .dropdown-toggle::before {
    content: none !important;
}

.nav-profile img {
    width: 32px;
    height: 32px;
    border-radius: 100%;
}

.add-listing .dropdown-menu .dropdown-item {
    margin-bottom: 0;
    padding: 0.687rem 0.462rem;
    cursor: pointer;
}

.add-listing .dropdown-menu .dropdown-item:hover, .dropdown-item:focus {
    color: #1e2125;
    background-color: var(--blue-light);
}

    .add-listing .dropdown-menu .dropdown-item svg {
        font-size: 15px;
        margin-right: 0.5rem;
        vertical-align: middle;
        fill: var(--blue-dark);
        stroke: var(--blue-dark);
    }



.header .add-listing .navbar-nav li > a i {
    font-size: 18px;
}


.header .add-listing .login a {
    color: #202124;
}

    .header .add-listing .login a:hover {
        color: #ff8a00;
    }

    .header .add-listing .login a i {
        color: #ff8a00;
    }

.header .add-listing .btn-white i {
    color: #ff8a00;
}

.header .add-listing .btn-white:hover {
    border-color: #ff8a00;
}

    .header .add-listing .btn-white:hover i {
        color: #ffffff;
    }

.header .add-listing .btn-white:focus {
    border-color: #ff8a00;
}

    .header .add-listing .btn-white:focus i {
        color: #ffffff;
    }

.header.style-2 .add-listing .login a {
    color: #000000;
}

.screendrp .dropdown-menu {
    font-size: 12px;
    border-radius: 2px;
    padding: 0px;
}

.screendrp .dropdown-menu .dropdown-item {
    padding: 5px 10px;
}

.screendrp .dropdown-menu li .dropdown-item {
    border-top: 1px solid var(--blue-light);
}
.screendrp .dropdown-menu li>ul{
    padding:0px;
}

.screendrp .dropdown-menu li>ul li{
    list-style:none;
}

    .screendrp .dropdown-menu li > ul > li > .dropdown-item {
        padding-left: 20px;
    }



/* add-listing */
/***************************** NavBar *****************************/
/*****************************
	Button 
*****************************/
.btn {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

button {
    outline: medium none !important;
    color: #ff8a00;
}

.btn {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 3px;
}

.btn:not(:disabled):not(.disabled).active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.btn:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

    .btn:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
    }

    .btn:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
        color: #ffffff;
    }

    .btn:active {
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
        color: #ffffff;
    }

.show > .btn.dropdown-toggle:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

.show > .btn-primary.dropdown-toggle {
    background: #ff8a00;
    border-color: #ff8a00;
}

.btn-blue {
    background: var(--blue-mid-light);
    border-color: var(--blue-mid-light);
    color: var(--blue-light);
}

.btn-blue:hover {
    background: #3757a3;
    border-color: #3757a3;
    color: var(--blue-light);
}

.btn-blue:focus {
    background: #3757a3;
    border-color: #3757a3;
}

.btn-blue:active {
    background: #3757a3;
    border-color: #3757a3;
}


.btn-primary {
    background: #ff8a00;
    border-color: #ff8a00;
}

    .btn-primary:hover {
        background: #e07900;
        border-color: #e07900;
    }

    .btn-primary:focus {
        background: #e07900;
        border-color: #e07900;
    }

    .btn-primary:active {
        background: #e07900;
        border-color: #e07900;
    }

    .btn-primary:not(:disabled):not(.disabled).active {
        background: #ff8a00;
        border-color: #ff8a00;
    }

    .btn-primary:not(:disabled):not(.disabled):active {
        background: #ff8a00;
        border-color: #ff8a00;
    }

    .btn-dark {
        background: var(--blue-super-dark);
        border-color: var(--blue-super-dark);
    }

    .btn-dark:hover {
        background: #00254f;
        border-color: #00254f;
    }

    .btn-dark:not(:disabled):not(.disabled):active:focus {
        color: #ff8a00;
    }

.btn:not(:disabled):not(.disabled).active:focus {
    color: #ffffff;
}

.btn i {
    padding-right: 10px;
}

.btn + .btn {
    margin-left: 3px;
}

.btn-link {
    color: #ff8a00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .btn-link:hover {
        color: #001935;
        text-decoration: none;
        outline: none;
    }

    .btn-link:focus {
        color: #001935;
        text-decoration: none;
        outline: none;
    }

.btn.btn-link:not(:disabled):not(.disabled):active:focus {
    color: #001935;
}

.btn-white {
    background: #ffffff;
    border-color: #ffffff;
    color: #001935;
}

    .btn-white:hover {
        background: #dfdfdf;
        border-color: #dfdfdf;
    }

.btn.btn-sm {
    font-size: 12px;
    padding: 6px 15px;
}


.btn.btn-md {
    padding: 9px 20px;
}

.btn.btn-lg {
    padding: 14px 25px;
}

.btn.btn-xl {
    padding: 16px 30px;
}

.btn-app {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .btn-app i {
        font-size: 40px;
    }

.btn.btn-app {
    margin-left: 0px;
}

.btn-outline {
    border: 1px solid #eeeeee;
}

    .btn-outline:hover {
        background: #ff8a00;
        border-color: #ff8a00;
        color: #ffffff;
    }

    .btn-outline:focus {
        background: #ff8a00;
        border-color: #ff8a00;
        color: #ffffff;
        text-decoration: none;
        outline: none;
    }

.btn-light {
    background: #f6f6f6;
    -webkit-box-shadow: 1px 1px 14px 0px rgba(0, 25, 53, 0.04);
    box-shadow: 1px 1px 14px 0px rgba(0, 25, 53, 0.04);
}

    .btn-light:hover {
        background: #dfdfdf;
        -webkit-box-shadow: 1px 1px 14px 0px rgba(0, 25, 53, 0.19);
        box-shadow: 1px 1px 14px 0px rgba(0, 25, 53, 0.19);
        border: 1px solid transparent;
    }

.btn-outline-primary {
    background: #ffffff;
    color: #ff8a00;
    border: 2px solid #ff8a00;
}

    .btn-outline-primary:not(:disabled):not(.disabled).active {
        background: #ff8a00;
        border-color: #ff8a00;
        color: #ffffff;
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active {
        background: #ff8a00;
        border-color: #ff8a00;
        color: #ffffff;
    }

    .btn-outline-primary:hover {
        background: #ff8a00;
        color: #ffffff;
        border-color: #ff8a00;
    }

    .btn-outline-primary:focus {
        background: #ff8a00;
        border-color: #ff8a00;
        color: #ffffff;
        text-decoration: none;
        outline: none;
    }

.btn-white:hover,
.btn-white:focus {
    background: #ff8a00 !important;
    color: #ffffff !important;
    border-color: #ff8a00 !important;
}

.site-button {
    background-color: var(--blue-mid-light);
    color: #fff;
    padding: 7px 20px;
    font-size: 12px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    vertical-align: middle;
}

.site-button svg{
    fill:currentColor;
}

.site-button:after {
    background-color: #fff;
    content: "";
    height: 100%;
    left: -110px;
    opacity: 0.4;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    transition: all .4s ease 0s;
    width: 25px;
    filter: blur(5px);
}

.site-button:active,
.site-button:hover,
.site-button:focus,
.active > .site-button {
    color: #fff;
    z-index:1;
}

.site-button:hover:after {
    overflow:hidden;
    left: 110%;
}



.btn-outline-primary {
    
}

.btn {
    
}

.btn-outline-blue {
    font-size: 14px;
    font-weight: 600;
    background: #ffffff;
    color: var(--blue-mid-light);
    border: 1px solid var(--blue-mid-light);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    
}

.btn-outline-blue:hover, .btn-outline-blue:focus {
    color: #fff;
    background: var(--blue-mid-light);
    text-decoration: none;
    outline: none;
}

.btn-outline {
    font-size: 14px;
    font-weight: 600;
    background: #ffffff;
    color: var(--blue-mid-light);
    border: 1px solid var(--blue-mid-light);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.btn-outline:hover, .btn-outline:focus {
    color: var(--blue-mid-light);
    background: unset;
    border: 1px solid var(--blue-mid-light);
}


.btn-w-100 {
    width: 100%;
    max-width: 120px;
    padding: 5px 10px;
}


    

.btn-icon {
    border-radius: 0px;
    padding: 5px 7px;
}

table td{
    font-size:12px;
}
/***************************** Banner *****************************/
.header.header-transparent + .banner {
    padding: 340px 0 255px 0;
}

.banner {
    padding: 60px 0 60px 0;
    position: relative;
    z-index: 0;
}

.theme-bg-shapes-right, .theme-bg-shapes-left {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    overflow: hidden;
    z-index: -1;
}



    .theme-bg-shapes-right:before, .theme-bg-shapes-left:before {
        content: "";
        width: 300px;
        height: 150px;
        background: rgba(255, 255, 255, 0.1);
        position: absolute;
        top: 0;
        border-radius: 4px;
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }

    .theme-bg-shapes-right:before {
        right: -60px;
        -webkit-transform: skew(25deg, -10deg);
        transform: skew(25deg, -10deg);
    }

    .theme-bg-shapes-left:before {
        left: -90px;
        -webkit-transform: skew(25deg, -12deg);
        transform: skew(25deg, -12deg);
    }

    .theme-bg-shapes-right:after, .theme-bg-shapes-left:after {
        content: "";
        width: 150px;
        height: 600px;
        background: rgba(255, 255, 255, 0.12);
        position: absolute;
        top: 30px;
        -webkit-transform-origin: top left;
        transform-origin: top left;
    }

    .theme-bg-shapes-right:after {
        right: 0px;
        border-radius: 6px;
        -webkit-transform: skew(25deg, 10deg);
        transform: skew(25deg, 10deg);
    }

    .theme-bg-shapes-left:after {
        left: 0px;
        border-radius: 4px;
        -webkit-transform: skew(-25deg, 10deg);
        transform: skew(-25deg, 10deg);
    }

.bg-overlay-black-15, .bg-overlay-black-30, .bg-overlay-black-60 {
    position: relative;
    z-index: 1;
}


    .bg-overlay-black-15:before {
        background: rgba(238, 242, 246, 0.3);
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }

    .bg-overlay-black-60:before {
        background: rgba(0, 25, 53, 0.1);
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }


    .bg-overlay-black-30:before {
        background: rgba(0, 25, 53, 0.3);
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }

    .bg-overlay-black-60:before {
        background: rgba(0, 25, 53, 0.1);
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }
.bg-overlay-black-50 {
    position: relative;
    z-index: 1;
}
.bg-overlay-black-50:before {
    background: rgba(0, 25, 53, 0.3);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}


.bg-holder-pattern {
    background-repeat: no-repeat;
    background-position: 100% 15%;
}

.banner .lead{
    font-size:1rem;
}

/***************************** Banner *****************************/




/***************************** Form Control *****************************/
.form-label {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #3d4e67;
}

.form-control {
    border: 1px solid var(--input-border);
    color: #626262;
    height: 32px;
    padding: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 12px;
    border-radius: 0;
    background-color: rgba(0,0,0,0.05);
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--blue);
}

/*.form-control-emp {
    border-radius: 2px;
    height: 40px;
    border: 1px solid var(--blue-mid-light) !important;
    background-color: var(--blue-mid-light) !important;
    color:#fff;
}*/

.form-control.form-control-emp {
    border-radius: 2px;
    height: 40px;
    border: 1px solid var(--blue-mid-light) !important;
    background-color: var(--blue-light) !important;
    color: var(--blue-super-dark);
    padding:5px 10px;
}

.employer-control-icon svg {
    left: 15px;
    top: 50%;
    right: auto;
    position: absolute;
    color: #ff8a00;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.employer-control-icon .form-control {
    border-radius: 2px;
    height: 45px;
    border: 1px solid var(--blue-mid-light) !important;
    background-color: var(--blue-light) !important;
    color: var(--blue-super-dark);
    padding: 5px 10px 5px 40px;
    font-size: 14px;
    font-weight: 500;
}


textarea.form-control {
    height: auto;
}

/* custom-file */
.custom-file .custom-file-label {
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #001935;
    border-color: #eeeeee;
    padding: 15px 90px 15px 20px;
    border-radius: 3px;
}

    .custom-file .custom-file-label:after {
        height: 48px;
        padding: 14px 25px;
    }

.custom-file .custom-file-input {
    height: 50px;
    color: #001935;
    border-radius: 3px;
    border-color: #eeeeee;
}

    .custom-file .custom-file-input:focus ~ .custom-file-label {
        border-color: #ff8a00;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

/* input-group-prepend */
.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
    width: 50px;
    background: transparent;
    border-color: #eeeeee;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* checkbox */
.form-check {
    min-height: 32px;
    display: flex;
    padding:0px;
}
.form-check .form-label {
    margin:0px;
}

.form-check .form-check-input {
    float: unset;
    margin-left: 0px;
}
.form-check-input:disabled {
    pointer-events: unset;
    filter: none;
    opacity: .4;
    cursor: not-allowed;
}

.form-check-input {
    border: 2px solid var(--input-border);
    width: 18px;
    height: 18px;
    margin: 0px;
}

    .form-check-input[type="checkbox"] {
        border-radius: 0px !important;
    }

    .form-check-input[type="radio"] {
        border-radius: 100% !important;
    }

    .form-check-input:checked {
        background-color: var(--blue-mid-light);
        border-color: var(--blue-mid-light);
    }

    .form-check-input:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: var(--blue-mid-light);
    }

    .form-check-input:active {
        -webkit-filter: inherit;
        filter: inherit;
    }


.custom-control-input:checked ~ .custom-control-label:before {
    background: #ff8a00;
    border-color: #ff8a00;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
    background: transparent;
    border-color: transparent;
}

.custom-control-input:focus ~ .custom-control-label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
    border-color: #eeeeee;
}



.custom-control-label:before {
    top: 2px;
}

.custom-control-label:after {
    top: 2px;
}

.custom-checkbox .custom-control-label:before {
    border-radius: 3px;
    border: 2px solid #dfdfdf;
}

.switch-checkbox label {
    background-color: #d2d2d2;
    width: 40px;
    height: 23px;
    border-radius: 200px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

    .switch-checkbox label::before {
        position: absolute;
        content: '';
        background-color: #fff;
        width: 18px;
        height: 18px;
        border-radius: 200px;
        margin: 3px;
        transition: 0.2s;
    }

.switch-checkbox input:checked + label {
    background-color: rgb(73, 150, 110);
}

    .switch-checkbox input:checked + label::before {
        transform: translateX(17px);
    }

.switch-checkbox input {
    display: none;
}

/* input-group */
.choose-file.input-group .form-control {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 35px;
    margin: 0;
    opacity: 0;
    color: #001935;
    border-radius: 3px;
    border-color: #eeeeee;
}

.choose-file .input-group-text {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #ced4da;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #001935;
    border-color: #eeeeee;
    padding: 15px 90px 15px 20px;
    border-radius: 3px;
}

    .choose-file .input-group-text::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: block;
        line-height: 1.5;
        color: #495057;
        content: "Browse";
        background-color: #e9ecef;
        border-left: inherit;
        border-radius: 0 .25rem .25rem 0;
        height: 48px;
        padding: 14px 25px;
    }

/* upload-file */
.upload-file {
    position: relative;
    width: 160px;
    height: 35px;
    margin-bottom: 20px;
    margin-top: 10px;
}

    .upload-file label.form-label {
        background: #ff8a00;
        padding: 0;
        color: #ffffff;
        height: 35px;
        font-weight: 400;
        line-height: 35px;
        text-align: center;
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1;
        border-radius: 3px;
    }

    .upload-file .form-control {
        position: relative;
        z-index: 2;
        width: 100%;
        height: calc(1.5em + .75rem + 2px);
        margin: 0;
        opacity: 0;
        border: 0;
    }

/* Custome-radiobutton */


.radio-buttons {
    display:flex;
    justify-content:space-between;
}

.custom-radio input {
    opacity:0;
    position:absolute;
}

.radio-btn {
    padding: 35px 90px;
    background-color: #fff;
    border: 1px solid #eeeeee;
    display: inline-block;
    border-radius: 5px;
    position: relative;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 2px #c3c3c367;
}

.radio-btn > svg {
    fill: #ffffff;
    background-color: var(--blue-mid-light);
    height: 20px;
    width: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) scale(4);
    border-radius: 50px;
    transition: 0.2s;
    pointer-events: none;
    opacity: 0;
}

.radio-btn .hobbies-icon {
    width:150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-btn .hobbies-icon svg {
    width: 25px;
    height: 25px;
    stroke: var(--blue-mid-light);
    margin-bottom:10px;
}

.radio-btn .hobbies-icon span {
    display:block;
    color: var(--blue-mid-light);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.custom-radio input:checked + .radio-btn {
    padding: 33px 88px;
    border: 3px solid var(--blue-mid-light);
}

    .custom-radio input:checked + .radio-btn > svg {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

.form-logo {
    border: 1px dashed var(--input-border);
    max-width:150px;
    height:70px;
    margin:0px auto 5px auto;
}

.form-logo img{
    padding:10px;
    width:90%;
    aspect-ratio:2;
    object-fit:contain;
    margin:auto;
}

.password-checklist{
    position:absolute;
    top:32px;
    right:0;
    width:100%;
    background-color:#ebf0f6;
    padding:10px;
    opacity:0;
    pointer-events:none;
    transform:translateY(20px);
    transition:.5s ease;
}

.password:focus ~ .password-checklist{
    opacity:1;
    transform:translateY(0);
}

.checklist-title {
    font-size: 13px;
    color: #122c66;
    margin-bottom: 10px;
}
.password-checklist .checklist {
    list-style:none;
    padding:0px
}

.password-checklist .checklist .list-item{
    color:#3757a3;
    font-size:13px;
    padding:5px 0px;
    display: flex;
    align-items: baseline;
}


    .password-checklist .checklist .list-item::before {
        content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM9.70711 8.29289C9.31658 7.90237 8.68342 7.90237 8.29289 8.29289C7.90237 8.68342 7.90237 9.31658 8.29289 9.70711L10.5858 12L8.29289 14.2929C7.90237 14.6834 7.90237 15.3166 8.29289 15.7071C8.68342 16.0976 9.31658 16.0976 9.70711 15.7071L12 13.4142L14.2929 15.7071C14.6834 16.0976 15.3166 16.0976 15.7071 15.7071C16.0976 15.3166 16.0976 14.6834 15.7071 14.2929L13.4142 12L15.7071 9.70711C16.0976 9.31658 16.0976 8.68342 15.7071 8.29289C15.3166 7.90237 14.6834 7.90237 14.2929 8.29289L12 10.5858L9.70711 8.29289Z" fill="%23323232"></path> </g></svg>');
        display: inline-block;
        width: 13px;
        height: 13px;
        margin-right: 5px;
        flex-shrink: 0;
    }

.password-checklist .checklist .list-item.checked{
    opacity:0.5;
}

    .password-checklist .checklist .list-item.checked::before {
        content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM15.7071 9.29289C16.0976 9.68342 16.0976 10.3166 15.7071 10.7071L12.0243 14.3899C11.4586 14.9556 10.5414 14.9556 9.97568 14.3899L8.29289 12.7071C7.90237 12.3166 7.90237 11.6834 8.29289 11.2929C8.68342 10.9024 9.31658 10.9024 9.70711 11.2929L11 12.5858L14.2929 9.29289C14.6834 8.90237 15.3166 8.90237 15.7071 9.29289Z" fill="%23008000"></path> </g></svg>');
    }

/*.input-validation-error {
    border-color: deeppink;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='#dc3545'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#dc3545' stroke='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}*/
/***************************** #dc3545 Form Control *****************************/
/* Tabs */
.jobs-tabs.nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 35px;
}

.tabs-menu ul.jobs-tabs li a {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    padding: 10px 20px 11px 20px;
    background: #fff;
    border-radius: 23px;
    margin: 10px;
    border: 1px solid #dee2ea;
}



    .tabs-menu ul.jobs-tabs li a.active {
        color: #fff;
        background: var(--primary-color) !important;
    }


.tabs-menu ul li .active {
    background: var(--primary-bg-color);
}

.tabs-menu ul li .active {
    color: #fff;
    border-radius: 25px;
}

.tabs-menu ul li a {
    padding: 10px 20px 11px 20px;
}

/* Tabs */

/***************************** Job Description *****************************/
.jdbanner {
    padding: 30px 0px 10px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.jd-job {
    padding: 12px 12px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
}

.jd-job .jd-job-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


.jd-job-logo img {
    width: 90px;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    margin-right: 10px;
    padding: 5px;
    border: 1px solid #eeeeee;
}

.jd-job-title h1 {
    font-size:17px;
}

.jd-job-details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.jd-job-details ul li {
    font-size: 14px;
    margin: 5px 10px 5px 0px;
    color: #474d6a;
}

.jd-job-option svg {
    margin-top: -2px;
    height: 16px;
    width: 16px;
}

.jd-job .jd-job-favourite-time {
    margin-left: auto;
    text-align: right;
    font-size: 14px;
    flex: 0 0 250px;
}

.jd-job .jd-job-favourite-time p {
    color: #202124;
    font-size: 14px;
}

.jd-job .jd-job-favourite-time span {
    display: inline-block;
    margin: 0 auto;
    color: red;
    font-weight: bold;
}

.job-description h1, .job-description h2, .job-description h3, .job-description h4, .job-description h5, .job-description h6, .job-description p {
    margin: 0px !important;
    font-size: 14.5px;
}

.ckeditor{
    display:block !important;
    position:absolute;
}

@media(max-width: 768px) {
    /*Job Description*/
    .jd-job {
        width: 100%;
        display: inline-block;
    }

    .jd-job-logo img {
        max-width: 160px;
        max-height: 100px;
        margin-right: 10px;
    }

    .jd-job .jd-job-favourite-time {
        display: block;
        margin-top: 15px;
    }

        .jd-job .jd-job-favourite-time p {
            text-align: left;
        }
    /*Job Description*/
}

/***************************** Job Description End *****************************/
/*##################### Job List #################*/
/* Job List */
.job-list {
    padding: 12px 12px;
    position: relative;
    background: #ffffff;
    transition: all 0.2s ease-in-out;
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    align-items: flex-start;
    height: 100%;
}

.job-details .job-list {
    background-color: transparent;
    border: none !important;
    box-shadow: none;
}

    .job-details .job-list:hover {
        box-shadow: none;
    }

.job-details .job-list-details ul li {
    font-size: 14px;
    color: #7A7A7A;
}

.job-details .job-list .job-list-logo {
    background-color: aqua;
    margin-right: 20px;
    width: 100px;
    max-width: 200px;
    max-height: 150px;
    border: none !important;
    overflow: hidden !important;
    flex: auto !important;
}

.job-details .job-list img {
    max-width: 200px;
    max-height: 100px;
    vertical-align: top !important;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid #E1E1E1;
    border-radius: 2px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.job-details .job-list .job-list-favourite-time {
    margin-left: auto;
    text-align: right;
    font-size: 14px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 218px;
}

.job-details .job-list-favourite-time p {
    color: #202124;
    font-size: 14px;
}

.job-details .job-list-favourite-time span {
    display: inline-block;
    margin: 0 auto;
    color: red;
    font-weight: bold;
}


.job-list:hover {
    box-shadow: 0 14px 40px rgba(30,10,58,.1);
    position: relative;
    z-index: 9;
}

.job-list:hover a.job-list-favourite {
    color: #e74c3c;
    -webkit-box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
    box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
}

.job-list img {
    width: 75px;
    aspect-ratio: 3/2;
    object-fit: contain;
    margin-right: 10px;
    padding:5px;
    border: 1px solid #eeeeee;
}


.job-list-title {
    margin-bottom: 5px;
}

.job-list-title h5 {
    font-size: 16px;
    color: #212884;
}

.job-list .job-list-details {
    overflow: hidden;
}

.job-list-details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0px;
    align-items: center;
}

    .job-list-details ul li {
        margin: 5px 10px 5px 0px;
        color: #474d6a;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .job-list-details ul li.freelance a {
            color: #53b427;
        }

        .job-list-details ul li.temporary a {
            color: #e74c3c;
        }

        .job-list-details ul li.full-time a {
            color: #186fc9;
        }

        .job-list-details ul li.part-time a {
            color: #ffc107;
        }

.job-list .job-list-favourite-time {
    margin-left: auto;
    text-align: center;
    font-size: 13px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45px;
    flex: 0 0 45px;
}


.job-list-favourite-time .job-list-favourite {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 1px solid #E7E7E7;
    border-radius: 100%;
    text-align: center;
    margin-bottom: -10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    color: #969696;
}

    .job-list-favourite-time .job-list-favourite:hover {
        background: #ffffff;
        color: #e74c3c;
    }

.job-list-favourite-time span {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: darkblue;
    background-color: #fff;
    padding: 0px 3px;
}

.ribbon {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.ribbon span {
    padding: 3px 8px;
    font-size: 9px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
}
.samsaggregat span {
    background: #79A70A;
    background: linear-gradient(#9BC90D 0%, #79A70A 100%);
}



/* job-list hovering */
.job-list.hovering {
    -webkit-box-shadow: 0px 0px 24px 4px rgba(0, 25, 53, 0.04);
    box-shadow: 0px 0px 24px 4px rgba(0, 25, 53, 0.04);
    position: relative;
    z-index: 9;
}

    .job-list.hovering .job-list-favourite-time .job-list-favourite {
        background: #ffffff;
        color: #e74c3c;
        -webkit-box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
        box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
    }

.job-list-option svg {
    height: 16px;
    width: 16px;
}

.loading:after {
    position: absolute;
    display: inline-block;
    animation: dotty steps(1, end) 1s infinite;
    content: '';
}

@keyframes dotty {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Apply animation to the spinner */
.spinner {
    animation: spin 2s linear infinite;
}

/* Job Filter */
.job-filter-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.job-filter-tag ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.job-filter-tag ul li{
    display: block;
}

.job-filter-tag ul li a {
    margin-left: 3px;
    background: rgba(255, 138, 0, 0.1);
    color: #ff8a00;
    font-weight: 600;
    padding: 2px 8px;
    font-size: 13px;
    cursor:pointer;
    box-shadow:0px 1px 1px #bcbfda;
}

.job-filter-tag ul li a.filter::after {
    content: "\00D7";
    font-family: Arial, sans-serif;
    line-height:0;
    font-weight: 600;
    border-radius: 100%;
    padding:0px 3px;
    font-size: 11px;
    margin-left:3px;
    background-color:#ff8a00;
    color:#fff;
}
.job-filter-tag ul li a.filter:hover::after {
    background-color: #FFF3E5;
    color: #ff8a00;
}
.job-filter-tag ul li a.filter-clear::after {
    content: "\2B6E";
    font-family: Arial, sans-serif;
    line-height: 0;
    font-weight: 600;
    border-radius: 100%;
    font-size: 12px;
    margin-left: 3px;
    display: inline-block;
    transform: rotate(90deg)
}

.job-filter-tag ul li a:hover {
    background: #ff8a00;
    color: #ffffff;
}

.job-filter-tag ul li .filter-clear {
    background: rgba(0, 25, 53, 0.1);
    color: #001935;
}

.job-filter-tag ul li .filter-clear:hover {
    background: #001935;
    color: #ffffff;
}

/*Pagination*/

.pagination .page-item {
    margin: 0 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.pagination .page-item .page-link {
    color: #969696;
    padding: 8px 16px;
    border-radius: 3px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.page-item.active .page-link, .pagination .page-item a:hover {
    background: var(--blue-mid-light);
    border-color: var(--blue-mid-light);
    color: #ffffff;
}
.prev svg {
    fill:white;
}



.prev::before {
    content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <circle cx="12" cy="12" r="9" stroke="%233d61b5" stroke-width="2" stroke-linecap="round"></circle> <path d="M16 12L8 12M8 12L11 9M8 12L11 15" stroke="%233d61b5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>');
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.prev:hover::before {
    content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <circle cx="12" cy="12" r="9" stroke="%23fff" stroke-width="2" stroke-linecap="round"></circle> <path d="M16 12L8 12M8 12L11 9M8 12L11 15" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>');
}

.next::after {
    content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <circle cx="12" cy="12" r="9" stroke="%233d61b5" stroke-width="2" stroke-linecap="round"></circle> <path d="M8 12L16 12M16 12L13 15M16 12L13 9" stroke="%233d61b5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>');
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

.next:hover::after {
    content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <circle cx="12" cy="12" r="9" stroke="%23fff" stroke-width="2" stroke-linecap="round"></circle> <path d="M8 12L16 12M16 12L13 15M16 12L13 9" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>');
}



/*##################### Job List #################*/


/*##################### Employer #################*/

/* Employer Grid */
.employers-grid {
    padding: 30px 20px;
    border-radius: 0px;
    display: block;
    border: 1px solid #eeeeee;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .employers-grid:hover {
        -webkit-box-shadow: 0px 0px 34px 4px rgba(0, 25, 53, 0.04);
        box-shadow: 0px 0px 34px 4px rgba(0, 25, 53, 0.04);
        position: relative;
        z-index: 99;
    }

.bg-light .employers-grid {
    background: #ffffff;
}

.employers-grid .employers-list-position {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 0;
    padding-top: 15px;
    margin: 0;
    text-align: center;
}

    .employers-grid .employers-list-position a {
        margin: 0 auto;
    }

.employers-grid .employers-list-logo {
    text-align: center;
    margin: 0 auto 10px;
    width: 80px;
    height: 80px;
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
}

.employers-grid .employers-list-details {
    text-align: center;
}

    .employers-grid .employers-list-details ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .employers-grid .employers-list-details ul li {
            margin-bottom: 10px;
        }


/* Client Grid */
.client-grid {
    padding: 20px;
    border-radius: 0px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.14);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.client-grid .employers-grid-logo {
    padding: 5px;
    text-align: center;
    max-width: 100%;
    height: 60px !important;
    border: 1px solid #eeeeee;
    margin-bottom: 15px;
}

.client-grid .employers-grid-logo img {
    max-height: 100%;
}

.client-grid .employers-list-title h6 {
    font-size: 12px;
}


/* Employer Project Job List */
.project-job-list {
    background: #ffffff;
    padding: 15px;
    display: block;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;
}

.project-job-list:hover {
    -webkit-box-shadow: 0px 0px 34px 4px rgba(0, 25, 53, 0.04);
    box-shadow: 0px 0px 34px 4px rgba(0, 25, 53, 0.04);
    position: relative;
    z-index: 99;
}

.project-job-list .employers-list-logo {
    margin-right: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 80px;
    border: 1px solid #eeeeee;
    height: 50px;
    text-align: center;
    padding: 15px;
    display: inline-block;
    position: relative;
    text-align: center;
}

.project-job-list .employers-list-logo img {
    max-width: 95%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.project-job-list .employers-list-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex:1;
}

.project-job-list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.project-job-list .project-job-list-details .project-job-list-option ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.project-job-list .project-job-list-details .project-job-list-option ul li {
    margin: 0px 10px 0px 0px;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.project-job-list .project-job-list-details .project-job-list-option ul li:last-child {
    margin-right: 0;
}

.project-job-list .project-job-list-position {
    margin-left: auto;
    -ms-flex-item-align: center;
    align-self: center;
}

.project-job-list-position .btn-dark:hover {
    background: #ff8a00;
    border-color: #ff8a00;
}

.project-job-list .dropdown-menu {
    box-shadow: 0 4px 24px 0 rgba(62, 57, 107, .18);
    border: none;
    padding: 8px;
}

.project-job-list-job-detail {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #74777b;
}

/**/


/* Employer Tile */
/*.employers-tile {
    padding: 30px 20px;
    border-radius: 0px;
    display: block;
    border: 1px solid #eeeeee;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .employers-tile:hover {
        -webkit-box-shadow: 0px 0px 34px 4px rgba(0, 25, 53, 0.04);
        box-shadow: 0px 0px 34px 4px rgba(0, 25, 53, 0.04);
        position: relative;
        z-index: 99;
    }

.bg-light .employers-tile {
    background: #ffffff;
}

.employers-tile .employers-list-position {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 0;
    padding-top: 15px;
    margin: 0;
    text-align: center;
}

    .employers-tile .employers-list-position a {
        margin: 0 auto;
    }

.employers-tile .employers-list-logo {
    text-align: center;
    margin: 0 auto 10px;
    width: 80px;
    height: 80px;
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
}

.employers-tile .employers-list-details {
    text-align: center;
}

    .employers-tile .employers-list-details ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .employers-tile .employers-list-details ul li {
            margin-bottom: 10px;
        }*/
/* Employer Tile */
/* Employer Grid */
/*.employers-grid {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.employers-grid-header {
    background: rgb(18,44,102);
    background: linear-gradient(168deg, rgba(18,44,102,1) 0%, rgba(23,55,128,1) 44%, rgba(61,97,181,1) 100%);
    height: 3rem;
    overflow: hidden;
    border-radius: unset !important;
}
.employers-grid-header h6 {
    color:#eeeeee;
    font-size: 14px;
}

.employers-grid .employers-grid-logo {
    margin-right: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    border: 1px solid #eeeeee;
    height: 70px;
    text-align: center;
    padding: 15px;
    text-align: center;
}

.employers-list .employers-list-logo img {
    max-width: 95%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.employers-grid-details {
    flex: 0 0 60%;
    -ms-flex-item-align: center;
    align-self: center;
}

.employers-grid-title {
    font-size:15px;
    margin-bottom: 5px;
}

.employers-feature-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.employers-feature-info-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    height:110px;
}

.profile-avatar img {
    width: 100px;
    height: 50px;
    aspect-ratio: 3/2;
    object-fit: contain;
    border: 1px solid var(--blue-light);
    padding: 5px;
}*/


/* Employer Login */
.shape-leftbox {
    position: relative;
    margin-right: 10%;
    padding: 0px 0px 160px 0px;
    height: 500px;
}

.shape-rightbox {
    position: relative;
    margin-left: 10%;
    padding: 0px 0px 160px 0px;
    height: 500px;
}

.shape-white-left {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    left: 0;
    width: auto;
    z-index: 0;
    padding: 30px 20px;
    overflow: hidden;
    margin: 0px 0px 0px -110px;
    background-image: url(/Content/images/shape-white.svg);
    border-radius: 0px;
    background-color: transparent;
    background-position: 100% 0%;
    background-repeat: no-repeat;
    background-size: cover;
}

.shape-white-right {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    left: 0;
    width: auto;
    z-index: 0;
    padding: 30px 20px;
    overflow: hidden;
    margin: 0px;
    background-image: url(/Content/images/shape-white-right.svg);
    border-radius: 0px;
    background-color: transparent;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.shape-white-left > lottie-player, .shape-white-right > lottie-player {
    margin-top: -60px;
}

.banner-mail {
    background-color: #d3eafd;
}

.banner-mail h4, .banner-mail h5, .banner-mail p {
    color: #2196f3 !important;
}

.banner-call {
    background-color: #ccf4dd;
}

.banner-call h4, .banner-call h5, .banner-call p {
    color: rgb(0 200 83) !important;
}

.banner-call svg {
    color: rgb(0 200 83) !important;
    stroke: rgb(0 200 83);
}

.banner-chat {
    background-color: #B3B5E9;
}

.banner-chat h4, .banner-chat h5, .banner-chat p {
    color: rgb(103 58 183) !important;
}

.banner-chat svg {
    color: rgb(103 58 183) !important;
    stroke: rgb(103 58 183);
}

/* Dashboard Feature Info */

/* Employer Grid */
.employers-grid {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.employers-grid-header {
    background: rgb(18,44,102);
    background: linear-gradient(168deg, rgba(18,44,102,1) 0%, rgba(23,55,128,1) 44%, rgba(61,97,181,1) 100%);
    height: 3rem;
    overflow: hidden;
    border-radius: unset !important;
}

    .employers-grid-header h6 {
        color: #eeeeee;
        font-size: 14px;
    }

.employers-grid .employers-grid-logo {
    margin-right: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    border: 1px solid #eeeeee;
    height: 70px;
    text-align: center;
    padding: 15px;
    text-align: center;
}

.employers-list .employers-list-logo img {
    max-width: 95%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.employers-grid-details {
    flex: 0 0 60%;
    -ms-flex-item-align: center;
    align-self: center;
}

.employers-grid-title {
    font-size: 15px;
    margin-bottom: 5px;
}

.employers-feature-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.employers-feature-info-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    height: 110px;
}

.profile-avatar img {
    width: 100px;
    height: 50px;
    aspect-ratio: 3/2;
    object-fit: contain;
    border: 1px solid var(--blue-light);
    padding: 5px;
}


.employers-feature-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.employers-feature-info-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    height: 110px;
}


/*##################### Employer END #################*/
/*##################### Candidate #################*/
/* Candidate List */
.candidate-list {
    padding: 15px;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #E6E6E6;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
}

.candidate-list p{
    margin:0px;
    line-height:1.2rem;
}

    .candidate-list:hover {
        -webkit-box-shadow: 2px 3px 1px 0px rgba(0, 25, 53, 0.14);
        box-shadow: 2px 3px 1px 0px rgba(0, 25, 53, 0.14);
        position: relative;
        z-index: 99;
    }

        .candidate-list:hover a.candidate-list-favourite {
            color: #e74c3c;
            -webkit-box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
            box-shadow: -1px 4px 10px 1px rgba(24, 111, 201, 0.1);
        }

.candidate-list-personal {
    width: 20%;
}

.candidate-list-education {
    width: 35%;
}

.candidate-list-experience {
    width: 35%;
}

.candidate-list-action {
    width: 10%;
    display: flex;
    flex-direction: column;
    gap:5px 0px;
}

@media (max-width: 575px) {
    .candidate-list{
        display:block;
    }
    .candidate-list-personal {
        width: 100%;
    }

    .candidate-list-education {
        margin-top: 15px;
        width: 100%;
        margin-left: 24px;
    }

    .candidate-list-experience {
        width: 100%;
        margin-left: 24px;
        padding-bottom:10px;
        border-bottom: 1px solid #e6e6e6;
    }

    .candidate-list-action {
        margin-top:15px;
        width: 100%;
        margin-left: 24px;
        display:flex;
        gap:15px;
    }

    .candidate-list-action button{
        width: auto !important;
    }


}

.btnb {
    border: .1rem solid rgba(25, 103, 210, 0.4);
    background: rgba(25, 103, 210, 0.07);
    color: #1967D2;
    cursor: pointer;
    padding: 2px 5px;
    display: inline-block;
    width: 100%;
}

.candidate-list-info:not(:last-child) {
    margin-bottom: 10px;
}
.employers-list .employers-list-logo {
    margin-right: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 80px;
    border: 1px solid #eeeeee;
    height: 50px;
    text-align: center;
    padding: 15px;
    display: inline-block;
    position: relative;
    text-align: center;
}


    .candidate-list .candidate-list-image {
        width:80px;
        height:50px;
        position:relative;
        margin-bottom:10px;
    }

        .candidate-list .candidate-list-image img {
            max-width: 95%;
            max-height: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }


.candidate-list-title {
    margin-bottom: 5px;
}

.candidate-list-details ul {
    margin-bottom: 0px;
}

    .candidate-list-details ul li {
        margin: 5px 10px 5px 0px;
        font-size: 13px;
    }

.bulk-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.bulk-action {
    background-color: #343a40;
    margin-bottom:5px;
    padding: 15px 40px;
    border-radius:3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .bulk-action button {
        padding: 3px 10px;
        color: white;
        background-color: rgba(255,255,255,0.15);
        border: none;
        border-radius: 2px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .bulk-action button:hover {
        background-color:var(--blue-mid-light);
    }

.tooltip {
    margin-bottom: 15px !important;
}

/*.candidate-list .candidate-list-favourite-time {
    margin-left: auto;
    text-align: center;
    font-size: 13px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
}

    .candidate-list .candidate-list-favourite-time .candidate-list-favourite {
        display: flex;
        flex-wrap:wrap;
        text-align: center;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        margin-bottom: 20px;
        font-size: 16px;
        color: #969696;
    }

    .candidate-list .candidate-list-favourite-time span {
        display: block;
        margin: 0 auto;
    }

    .candidate-list .candidate-list-favourite-time .candidate-list-favourite:hover {
        background: #ffffff;
        color: #e74c3c;
    }*/
.candidate-banner .candidate-list:hover {
    position: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    z-index: inherit;
}

/* Candidate Grid */

.candidate-grid {
    padding-top: 40px;
    padding-bottom: 0px;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 30px 20px;
    background: #fff;
    border-bottom: 1px solid #eeeeee;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.candidate-grid .candidate-list-image {
    width: 120px !important;
    height: 120px !important;
    display: block;
    margin: 0px auto 30px auto;
    margin-bottom: 30px;
    text-align: center;
}
.candidate-grid .candidate-list-image img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 100%;
    width: auto;
    border: 1.5px solid #ff8a00;
}

/*##################### Candidate End #################*/

/***************************** Feature Box *****************************/
.feature-info {
    padding: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    background: #fff;
}

    .feature-info a {
        text-decoration: underline;
        font-weight: 600;
    }

        .feature-info a i {
            padding-left: 10px;
        }

    .feature-info:hover {
        background: #ff8a00;
    }

    .feature-info .feature-info-icon {
        font-size: 56px;
        line-height: 56px;
        display: inline-block;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        color: #ff8a00;
    }

    .feature-info:hover .feature-info-icon {
        color: #ffffff;
    }

    .feature-info .feature-info-content h5 {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .feature-info .feature-info-content p {
        margin-bottom: 5px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .feature-info:hover .feature-info-content {
        color: #ffffff;
    }

        .feature-info:hover .feature-info-content span {
            color: #ffffff;
        }

        .feature-info:hover .feature-info-content h5 {
            color: #ffffff;
        }

    .feature-info.bg-primary a {
        color: #001935;
    }

        .feature-info.bg-primary a:hover {
            color: #ffffff;
        }

    .feature-info.bg-dark a {
        color: #ff8a00;
    }

        .feature-info.bg-dark a:hover {
            color: #ffffff;
        }

.feature-info-border {
    border: 1px solid #f6f6f6;
}

    .feature-info-border .feature-info-icon {
        background-color: #E6E6E6;
        border: 1px solid #f6f6f6;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 30px;
    }

    .feature-info-border:hover .feature-info-icon {
        border: 1px solid #ffffff;
        background: #ffffff;
        color: #ff8a00;
    }

.feature-info-02,
.feature-info-04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feature-info-03 .feature-info-image {
    padding: 100px 0;
}

.bg-overlay-gradient-03 {
    position: relative;
}

    .bg-overlay-gradient-03:before {
        z-index: 0;
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(white)), -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(white));
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%);
        top: auto;
        height: 100%;
        -webkit-transition: all .35s;
        transition: all .35s;
    }

.feature-step {
    padding: 0;
}

    .feature-step:hover {
        background: none;
    }

    .feature-step .feature-info-icon {
        width: 180px;
        height: 180px;
        line-height: 150px;
        border-radius: 50%;
        font-size: 40px;
        display: inline-block;
        margin-bottom: 15px;
        background: #fff;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        color: #000000;
    }

        .feature-step .feature-info-icon:before {
            content: inherit;
        }

    .feature-step:hover .feature-info-icon {
        color: #ff8a00;
    }

    .feature-step .feature-info-content {
        padding: 10px 20px;
    }

    .feature-step:hover .feature-info-content h5 {
        color: #000000;
    }

    .feature-step:hover .feature-info-content p {
        color: #969696;
    }

.step-number {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 18px;
    color: #ff8a00;
    position: relative;
}

    .step-number span:after {
        content: "";
        border-top: 3px dotted rgba(238, 238, 238, 0.2);
        width: 92%;
        position: absolute;
        height: 20px;
        top: 12px;
        left: 59%;
    }

.row > [class*='col-']:last-child .step-number span:after {
    content: none;
}

.feature-step-01 .feature-info-icon {
    background: none;
    border-radius: 0;
    position: relative;
    line-height: inherit;
}

    .feature-step-01 .feature-info-icon img {
        border-radius: 50%;
    }

    .feature-step-01 .feature-info-icon:before {
        content: "";
        background: #001935;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        position: absolute;
        left: 0px;
        top: 0px;
        border-radius: 50%;
    }

    .feature-step-01 .feature-info-icon:after {
        font-family: Flaticon;
        font-size: 40px;
        font-weight: normal;
        position: absolute;
        left: 50%;
        top: 50%;
        padding-left: 1px;
        color: #ffffff;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .feature-step-01 .feature-info-icon.step-01:after {
        content: "\f134";
    }

    .feature-step-01 .feature-info-icon.step-02:after {
        content: "\f154";
    }

    .feature-step-01 .feature-info-icon.step-03:after {
        content: "\f12f";
    }

.feature-step:hover .feature-info-icon:after {
    opacity: 1;
}

.feature-info-section {
    position: relative;
    z-index: 9;
}

.feature-info-content label {
    font-size: 13px;
}

.feature-content {
    padding: 70px 50px;
}

.info-box-1 a:hover {
    color: #e07900;
}

.feature-info-rounded {
    padding: 0;
}

    .feature-info-rounded:hover {
        background: inherit;
    }

    .feature-info-rounded .feature-info-icon {
        border: none;
        border-radius: 100%;
        width: 80px;
        height: 80px;
        line-height: 80px;
        background: #ffa133;
        color: #ffffff;
        text-align: center;
        display: inline-block;
        margin-bottom: 20px;
    }

        .feature-info-rounded .feature-info-icon i {
            font-size: 36px;
            line-height: inherit;
        }

    .feature-info-rounded .feature-info-content .title {
        color: #ffa133;
    }

    .feature-info-rounded.text-start {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .feature-info-rounded.text-start .feature-info-icon {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 80px;
            flex: 0 0 80px;
            margin-bottom: 0;
        }

.bg-light .feature-info {
    background: #ffffff;
}

    .bg-light .feature-info:hover {
        background: #ff8a00;
    }
/***************************** Feature Box *****************************/

/*##################### Owl Carousel #################*/
.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        touch-action: manipulation;
        -moz-backface-visibility: hidden
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item, .owl-carousel .owl-wrapper {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item {
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-touch-callout: none
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%
        }

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: none
    }

    .no-js .owl-carousel, .owl-carousel.owl-loaded {
        display: block
    }

    .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
        background: 0 0;
        color: inherit;
        border: none;
        padding: 0 !important;
        font: inherit
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block
    }

    .owl-carousel.owl-hidden {
        opacity: 0
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden
    }

    .owl-carousel.owl-drag .owl-item {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab
    }

    .owl-carousel.owl-rtl {
        direction: rtl
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right
        }

    .owl-carousel .animated {
        animation-duration: 1s;
        animation-fill-mode: both
    }

    .owl-carousel .owl-animated-in {
        z-index: 0
    }

    .owl-carousel .owl-animated-out {
        z-index: 1
    }

    .owl-carousel .fadeOut {
        animation-name: fadeOut
    }

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

    .owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
        max-height: 0
    }

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

    .owl-carousel .owl-video-play-icon:hover {
        -ms-transform: scale(1.3,1.3);
        transform: scale(1.3,1.3)
    }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-carousel .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.owl-carousel .owl-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #dfdfdf;
    margin: 0 4px;
}

    .owl-carousel .owl-dot.active {
        background: #ff8a00;
    }
/*##################### Owl Carousel #################*/

/*##################### Pricing #################*/

.pricing_two {
    margin-top: -265px;
}

.pricebox-two_content {
    padding: 100px 0px 250px 0px;
    overflow: hidden;
    position: relative;
}

    .pricebox-two_content:before {
        content: '';
        position: absolute;
        transition-property: transform;
        animation-name: rotate;
        animation-duration: 50s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        height: 460px;
        width: 460px;
        top: 80px;
        left: -300px;
        border-radius: 50%;
        border: 3px dotted #212884;
    }

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pricebox-two_content:after {
    position: absolute;
    content: '';
    right: auto;
    height: 340px;
    width: 340px;
    left: -150px;
    top: 55px;
    border-radius: 50%;
    background: -webkit-linear-gradient(top, #212884 0%, rgba(69, 64, 223, 0) 100%) !important;
}

.pbmit-tab .tab-content {
    margin-top: 50px;
}

/*----------------------------------------*/
/*  21 - Pricing-table
/*----------------------------------------*/
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box {
    text-align: center;
    background-color: #fff;
    position: relative;
}

    .pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-head-wrap {
        padding: 50px 0 15px;
        text-align: center;
        position: relative;
    }

    .pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-lines-w {
        margin-bottom: 45px;
        text-align: center;
    }

    .pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-inner {
        padding: 50px 20px 50px;
        text-align: center;
    }

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col.pbmit-ptable-col .pbminfotech-ptable-heading {
    color: var(--pbmit-global-color);
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbminfotech-ptable-heading {
    font-size: 22px;
    margin-bottom: 0;
    display: inline-block;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-line i {
    color: var(--pbmit-global-color);
    display: none;
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbminfotech-ptable-price {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700 !important;
}

.pbminfotech-ele-ptable-style-1 .pbmit-ptable-btn a {
    border: 1px solid var(--color-dark-blue);
    color: var(--color-dark-blue);
    padding: 15px 30px;
    display: inline-block;
    position: relative;
    line-height: 16px;
    transition: all .25s ease-in-out;
}

    .pbminfotech-ele-ptable-style-1 .pbmit-ptable-btn a:before {
        content: "";
        position: absolute;
        background: var(--color-dark-blue);
        transform: scaleX(0);
        transform-origin: 0 50%;
        transition-property: transform;
        transition-duration: 0.3s;
        transition-timing-function: ease-out;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .pbminfotech-ele-ptable-style-1 .pbmit-ptable-btn a:hover:before {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
    }

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbminfotech-ptable-frequency {
    position: absolute;
    display: block;
    font-size: 16px;
    font-weight: 400 !important;
    color: var(--text-dark);
    opacity: .70;
    bottom: -20px;
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-icon-wrapper .pbmit-jobsy-icon-send {
    height: 70px;
    width: 70px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

    .pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-icon-wrapper .pbmit-jobsy-icon-send img {
        height: 100%;
        width: 100%;
    }

    .pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-icon-wrapper .pbmit-jobsy-icon-send:after {
        position: absolute;
        content: '';
        height: 45px;
        width: 45px;
        background-color: #e9edf3;
        left: -20px;
        border-radius: 50%;
        z-index: -1;
        -webkit-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
    }

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box:hover .pbmit-ptable-icon-wrapper .pbmit-jobsy-icon-send:after {
    background-color: rgb(69, 64, 223, .30);
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-line {
    font-size: 16px;
    color: var(--text-dark);
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbminfotech-ptable-price-w {
    position: relative;
    margin: 0 auto;
    display: inline-block;
    color: var(--text-dark);
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbminfotech-ptable-symbol {
    position: absolute;
    top: 0px;
    left: -42px;
    font-size: 50px;
    line-height: 50px;
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box .pbmit-ptable-line {
    position: relative;
    margin-bottom: 10px;
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-ptable-btn a,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-btn a:hover {
    color: #fff;
    background-color: var(--pbmit-global-color);
}

    .pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-ptable-btn a:hover {
        color: #fff;
        border: 1px solid var(--pbmit-global-color);
        background-color: transparent;
    }

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbmit-ptablebox-featured-w {
    position: absolute;
    right: -40px;
    top: -8px;
    padding: 5px 20px;
    color: var(--pbmit-global-color);
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.pricing-features ul li {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    list-style: none;
    width: 100%;
    background: #fff;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.love-benefit-ul-img {
    width: 80px;
    height: 80px;
    border: solid 1px #f08200;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background: #fff;
    text-align: center;
    padding: 10px;
    display: inline-block;
}

.pricing-features ul li span {
    line-height: 18px;
    width: calc(100% - 100px);
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
    font-size: 14px;
    color: #333;
    margin-top: 4px;
}


/*##################### Pricing #################*/

/***************************** Authentication (Login) *****************************/
.auth-main {
    position: relative;
    background-color: #eef2f6;
}

.bg-wave {
    background-image: url(../Content/images/bg_wave.png) !important;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-box {
    background-image: url(../Content/images/auth2-login.svg) !important;
    background-repeat: no-repeat;
    background-size: cover;
}

.auth-main .auth-wrapper.v1 {
    display: flex;
    align-items: center;
}

.auth-main .auth-wrapper {
    height: 100%;
    width: 100%;
    min-height: 100vh;
}

    .auth-main .auth-wrapper.v1 .auth-form {
        min-height: 100vh;
        padding: 24px;
    }

    .auth-main .auth-wrapper .auth-form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }

        .auth-main .auth-wrapper .auth-form .card {
            width: 100%;
            max-width: 480px;
            box-shadow: none;
        }


.login-side-content {
    margin-top: -50px;
    width: 80%;
}

.jobseeker-feature {
    height: 300px;
    width: 100%;
}


/*.login-side-content::after {
    content: "";
    background-image: url(../Content/images/auth2-login.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .1;
}*/

.form-floating > .form-control:not(:placeholder-shown) ~ label::after {
    background-color: transparent !important;
}

.required::after {
    content: " *";
    font-weight: bold;
    color: red;
}

.pbmit-miconheading-style-4 {
    margin-bottom: 2px;
}

.pbmit-ihbox-style-4 {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #eef2f6;
}

    .pbmit-ihbox-style-4 .pbmit-ihbox-icon {
        margin-right: 35px;
    }

    .pbmit-ihbox-style-4 .pbmit-ihbox-icon-wrapper {
        background-color: #e9edf3;
        height: 80px;
        width: 80px;
        text-align: center;
        line-height: 75px;
        border-radius: 50%;
    }

    .pbmit-ihbox-style-4 .pbmit-element-title {
        font-size: 18px;
        line-height: 30px;
        font-weight: 700;
        letter-spacing: 0;
        margin-bottom: 5px;
    }

    .pbmit-ihbox-style-4 .pbmit-heading-desc {
        font-size: 15px;
        line-height: 28px;
    }

.employer-ats-bg:before {
    content: "";
    position: absolute;
    width: 164%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: -1;
    border-radius: 0 0 0 60px;
}

.employer-ats-box {
    position:absolute;
    top:-200px;
    left:-380px;
    opacity: 0.1;
    width: 240%;
    height: 280%;
}

/***************************** End Authentication (Login) *****************************/

/***************************** Dashboard *****************************/

/** Jobseeker **/

.jobseeker-info {
    position: relative;
    background-image: url("/Content/images/prism.png");
    padding-top: 20px;
    width: 100%;
}

.jobseeker-info:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    display: block;
    z-index: 0;
    top: 0;
    background: linear-gradient(to right, rgb(23 63 126 / 85%), rgb(23 63 126 / 70%) 100%);
}

.jobseeker-info .container{
    position:relative;
}

.jobseeker-info-holder {
    display: flex;
}
.jobseeker-img-wrap {
    position: relative;
}

.jobseeker-info .jobseeker-img {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    padding: 5px;
}

.jobseeker-info .jobseeker-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.jobseeker-info .jobseeker-info-holder .profile-perc {
    position: absolute;
    top:0;
    padding: 5px 8px;
    z-index: 100;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f7f7f9;
    color: #0a66c2;
    font-size: 10px;
    font-weight: bold;
}

.jobseeker-profile-info h4, .jobseeker-profile-info ul li{
    color: #fff !important;
}

.widget-title a{
    display:flex;
    justify-content:space-between;
    position:relative;
}

.widget-title a::after{
    content: "\1F893";
    position:absolute;
    right:0;
    font-size: 30px;
    color: rgba(0, 0, 0, 0.6);
}
.sidebar hr {
    margin: 10px 0px 20px;
    border-top-color: #eeeeee;
    opacity: 1;
}

.card-title1 {
    margin:0px;
    font-size: 0.9rem;
    line-height: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.item1-links a {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #343a40;
    line-height: 30px;
    border-bottom: 1px solid #e8ebf3 !important;
}

.item1-links a.active {
    background: #f0f3fa;
    color: #1650e2;
    border-right: 2px solid #1650e2;
}

.item1-links a span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    background: #f0f3fa;
    color: var(--primary-bg-color);
}
    .item1-links a span svg {
        width: 20px;
        height: 20px;
        stroke: #1650e2;
        fill: #1650e2;
    }

.jobseeker-personal-img {
    border: 1px solid #eeeeee;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.user-profile-circle {
    width: 70%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.jobseeker-personal-detail ul{
    display:flex;
    flex-wrap:wrap;
}

.jobseeker-personal-detail  ul li {
    margin: 5px 10px 5px 0px;
    color: #474d6a;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/** Jobseeker **/
/* user dashboard info box */
.searchclient {
    position: relative;
}

.searchclient svg {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    background: #ff8a00;
    color: #ffffff;
    padding: 15px;
    cursor: pointer;
    border-radius: 0 3px 3px 0px;
}

    .searchclient input {
        padding-right: 65px;
        border-radius: 3px;
        height: 50px;
        background-color: #ffffff;
        border: 1px solid #ffffff;
    }

.cover-photo-contact .cover-photo {
    position: relative;
    display: none
}

    .cover-photo-contact .cover-photo i {
        top: 1px;
        right: 1px;
        font-size: 24px;
        color: blue;
        position: absolute;
        background: #ffffff;
        border-radius: 100%;
        cursor: pointer;
    }



.user-dashboard-table th p {
    color: #969696;
}

.user-dashboard-table tr td {
    color: var(--bs-table-striped-color);
    vertical-align: top;
}

.user-dashboard-table td li {
    margin: 0 4px;
}

    .user-dashboard-table td li a.text-info {
        color: #186fc9;
    }

    .user-dashboard-table td li a:hover {
        color: #ff8a00;
    }

    .user-dashboard-table td li a.text-primary:hover {
        color: #001935 !important;
    }

.user-dashboard-info-box .pricing-plan.active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* dashboard */
.user-dashboard-info-box .feature-info.bg-primary .feature-info-icon {
    border: none;
    background: #ffa133;
    color: #ffffff;
}

.user-dashboard-info-box .feature-info.bg-dark .feature-info-icon {
    background: #002349;
    border: none;
}

.user-dashboard-info-box .feature-info.bg-light .feature-info-icon {
    background: #ffffff;
    border: none;
}

/*Form Wizard*/

#progressbar {
    padding:0px;
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    display:flex;
}

    #progressbar li {
        list-style-type: none;
        width: 25%;
        position: relative;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }

    #progressbar li .icon-holder {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px;
        position: relative;
        z-index: 1;
    }

        #progressbar li .text-holder {
            color: darkgrey;
        }

        #progressbar li.active .icon-holder,
        #progressbar li.active:after {
            background: var(--blue-dark);
        }
        #progressbar li.active .text-holder {
            color: #163F81
        }

        #progressbar li.current .icon-holder,
        #progressbar li.current:after {
            background: rgba(43, 116, 33, 0.99)
        }

        #progressbar li.current .text-holder {
            color: rgba(43, 116, 33, 0.99)
        }
        

        #progressbar li.disabled a{
            cursor: default !important;
        }


.resume::before {
    content: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 846.66 846.66" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g id="Layer_x0020_1"> <path d="M539.75 794.68c27.15,0 27.15,41.29 0,41.29l-497.47 0c-11.4,0 -20.64,-9.25 -20.64,-20.65l0 -621.69c0,-5.7 2.31,-10.87 6.04,-14.6l162.3 -162.29c4.03,-4.03 9.31,-6.05 14.59,-6.05l466.89 0c11.4,0 20.65,9.25 20.65,20.65l0 361.36c0,27.16 -41.29,27.16 -41.29,0l0 -340.72 -437.7 0 -150.19 150.2 0 592.5 476.82 0zm-351.21 -181.98c-27.16,0 -27.16,-41.29 0,-41.29l306.67 0c27.16,0 27.16,41.29 0,41.29l-306.67 0zm0 -274.68c-27.16,0 -27.16,-41.29 0,-41.29l306.67 0c27.16,0 27.16,41.29 0,41.29l-306.67 0zm0 91.56c-27.16,0 -27.16,-41.29 0,-41.29l306.67 0c27.16,0 27.16,41.29 0,41.29l-306.67 0zm0 91.56c-27.16,0 -27.16,-41.29 0,-41.29l306.67 0c27.16,0 27.16,41.29 0,41.29l-306.67 0zm0 -274.68c-27.16,0 -27.16,-41.29 0,-41.29l306.67 0c27.16,0 27.16,41.29 0,41.29l-306.67 0zm496.57 238.25c49.84,0 90.24,40.4 90.24,90.24 0,18.1 -5.33,34.95 -14.5,49.07 37.57,24.93 61.47,66.08 64.13,111.2 1.59,27.06 -39.55,29.47 -41.13,2.42 -2.11,-35.69 -22.61,-67.48 -54.13,-84.24 -13.16,7.5 -28.38,11.78 -44.61,11.78 -17.56,0 -33.95,-5.01 -47.81,-13.69 -33.44,16.12 -55.6,49.04 -57.79,86.15 -1.59,27.05 -42.72,24.64 -41.13,-2.42 2.79,-47.18 28.75,-89.88 69.08,-114.28 -7.99,-13.47 -12.58,-29.19 -12.58,-45.99 0,-49.83 40.4,-90.24 90.23,-90.24zm0 41.29c-27.03,0 -48.94,21.92 -48.94,48.95 0,27.03 21.91,48.94 48.94,48.94 27.03,0 48.95,-21.91 48.95,-48.94 0,-27.03 -21.91,-48.95 -48.95,-48.95z"></path> </g> </g></svg>');
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.personal::before {
    content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M12.1303 13C13.8203 13 15.1903 11.63 15.1903 9.94C15.1903 8.25001 13.8203 6.88 12.1303 6.88C10.4403 6.88 9.07031 8.25001 9.07031 9.94C9.07031 11.63 10.4403 13 12.1303 13Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> <path d="M17 3H7C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7C21 4.79086 19.2091 3 17 3Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> <path d="M6.30969 20.52C6.27753 19.7534 6.40079 18.9882 6.67199 18.2704C6.94319 17.5526 7.35674 16.8971 7.88781 16.3433C8.41888 15.7894 9.05649 15.3488 9.76226 15.0477C10.468 14.7467 11.2274 14.5916 11.9947 14.5916C12.762 14.5916 13.5214 14.7467 14.2272 15.0477C14.9329 15.3488 15.5705 15.7894 16.1016 16.3433C16.6326 16.8971 17.0462 17.5526 17.3174 18.2704C17.5886 18.9882 17.7118 19.7534 17.6797 20.52" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>');
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.education::before {
    content: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M197.769 791.767l60.672-286.853c2.341-11.066-4.733-21.934-15.799-24.275s-21.934 4.733-24.275 15.799l-60.672 286.853c-2.341 11.066 4.733 21.934 15.799 24.275s21.934-4.733 24.275-15.799zm571.063-286.786l61.778 287.068c2.38 11.058 13.273 18.093 24.33 15.713s18.093-13.273 15.713-24.33l-61.778-287.068c-2.38-11.058-13.273-18.093-24.33-15.713s-18.093 13.273-15.713 24.33z"></path><path d="M967.45 386.902L535.9 208.126c-10.609-4.399-30.569-4.442-41.207-.088L57.821 386.901l436.881 178.857c10.624 4.355 30.583 4.313 41.207-.085L967.45 386.901zM551.583 603.516c-20.609 8.533-51.787 8.599-72.409.145L24.437 417.494c-32.587-13.359-32.587-47.847.009-61.188l454.73-186.174c20.641-8.448 51.818-8.382 72.407.156l448.836 185.936c32.466 13.442 32.466 47.913.004 61.354l-448.84 185.938zm288.673 166.569c-98 57.565-209.669 88.356-325.888 88.356-116.363 0-228.162-30.866-326.246-88.564-9.749-5.735-22.301-2.481-28.036 7.268s-2.481 22.301 7.268 28.036c104.336 61.377 223.297 94.22 347.014 94.22 123.564 0 242.386-32.763 346.634-93.998 9.753-5.729 13.015-18.279 7.286-28.032s-18.279-13.015-28.032-7.286z"></path><path d="M983.919 383.052v296.233c0 11.311 9.169 20.48 20.48 20.48s20.48-9.169 20.48-20.48V383.052c0-11.311-9.169-20.48-20.48-20.48s-20.48 9.169-20.48 20.48z"></path></g></svg>');
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.experience::before {
    content: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-idth="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M30 5.984h-7.988v-1.938c0-1.655-1.346-3-3-3h-6.014c-1.655 0-3 1.345-3 3v1.938h-7.999c-1.099 0-2 0.901-2 2v7.008h-0.001v2h0.001v11.963c0 1.099 0.9 2 2 2h28c1.099 0 2-0.901 2-2v-20.971c0-1.099-0.901-2-2-2h0zM11.999 4.046c0-0.552 0.448-1 1-1h6.013c0.552 0 1 0.448 1 1v1.938h-8.014zM2.001 7.984h28v7.008h-11.012v-1.024c0-1.102-0.898-2-2-2h-1.992c-1.102 0-2 0.898-2 2v1.024h-10.996v-7.008zM16.99 19.004h-1.994v-5.036h1.992zM2 28.954v-11.963h10.996v2.012c0 1.102 0.897 2 2 2h1.992c1.102 0 2-0.898 2-2v-2.012h11.012v11.963h-28z"></path> </g></svg>');
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.skill::before {
    content: url('data:image/svg+xml;utf8,<svg fill="white" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 232.688 232.688" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g id="XMLID_350_"> <g id="XMLID_351_"> <path id="XMLID_352_" d="M97.688,61.344h120c8.284,0,15-6.716,15-15s-6.716-15-15-15h-120c-8.284,0-15,6.716-15,15 S89.403,61.344,97.688,61.344z"></path> </g> <g id="XMLID_439_"> <path id="XMLID_440_" d="M217.688,101.344h-120c-8.284,0-15,6.716-15,15s6.716,15,15,15h120c8.284,0,15-6.716,15-15 S225.972,101.344,217.688,101.344z"></path> </g> <g id="XMLID_441_"> <path id="XMLID_443_" d="M217.688,171.344h-120c-8.284,0-15,6.716-15,15c0,8.284,6.716,15,15,15h120c8.284,0,15-6.716,15-15 C232.688,178.06,225.972,171.344,217.688,171.344z"></path> </g> <g id="XMLID_444_"> <path id="XMLID_445_" d="M48.785,104.408l-9.989-1.452l-4.467-9.052c-1.264-2.56-3.87-4.181-6.726-4.181 c-2.854,0-5.462,1.621-6.726,4.181l-4.468,9.052l-9.988,1.452c-2.825,0.41-5.173,2.389-6.055,5.104 c-0.882,2.715-0.146,5.695,1.897,7.688l7.228,7.045l-1.707,9.949c-0.483,2.814,0.674,5.658,2.983,7.336 c1.307,0.95,2.853,1.433,4.409,1.433c1.193,0,2.392-0.285,3.489-0.861l8.936-4.698l8.936,4.698 c1.098,0.577,2.296,0.861,3.489,0.861c0.007,0,0.015,0,0.021,0c4.142-0.001,7.499-3.358,7.499-7.5 c0-0.629-0.077-1.241-0.223-1.825l-1.612-9.393l7.228-7.045c2.045-1.993,2.78-4.973,1.898-7.688 C53.958,106.797,51.61,104.818,48.785,104.408z"></path> </g> <g id="XMLID_446_"> <path id="XMLID_447_" d="M48.785,34.408l-9.989-1.452l-4.467-9.052c-1.264-2.56-3.87-4.181-6.726-4.181 c-2.854,0-5.462,1.621-6.726,4.181l-4.468,9.052l-9.988,1.452c-2.825,0.41-5.173,2.389-6.055,5.104 c-0.882,2.715-0.146,5.695,1.897,7.688l7.228,7.045l-1.707,9.949c-0.483,2.814,0.674,5.658,2.983,7.336 c1.307,0.95,2.853,1.433,4.409,1.433c1.193,0,2.392-0.285,3.489-0.861l8.936-4.698l8.936,4.698 c1.098,0.577,2.296,0.861,3.489,0.861c0.007,0,0.015,0,0.021,0c4.142,0,7.499-3.358,7.499-7.5c0-0.629-0.077-1.241-0.223-1.825 l-1.612-9.393l7.228-7.045c2.045-1.993,2.78-4.973,1.898-7.688C53.958,36.797,51.61,34.818,48.785,34.408z"></path> </g> <g id="XMLID_448_"> <path id="XMLID_449_" d="M48.785,174.408l-9.989-1.452l-4.467-9.052c-1.264-2.56-3.87-4.181-6.726-4.181 c-2.854,0-5.462,1.621-6.726,4.181l-4.468,9.052l-9.988,1.452c-2.825,0.41-5.173,2.389-6.055,5.104 c-0.882,2.715-0.146,5.695,1.897,7.688l7.228,7.045l-1.707,9.949c-0.483,2.814,0.674,5.658,2.983,7.336 c1.307,0.95,2.853,1.433,4.409,1.433c1.193,0,2.392-0.285,3.489-0.861l8.936-4.698l8.936,4.698 c1.098,0.577,2.296,0.861,3.489,0.861c0.007,0,0.015,0,0.021,0c4.142-0.001,7.499-3.358,7.499-7.5 c0-0.629-0.077-1.241-0.223-1.825l-1.612-9.393l7.228-7.045c2.045-1.993,2.78-4.973,1.898-7.688 C53.958,176.797,51.61,174.818,48.785,174.408z"></path> </g> </g> </g></svg>');
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.review::before {
    content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill="white" fill-rule="evenodd" d="M8,0 C8.51283143,0 8.93550653,0.386039974 8.9932722,0.883378828 L9,1 L11,1 L11,2 L13,2 C13.51285,2 13.9355092,2.38604429 13.9932725,2.88337975 L14,3 L14,15 C14,15.51285 13.613973,15.9355092 13.1166239,15.9932725 L13,16 L3,16 C2.48716857,16 2.06449347,15.613973 2.0067278,15.1166239 L2,15 L2,3 C2,2.48716857 2.38604429,2.06449347 2.88337975,2.0067278 L3,2 L5,2 L5,1 L7,1 C7,0.447715 7.44772,0 8,0 Z M5,4 L4,4 L4,14 L12,14 L12,4 L11,4 L11,5 L5,5 L5,4 Z M10.5352,7.29289 C10.9258,7.68342 10.9258,8.31658 10.5352,8.70711 L7.70711,11.5352 C7.31658,11.9258 6.68342,11.9258 6.29289,11.5352 L5.29289,10.5352 C4.90237,10.1447 4.90237,9.51154 5.29289,9.12102 C5.68342,8.73049 6.31658,8.73049 6.70711,9.12102 L7,9.41391 L9.12102,7.29289 C9.51154,6.90237 10.1447,6.90237 10.5352,7.29289 Z M8,2 C7.44772,2 7,2.44772 7,3 C7,3.55228 7.44772,4 8,4 C8.55228,4 9,3.55228 9,3 C9,2.44772 8.55228,2 8,2 Z"></path> </g></svg>');
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.resume:hover::before,
.personal:hover::before,
.education:hover::before,
.experience:hover::before,
.skill:hover::before,
.review:hover::before {
    transform: scale(1.4);
}

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 20px;
        z-index: 0
    }


.wizard {
    display: block;
    width: 100%;
    overflow: hidden;
}

    .wizard > .steps {
        position: relative;
        display: block;
        width: 100%;
    }

    .wizard ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .wizard > .steps > ul > li {
        float: left;
        text-align: center;
    }

    .wizard ul > li {
        display: inline-flex;
        padding: 0;
    }

    .wizard li:not(:last-child)::after {
        content: "\203A";
        font-family: Arial, sans-serif;
        font-weight: 600;
        padding: 10px 6px;
        color: rgba(0, 0, 0, 0.4);
        font-size: 20px;
    }

    .wizard > .steps a {
        color: #565564;
        display: block;
        width: auto;
        margin: 0.5em 0.5em 0.5em;
        padding: 8px 20px;
        text-decoration: none;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 600;
        border: .1rem solid rgba(0, 0, 0, 0.13);
    }

        .wizard > .steps a i {
            display: none;
        }

    .wizard > .steps .active a {
        background: rgba(23, 199, 0, 0.07);
        border-color: rgba(23, 199, 0, 0.17);
        color: rgba(43, 116, 33, 0.99);
    }

    .wizard > .steps .current a {
        border: .1rem solid #1967D2;
        background: rgba(25, 103, 210, 0.07);
        color: #1967D2;
        cursor: default;
    }

    .wizard > .steps .done a i {
        display: inline;
        font-size: .9rem;
    }

    .wizard > .steps .disabled a {
        cursor: default;
        pointer-events: none;
    }

/***************************** Dashboard *****************************/


/***************************** Nav Tab *****************************/
.nav-tabs {
    border: none;
}

/* Icon box */

.tabs-style-iconbox {
    border-bottom: 1px solid #dee2e6;
}

.bg-tab {
    /*background: rgba(61, 97, 181,0.4);*/
    /*background: rgba(233, 237, 243,.03)*/
    background: rgb(18, 44, 102);
    background: linear-gradient(168deg, rgba(18, 44, 102, 1) 0%, rgba(23, 55, 128, 1) 44%, rgba(61, 97, 181, 1) 100%);
}

.tabs-style-iconbox li {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    text-align: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.tabs-style-iconbox li a {
    position: relative;
    overflow: visible;
    padding: 10px 0;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    display: block;
    cursor:pointer;
    z-index:1;
    color:rgba(255,255,255,0.7);
    font-weight:700;

}

.tabs-style-iconbox li .icon {
    font-weight: 700;
    font-size: 17px;
}

.tabs-style-iconbox .icon {
    display: block;
    margin: 0 0 0.25em 0;
}

.tabs-style-iconbox li .active{
    background: #fff;
    box-shadow: -1px 0 0 #fff;
    cursor:pointer;
    color:var(--blue-dark);
    border-top: 1px solid darkslateblue;
}

.tabs-style-iconbox li:first-child::before,
.tabs-style-iconbox li::after {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,0.6);
    content: '';
}

.tabs-style-iconbox li:first-child::before {
    right: auto;
    left: 0;
}


    .tabs-style-iconbox li .active:after {
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        border: solid transparent;
        border-width: 10px;
        border-top-color: #fff;
        content: '';
        pointer-events: none;
    }
/* Icon box */

/* Tab Flip */
.tabs-style-flip {
    border:unset;
    background-color: rgba(0,0,0,.09);
}

.tabs-style-flip li {
    margin-bottom: 0;
}

.tabs-style-flip li a {
    position: relative;
    z-index:0;
    font-size: 13px;
    border-radius: unset;
    display: inline-block;
    padding: 8px 10px;
    color:#74777b;
    fill:#74777b; 
    cursor:pointer;
}

.tabs-style-flip li .active {
    color:var(--blue-mid-light);
    fill:var(--blue-mid-light);
}

.tabs-style-flip li a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    content: '';
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transform: perspective(900px) rotate3d(1,0,0,90deg);
    transform: perspective(900px) rotate3d(1,0,0,90deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
    z-index:-1;
    box-sizing: border-box;
}

.tabs-style-flip li .active::after {
    background-color: #fff;
    -webkit-transform: perspective(900px) rotate3d(1,0,0,0deg);
    transform: perspective(900px) rotate3d(1,0,0,0deg);
}

.tabs-style-flip li a .nav-item-count {
    background: #f8f8ff;
    border-radius:2px;
    font-weight: 600;
    font-size: 10px;
    color: var(--blue-mid-light);
    padding:2px;
}
.tabs-style-flip li .active .nav-item-count {
    background: var(--blue-light);
    color: var(--blue-mid-light);
}
/* Tab Flip */

/* Timestamp Nav */

.tabs-style-timestamp {
    margin-top: 10px;
    margin-bottom: 10px;
}

.tabs-style-timestamp li {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    text-align: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.tabs-style-timestamp li a {
    position: relative;
    overflow: visible;
    padding: 10px 0;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    display: block;
    z-index: 1;
    color: #74777b !important;
    font-weight: 700;
    font-size: 12px;
}

.tabs-style-timestamp li .icon {
    font-weight: 700;
    font-size: 15px;
    color:#74777b;
}

.tabs-style-timestamp .icon {
    display: block;
    margin: 0 0 0.25em 0;
}

.tabs-style-timestamp li .active {
    background: #fff;
    box-shadow: -1px 0 0 #fff;
    cursor: pointer;
    color: var(--blue-dark)
}

.tabs-style-timestamp li:not(:last-child)::after {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
    width: 1px;
    height: 60%;
    background: rgba(116, 119, 123,0.3);
    content: '';
}

/* Icon box */

/* nav-tabs-jobseeker */
.nav-tabs.nav-tabs-jobseeker .nav-item .nav-link {
    color: #fff;
    border-top: 3px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    padding: 8px 14px 8px;
    margin: 0px 5px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

    .nav-tabs.nav-tabs-jobseeker .nav-item .nav-link.active {
        background: #E6E6E6;
        color: #0a66c2;
        border-top: 3px solid #0a66c2;
        border-right: 1px solid #ebf0f6;
        border-left: 1px solid #ebf0f6;
        border-bottom: 1px solid #E6E6E6;
        box-shadow: 0px -3px 4px -2px #122c66;
    }

.nav-tabs.nav-tabs-jobseeker .nav-link .nav-item-count {
    background: #f3f3f3;
    border-radius: 1rem;
    font-weight: 600;
    font-size: .75rem;
    line-height: .9375rem;
    color: #1E223C;
    padding: .0625rem .25rem 0;
}

.nav-tabs.nav-tabs-jobseeker .nav-link.active .nav-item-count {
    background: #fff5e4;
    border: 1px solid #F9CD93;
    color: #1E223C;
}
/* nav-tabs-jobseeker */

/* nav-tabs-recruiter-folder */
.nav-tabs.nav-tabs-folder {
   margin-top:15px;
}

.nav-tabs.nav-tabs-folder .nav-item .nav-link {
    color: #fff;
    border-top: 3px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    padding: 10px 14px 10px;
    margin: 0px 5px;
    border-radius:0px;
    cursor:pointer;
    font-size:12px;
    position:relative;
}

    .nav-tabs.nav-tabs-folder .nav-item .nav-link.active {
        background: var(--blue-light);
        color: #0a66c2;
        border-top: 3px solid #0a66c2;
        border-right: 1px solid #ebf0f6;
        border-left: 1px solid #ebf0f6;
        box-shadow: 0px -3px 4px -2px #122c66;
    }

    .nav-tabs.nav-tabs-folder .nav-item .nav-link span {
        padding: 3px;
        font-weight: bold;
        text-align: center;
        font-size: 10px;
        border-radius: 2px;
        background: rgba(0,0,0,0.15);
        color: rgba(255,255,255,0.3);
    }

    .nav-tabs.nav-tabs-folder .nav-item .nav-link.active span {
        background: #198754;
        color: #fff !important;
    }


/* Container for Tabs with Scroll */
.nav-tabs-folder-wrapper {
    overflow: hidden;
    margin-top: 15px;
}

/* Make Tabs Scrollable Horizontally */
.nav-tabs-folder {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE 10+ */
}

    .nav-tabs-folder::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Webkit browsers */
    }

/* Arrow Buttons */
.scroll-arrow {
    position: absolute;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: none;
    bottom:8px;
}

.scroll-arrow-left {
    left: 0;
}

.scroll-arrow-right {
    right: 0;
}

/* Show Arrows Only on Small Screens */
@media (max-width: 768px) {
    .scroll-arrow {
        display: block;
    }

    .nav-tabs.nav-tabs-folder .nav-item .nav-link {
        flex-shrink: 0; /* Prevents shrinking */
        white-space: nowrap;
    }
}



/* nav-tabs-recruiter-folder */

/* nav-tabs-01 */
.nav-tabs.nav-tabs-01 {
    border-bottom: 1px solid #ebf0f6;
}

.nav-tabs.nav-tabs-01 .nav-item{
    overflow:hidden;
}

.nav-tabs.nav-tabs-01 .nav-item .nav-link {
    border-radius: 0px;
    font-weight: 600;
    font-size: 12px;
    color: #343a40;
    line-height: 30px;
    padding: 3px 20px;
    border-top: 3px solid #fff;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    display: flex;
}

.nav-tabs.nav-tabs-01 .nav-item .nav-link span{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    background: #f0f3fa;
    color: var(--primary-bg-color);
}

.nav-tabs.nav-tabs-01 .nav-item .nav-link span svg{
    width: 17px;
    height: 17px;
    stroke: #1650e2;
    fill: #1650e2;
}


    .nav-tabs.nav-tabs-01 .nav-item .nav-link.active {
        background: #f8f8ff;
        color: #0a66c2;
        border-top: 3px solid #0a66c2;
        border-right: 1px solid #ebf0f6;
        border-left: 1px solid #ebf0f6;
        border-bottom: 1px solid #ebf0f6;
    }



.nav-tabs.nav-tabs-01 .nav-link .nav-item-count {
    background: #f3f3f3;
    border-radius: 1rem;
    font-weight: 600;
    font-size: .75rem;
    line-height: .9375rem;
    color: #1E223C;
    padding: .0625rem .25rem 0;
}

.nav-tabs.nav-tabs-01 .nav-link.active .nav-item-count {
    background: #fff5e4;
    border: 1px solid #F9CD93;
    color: #1E223C;
}

/* nav-tabs-02 */

.nav-tabs.nav-tabs-02 {
    margin-top: 15px;
}

    .nav-tabs.nav-tabs-02 .nav-item .nav-link {
        color: #000000d6;
        border-top: 3px solid transparent;
        border-right: 1px solid transparent;
        border-left: 1px solid transparent;
        border-bottom: 1px solid transparent;
        padding: 10px 14px 10px;
        margin: 0px 5px;
        border-radius: 0px;
        cursor: pointer;
        display: flex;
    }

        .nav-tabs.nav-tabs-02 .nav-item .nav-link.active {
            background: #f8f8ff;
            color: #0a66c2;
            border-top: 3px solid #0a66c2;
            border-right: 1px solid #ebf0f6;
            border-left: 1px solid #ebf0f6;
        }

        .nav-tabs.nav-tabs-02 .nav-item .nav-link span {
            display: flex; /* Use flexbox for centering */
            align-items: center;
            justify-content: center;
            padding: .0625rem .25rem 0;
            font-size:12px;
            background: #fff5e4;
            border-radius: 100%; /* Keep it circular */
            border: 1px solid #F9CD93;
            color:#000;
            margin-left:5px;
        }
/* nav-tabs-02 */


/* nav-tabs-03 */
    
    .nav-tabs.nav-tabs-03 .nav-item {
        position:relative;
        margin-bottom: 0;
        border-right: 1px solid rgba(0, 0, 0, 0.175);
    }
    .nav-tabs.nav-tabs-03 .nav-link {
        margin:unset;
        border-radius:unset;
        border:unset;
        cursor:pointer;
    }
    .nav-tabs.nav-tabs-03 .nav-item .nav-link {
        background-color: #e6e6e68d;
        color: #969696;
        padding: 10px;
        margin: 0px 0px;
        position: relative;
        border-radius: unset;
        font-size:12px;
    }

    .nav-tabs.nav-tabs-03 .nav-item .nav-link.active {
        background-color: #fff;
        color: #001935;
    }

.nav-tabs.nav-tabs-03 .nav-item:not(:nth-last-child(-n+2))::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid #E7E9EC;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.nav-tabs.nav-tabs-03 .nav-item:not(:nth-last-child(-n+2))::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid rgba(0, 0, 0, 0.175);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.nav-tabs.nav-tabs-03 .nav-item:has(.nav-link.active)::after {
    border-left: 9px solid #fff; /* Color of the caret */
}


    .nav-tabs.nav-tabs-03 .nav-link .nav-item-count {
        display: block;
        font-size: 18px;
        font-weight: normal;
        line-height: 12px;
        color: #969696;
        padding: 5px 0px;
    }

.addFolder {
    background-color: #e6e6e68d;
    color: #969696;
    padding: 10px;
    margin: 0px 0px;
    position: relative;
    border-radius: unset;
    font-size: 12px;
    display:flex;
    align-items:center;
}

.addFolder input{
    border:1px solid var(--blue-mid-light);
    outline:none;
    width:100px;
    color:#74777b;
}

    .addFolder input::placeholder {
        font-size: 12px;
        color: rgba(0,0,0,.3);
    }

.addFolder button{
    border:none;
    outline:none;
    background-color:var(--blue-mid-light);
    color:#fff;
}

.addFolder .field-validation-error{
    position: absolute;
    top: 0;
    left: 10px;
}
/*.nav-tabs.nav-tabs-03 .nav-link.active .nav-item-count {
        background: #fff5e4;
        border: 1px solid #F9CD93;
        color: #1E223C;
    }*/
/* form - tabs-03 */
/***************************** End Nav Tab *****************************/
/***************************** Search *****************************/
/*Search*/
.feather {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 45px;
    height: 100%;
    background-color: rgba(119,119,119,.3);
    stroke: var(--blue-mid-light);
    display: flex;
    align-items: center;
    padding: 5px 15px;
    cursor: pointer;
    border-color: var(--blue-mid-light) !important;
}

.applicationfilter .header-search .form-control {
    height:40px;
    padding: .813rem 3.3rem;
    background-color: #fff;
    display: block;
    font-size: .875rem;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.applicationfilter .header-search .form-control:focus {
    border-color:var(--blue-mid-light);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.applicationfilter .header-search .btn-search {
    position: absolute;
    top: 3px;
    left: 3px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.applicationfilter .header-search {
    position: relative;
}



.applicationfilter .header-search .btn-search svg {
    stroke: #fff;
    stroke-width: 2px;
}

.btn-light-secondary, .btn-light-secondary:hover, .btn-light-secondary:focus {
    background: var(--blue-mid-light);
    color: #fff;
    border-color: var(--blue-mid-light);
}

.filterbtns {
    height: 300px;
    overflow-y: scroll;
    width: 30%;
}

.filtertabs .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background: #fffaf5;
    border-left: 2px solid #ff7900;
    color: rgb(255, 121, 0);
}

.filtertabs .nav-pills .nav-link {
    text-align: left;
    background: #fafafa;
    width: 100%;
    padding: 10px 24px;
    border-radius: 0px;
    color: #001935;
    border-left: 2px solid #fafafa;
    border-bottom: 1px solid rgb(235, 235, 235);
}

.filtersDashed {
    width: 100%;
    border-bottom: 1px dashed #e8e8e8;
    margin: 7px auto;
}

.listing_filter {
    gap: 8px 12px;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

    .listing_filter li {
        cursor: pointer;
    }

    .listing_filter .selected-bubble {
        background-color: #e1d8f1;
        color: #673ab7;
        padding: 5px 10px;
        font-size: 12px;
        line-height: 0;
    }

        .listing_filter .selected-bubble::after {
            content: "\2716";
            font-family: Arial, sans-serif;
            color: #fff !important;
            background-color: #673ab7;
            border-radius: 100%;
            line-height: 0;
            font-size: 7px;
            padding: 6px 3px;
            margin-left: 4px;
        }

.clear-all-btn {
    color: #673ab7;
}

.popular-tag {
}

.popular-tag ul li {
    display: inline-block;
    margin-bottom: 4px;
    padding: 5px 10px;
    border: 1px solid #eeeeee;
}
    .popular-tag.warning ul li {
        background-color: #ff000012;
        color: #d11212
    }



.candidate-detail:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
}


/*Search Bar with Button*/

.search_jobs {
    background: #fff;
    box-shadow: 0 1rem 3rem #122c66 !important;
    border-radius: 100px;
    padding: 0px 13px !important;
}

.search_keywords {
    width: 50%;
}

.search_location {
    width: 25%;
}

.search_eperience {
    width: 25%;
}

.search_jobs .search_divider {
    border: 1px solid #eaeef9;
    height: 30px;
    margin: 0 10px;
    background-color: #eaeef9;
}

.search-background {
    border-radius: 3px;
    overflow: hidden;
}

.search_jobs .form-control {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    padding: 0.375rem 0.75rem;
    font-size: 0.9375rem;
    color: #343a40;
    height: 65px;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search_jobs
.search_keywords .form-control {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}


.search_jobs .form-control::placeholder {
    opacity: 1;
    font-size: 14px;
}

.search_jobs .select2-container--default .select2-selection--single {
    border: none;
    height: 65px;
    border-radius: 0px;
    background-color: #fff;
    display: flex;
    align-items: center !important;
}

    .search_jobs .select2-container--default .select2-selection--single .select2-selection__arrow:before {
        color: rgba(0,0,0,0.3);
    }

img.location-gps {
    cursor: pointer;
    height: 20px !important;
    line-height: 33px;
    position: absolute;
    right: 12px;
    text-align: right;
    top: 14.5px;
    background: #fff;
    width: 15px !important;
    color: #343a40;
    left: auto;
}

.input-group.search_jobs_1 .form-control {
    padding: 1.5rem 0.75rem;
}

.search_jobs_2 {
    background: #fff;
    padding: 0px 5px !important;
}

.search_jobs_2 .search_keywords {
    width: 100%;
}

.search_jobs_2 .search-background {
    border-radius: 3px;
    overflow: hidden;
}

.search_jobs_2 .form-control {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    padding: 0.375rem 0.75rem;
    font-size: 0.9375rem;
    color: #343a40;
    height: 50px;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.search_jobs_2 .form-control::placeholder {
    opacity: .75;
    font-size: 14px;
}
    .search_jobs_2 button, .search_jobs_2 a {
        display: flex;
    }


    .search_jobs_2 button::after, .search_jobs_2 a::after {
        content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14.9536 14.9458L21 21M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path> </g></svg>');
        display: inline-block;
        width: 13px;
        height: 13px;
        margin-left:5px;
    }


.search {
    position: relative;
}
    .search .form-control {
        border-radius: 3px;
        font-weight: 400;
        padding-right: 120px;
        height: 50px;
        padding-left: 15px;
    }

    .search a {
        position: absolute;
        right: 0;
        top: 0;
        margin: 6px;
        padding: 18px 20px 17px;
        background: #ff8a00;
        color: #ffffff;
        border-radius: 3px;
    }

    .search button {
        position: absolute;
        right: 0;
        top: 0;
        color: #ffffff;
        border-radius: 3px;
    }

    /*.search svg {
        position: absolute;
        color: #ff8a00;
        cursor: pointer;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }*/

.select2-container--default .select2-selection--single {
    font-size: 14px;
}


.search input {
    padding-left: 30px;
    padding-right: 130px;
    height: 70px;
}


/*Search Bar with Button*/   




/***************************** Search End *****************************/



/***************************** Footer *****************************/
.footer {
    color: #4d4d4d;
    background-color: #EFF4FC;
}

.footer-widget-col-1, .footer-widget-col-2, .footer-widget-col-3 {
    flex: 0 0 17%;
    max-width: 17%;
}

.footer-widget-col-4 {
    flex: 0 0 32%;
    max-width: 32%;
}

.footer ul {
    margin: 0;
}



.footer-top-logo img {
    height: 34px;
}

.footer .footer-link ul li {
    margin-bottom: 10px;
}

    .footer .footer-link ul li:last-child {
        margin-bottom: 0px;
    }

    .footer .footer-link ul li a {
        color: #4d4d4d;
    }

        .footer .footer-link ul li a:hover {
            color: #ff8a00;
        }

.footer .footer-contact-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 15px;
}

    .footer .footer-contact-info ul li i {
        line-height: 24px;
    }

    .footer .footer-contact-info ul li span {
        padding-left: 10px;
    }

.footer .footer-contact-info.bg-holder {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.footer-bottom {
    padding: 20px 0px;
    color: #fff;
    background-color: var(--blue-dark);
}

    .footer-bottom ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
    }

        .footer-bottom ul li {
            margin-right: 10px;
        }

            .footer-bottom ul li a {
                color: #fff;
                font-weight: 500;
            }

    .footer-bottom .dash-footer li a {
        color: #6c757d;
        font-weight: 500;
    }

    .footer-bottom ul li a:hover {
        color: #ff8a00;
    }

.social ul li a {
    font-weight: 600;
}

.social ul li.facebook a {
    color: #094ecd;
}

.social ul li.twitter a {
    color: #25d1e0;
}

.social ul li.linkedin a {
    color: #0077b5;
}
/***************************** End Footer *****************************/

/***************************** Select 2 *****************************/

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

    .select2-container .select2-selection--single {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        user-select: none;
        -webkit-user-select: none;
        height: auto;
        outline: 0
    }

    .select2-container .select2-selection--single .select2-selection__clear {
        position: relative
    }

    .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
        padding-right: 8px;
        padding-left: 20px
    }

    .select2-container .select2-selection--multiple {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        min-height: 32px;
        user-select: none;
        -webkit-user-select: none
    }

        .select2-container .select2-selection--multiple .select2-selection__rendered {
            display: inline-block;
            overflow: hidden;
            padding-left: 8px;
            text-overflow: ellipsis;
            white-space: nowrap
        }

.select2-container--classic .select2-selection--multiple .select2-selection__clear, .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear, .select2-container--default.select2-container--disabled .select2-selection__choice__remove, .select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-container .select2-search--inline {
    float: left
}

    .select2-container .select2-search--inline .select2-search__field {
        box-sizing: border-box;
        border: none;
        font-size: 100%;
        margin-top: 5px;
        padding: 0
    }

        .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none
        }

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #aaa;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 99999
}

.select2-results {
    display: block
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none
}

    .select2-results__option[aria-selected] {
        cursor: pointer
    }

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none
    }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff
}

.select2-hidden-accessible {
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
}

    .select2-container--default .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: 700
    }

    .select2-container--default .select2-results__option[aria-disabled=true], .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #999
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-width: 5px 4px 0;
        height: 0;
        left: 50%;
        margin-left: -4px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0
    }

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
    opacity:0.3;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888;
    border-width: 0 4px 5px
}

.select2-container--default .select2-selection--multiple {
    background-color: #f2f2f2;
    border: 1px solid var(--input-border);
    border-radius: 0px;
    cursor: text;
    font-weight: 600
}

    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        box-sizing: border-box;
        list-style: none;
        margin: 0;
        padding: 0 5px;
        width: 100%
    }

        .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
            list-style: none
        }

    .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
        color: #999;
        margin-top: 5px;
        float: left
    }

    .select2-container--default .select2-selection--multiple .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: 700;
        margin-top: 5px;
        margin-right: 10px
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: rgba(22, 80, 226, 0.1) !important;
        border: 1px solid rgba(22, 80, 226, 0.86) !important;
        color: rgba(22, 80, 226, 0.86);
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        font-size: 10px;
        padding-right: 3px
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        padding: 2px 3px;
        display: inline-block;
        cursor: pointer;
        font-weight: 700;
        font-size: 11px;
    }

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
    float: right
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid var(--blue);
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: 0 0;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

    .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
        padding-left: 0
    }

    .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -1em;
        padding-left: 2em
    }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -2em;
            padding-left: 3em
        }

            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-left: -3em;
                padding-left: 4em
            }

                .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-left: -4em;
                    padding-left: 5em
                }

                    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-left: -5em;
                        padding-left: 6em
                    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top,#fff 50%,#eee 100%);
    background-image: -o-linear-gradient(top,#fff 50%,#eee 100%);
    background-image: linear-gradient(to bottom,#fff 50%,#eee 100%);
    background-repeat: repeat-x
}

    .select2-container--classic .select2-selection--single:focus {
        border: 1px solid #5897fb
    }

    .select2-container--classic .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px
    }

    .select2-container--classic .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: 700;
        margin-right: 10px
    }

    .select2-container--classic .select2-selection--single .select2-selection__placeholder {
        color: #999
    }

    .select2-container--classic .select2-selection--single .select2-selection__arrow {
        background-color: #ddd;
        border: none;
        border-left: 1px solid #aaa;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
        background-image: -webkit-linear-gradient(top,#eee 50%,#ccc 100%);
        background-image: -o-linear-gradient(top,#eee 50%,#ccc 100%);
        background-image: linear-gradient(to bottom,#eee 50%,#ccc 100%);
        background-repeat: repeat-x
    }

        .select2-container--classic .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0
        }

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
        background: 0 0;
        border: none
    }

        .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent #888;
            border-width: 0 4px 5px
        }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top,#fff 0,#eee 50%);
    background-image: -o-linear-gradient(top,#fff 0,#eee 50%);
    background-image: linear-gradient(to bottom,#fff 0,#eee 50%);
    background-repeat: repeat-x
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top,#eee 50%,#fff 100%);
    background-image: -o-linear-gradient(top,#eee 50%,#fff 100%);
    background-image: linear-gradient(to bottom,#eee 50%,#fff 100%);
    background-repeat: repeat-x
}

.select2-container--classic .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0
}

    .select2-container--classic .select2-selection--multiple:focus {
        border: 1px solid #5897fb
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
        list-style: none;
        margin: 0;
        padding: 0 5px
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
        color: #888;
        cursor: pointer;
        display: inline-block;
        font-weight: 700;
        margin-right: 2px
    }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #555
        }

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option[role=group], .select2-container--default .select2-search--dropdown {
    padding: 0
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}

.bigdrop {
    min-width: 196px !important
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 8px 2px;
    font-size:12px;
}

.select2-container {
    width: 100% !important
}

.select2-container--default .select2-results__option--highlighted {
    border-radius: 0px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M7.00003 8.5C6.59557 8.5 6.23093 8.74364 6.07615 9.11732C5.92137 9.49099 6.00692 9.92111 6.29292 10.2071L11.2929 15.2071C11.6834 15.5976 12.3166 15.5976 12.7071 15.2071L17.7071 10.2071C17.9931 9.92111 18.0787 9.49099 17.9239 9.11732C17.7691 8.74364 17.4045 8.5 17 8.5H7.00003Z" fill="%236c757d"></path> </g></svg>');
    display: inline-block;
    width: 15px;
    height: 15px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e0e0
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e6e6e6;
    cursor: not-allowed
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    padding-left: 10px;
    font-weight: 600;
    background: #d9dcf0;
    color: #3f51b5;
}

.select2-dropdown {
    border: none;
    border-radius: 0
}

.select2-container--default .select2-selection--single {
    display: flex;
    justify-content:space-between;
    align-items:center;
    height: 32px;
    padding: 5px;
    border-radius: 0px;
    font-size: 12px;
    border: 1px solid rgba(0,0,0,0.2);
    background-color: rgba(0,0,0,0.05);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 16px;
}

.select2-results__option[aria-selected] {
    text-transform: capitalize;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    border: none
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #626262;
}

.select2-container--default.select2-container--disabled .select2-selection--single:focus, .select2-container--default.select2-container--disabled .select2-selection--single:hover {
    border: 1px solid rgba(0,0,0,0.2);
    cursor:not-allowed;
}

.select2-selection--single:focus, .select2-selection--single:hover {
    border: 1px solid var(--blue);
}

.select2-container--open .select2-dropdown {
    left: 0;
    background: #f9f9f9;
    padding: 7px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 .125rem .5rem -.25rem rgba(31,27,45,.12),0 .25rem 1rem rgba(31,27,45,.12) !important
}

.select2-search--dropdown .select2-search__field {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #eee;
    padding: 4px 10px;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.04);
    box-shadow: 0 2px 5px rgba(0,0,0,.04)
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--blue);
}

.select-border .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 16px
}

    .select-border .select2-container--default .select2-selection--single .select2-selection__arrow:before {
        color: #969696
    }

/***************************** Select 2 End *****************************/

fieldset {
    border: 1px solid #eeeeee;
    padding:5px 10px;
    margin-bottom:10px;
}

fieldset legend {
    font-size: 13px;
    font-weight: 500;
    width: auto;
    padding: 0;
    float: none;
}

/*Toast Notification*/
.jq-toast-wrap, .jq-toast-wrap * {
    margin: 0;
    padding: 0
}

.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 250px;
    pointer-events: none !important;
    letter-spacing: normal;
    z-index: 9000 !important
}

    .jq-toast-wrap.bottom-left {
        bottom: 20px;
        left: 20px
    }

    .jq-toast-wrap.bottom-right {
        bottom: 20px;
        right: 40px
    }

    .jq-toast-wrap.top-left {
        top: 20px;
        left: 20px
    }

    .jq-toast-wrap.top-right {
        top: 20px;
        right: 40px
    }

.jq-toast-single {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0 0 5px;
    border-radius: 4px;
    font-size: 12px;
    font-family: arial,sans-serif;
    line-height: 17px;
    position: relative;
    pointer-events: all !important;
    background-color: #444;
    color: #fff
}

    .jq-toast-single h2 {
        font-family: arial,sans-serif;
        font-size: 14px;
        margin: 0 0 7px;
        background: 0 0;
        color: inherit;
        line-height: inherit;
        letter-spacing: normal
    }

    .jq-toast-single a {
        color: #eee;
        text-decoration: none;
        font-weight: 700;
        border-bottom: 1px solid #fff;
        padding-bottom: 3px;
        font-size: 12px
    }

    .jq-toast-single ul {
        margin: 0 0 0 15px;
        background: 0 0;
        padding: 0
    }

        .jq-toast-single ul li {
            list-style-type: disc !important;
            line-height: 17px;
            background: 0 0;
            margin: 0;
            padding: 0;
            letter-spacing: normal
        }

.close-jq-toast-single {
    position: absolute;
    top: 3px;
    right: 7px;
    font-size: 14px;
    cursor: pointer
}

.jq-toast-loader {
    display: block;
    position: absolute;
    top: -2px;
    height: 5px;
    width: 0;
    left: 0;
    border-radius: 5px;
    background: red
}

.jq-toast-loaded {
    width: 100%
}

.jq-has-icon {
    padding: 10px 10px 10px 50px;
    background-repeat: no-repeat;
    background-position: 10px
}

.jq-icon-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=);
    background-color: #31708f;
    color: #d9edf7;
    border-color: #bce8f1
}

.jq-icon-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=);
    background-color: #8a6d3b;
    color: #fcf8e3;
    border-color: #faebcc
}

.jq-icon-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=);
    background-color: #a94442;
    color: #f2dede;
    border-color: #ebccd1
}

.jq-icon-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==);
    color: #dff0d8;
    background-color: #3c763d;
    border-color: #d6e9c6
}
/*Toast Notification*/



/*##################### Responsive #################*/
@media (min-width: 992px) {
    .header .navbar .main-navbar .dropdown-menu {
        margin: 0px;
        font-size: 14px;
        border-radius: 5px;
        border: none;
        left: 100%;
        -webkit-transform: translate3d(-50%, 10px, 0);
        transform: translate3d(-50%, 10px, 0);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, transform;
        transition-property: opacity, visibility, transform, -webkit-transform;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        visibility: hidden;
        opacity: 0;
        display: block !important;
        pointer-events: none;
        top: 100%;
    }

    .header .navbar .main-navbar .dropdown:hover > .dropdown-menu {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        visibility: visible;
        opacity: 1;
        pointer-events: visible;
        pointer-events: unset;
    }

    .header .navbar .main-navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: 100%;
        right: auto;
        -webkit-transform: translate3d(0px, 10px, 0);
        transform: translate3d(0px, 10px, 0);
        top: 0;
    }

    .navbar-nav li:hover > ul.dropdown-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: visible;
        pointer-events: unset;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 99%;
        margin-top: -6px;
    }

    .dropdown-menu > li > a:hover:after {
        text-decoration: underline;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}


@media (max-width: 1400px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 12px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .header .container-fluid {
        padding: 0 30px;
    }

    .navbar-brand {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
        flex: 0 0 120px;
    }

    .header .navbar-collapse {
        margin-left: 10px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 7px;
    }
}

.navbar-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 991px) {
    .header .container-fluid {
        padding: 0 20px;
    }

    .navbar-toggler {
        border: none;
        position: absolute;
        height: 75px;
        right: 10px;
    }

    .header .navbar-collapse {
        position: absolute;
        top: 100%;
        z-index: 999;
        background: #ffffff;
        width: 100%;
        left: 0;
        margin-left: 0px;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .navbar-nav {
        padding: 10px 0;
    }

        .navbar .navbar-nav .nav-link {
            color: var(--text-dark);
            padding: 10px 20px;
        }

            .navbar .navbar-nav .nav-link i {
                margin-left: auto;
            }

    .header .navbar-nav > li {
        display: block;
    }

    .header .navbar .main-navbar .dropdown-menu {
        margin: 0px;
        font-size: 14px;
        border-radius: 0px;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #f6f6f6;
        padding: 14px 30px;
        font-size: 13px;
        max-height: 300px;
        overflow-x: scroll;
    }
    
    .add-listing .navbar-nav {
        right:60px;
        position:absolute;
    }

    .header .add-listing .navbar-nav > li {
        display: flex;
    }

    .header .add-listing .navbar-nav .nav-link {
        padding: 10px 0px;
    }

    .header .add-listing {
        margin-right: 40px;
    }

    .header .navbar .dropdown-menu li {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 400px) {
    .header .add-listing a.btn {
        margin-left: auto;
        width: 75px !important;
        padding: 4px;
        line-height: .8rem;
        font-size: 12px;
    }
}

@media (max-width: 575px) {

    .search_jobs {
        background: none;
        box-shadow: none !important;
        border-radius: 0px;
        padding: 0px !important;
    }
    .search_jobs .search_keywords .form-control{
        border-radius:3px !important;
    }

    .search_keywords, .search_location, .search_eperience {
        width: auto !important;
    }

    .search_jobs .search_divider {
        border: 1px solid transparent;
        height: 30px;
        margin: 0 10px;
        background-color: transparent;
    }

    .home-search .btn-blue {
        border-radius: 3px !important;
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .search_jobs .form-control {
        height: 45px;
    }

    .search_jobs .select2-container--default .select2-selection--single {
        height: 45px;
    }


    .login-side-content {
        margin-top: 0px;
        width: 100%;
        margin-bottom: 80px;
    }

    .employer-ats-box {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .tabs-menu ul.jobs-tabs li {
        width: 50%;
        text-align: center;
    }

    .add-listing .navbar-nav {
        display: flex;
        flex-direction: row;
    }

    .header .add-listing {
        display: -webkit-box;
        display: -ms-flexbox;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .add-listing a.btn {
        margin-left: auto;
        font-size: 12px;
        width: 70px !important;
        padding: 4px;
        line-height: .85rem;
    }
}

@media (max-width: 1340px) {
    .banner-shape {
        bottom: -30px;
    }

    #slider .slider-content h1 {
        font-size: 60px;
    }

    .slider-category {
        margin-top: -60px;
    }

    .header .navbar .dropdown-menu a.dropdown-item {
        min-width: 150px;
    }

    .job-search-item input.location-input {
        padding-right: 105px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 8px;
    }
}

@media (max-width: 1199px) {
    .header.header-transparent + .banner {
        padding: 240px 0 155px 0;
    }

    .footer .btn.btn-app {
        padding: 12px 20px;
    }
    /* nav-tabs */
    .nav-tabs.nav-tabs-02 .nav-item .nav-link {
        margin: 0px 10px;
        padding: 12px 14px 18px;
    }

    .nav-tabs .nav-item .nav-link {
        margin-right: 10px;
        padding: 10px 25px;
    }

    .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: auto;
        right: 100%;
    }
    /* countdown */
    .countdown span {
        font-size: 60px;
        line-height: 60px;
    }

    .countdown-small.countdown span {
        font-size: 40px;
        line-height: 40px;
    }

    #slider .slider-content h1 {
        font-size: 48px;
    }
    /* index slider */
    .slider-category {
        margin-top: -40px;
    }
    /* job-search-item */
    .job-search-item .btn {
        padding: 18px 15px;
    }
    /* secondary-menu */
    .secondary-menu ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 34px;
    }

    .space-ptb {
        padding: 60px 0;
    }

    .space-pt {
        padding-top: 60px;
    }

    .space-pb {
        padding-bottom: 60px;
    }

    .container-fluid {
        padding: 0 25px;
    }

    /* Toggle Menu */
    #nav-icon4 {
        width: 40px;
        height: 40px;
        cursor: pointer;
        padding: 0px;
        right: 10px;
    }

        #nav-icon4 svg {
            width: 42px;
            height: 42px;
            opacity: 1;
            fill:var(--blue-dark);
        }

            /*#nav-icon4 span:nth-child(1) {
                top: 5px;
                height:3px;
                -webkit-transform-origin: left center;
                transform-origin: left center;
            }

            #nav-icon4 span:nth-child(2) {
                top: 20px;
                height: 3px;
                -webkit-transform-origin: left center;
                transform-origin: left center;
            }

            #nav-icon4 span:nth-child(3) {
                top: 32px;
                height: 3px;
                -webkit-transform-origin: left center;
                transform-origin: left center;
            }

        #nav-icon4.open span:nth-child(1) {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 12px;
            left: 0px;
        }

        #nav-icon4.open span:nth-child(2) {
            width: 0%;
            opacity: 0;
        }

        #nav-icon4.open span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 32px;
            left: 0px;
        }*/
    /* banner */
    .header.header-transparent + .banner {
        padding: 100px 0 100px 0;
    }

    .banner {
        padding: 100px 0;
    }

    .job-search-item .btn {
        margin-top: 0px;
    }

    .banner-shape {
        display: none;
    }

    .navbar-brand img {
        height: 40px;
    }
    /* blog */
    .blog-post .blog-post-details {
        padding: 25px 20px 20px;
    }

    .blog-post .blog-post-footer {
        padding: 25px 10px;
    }

    .blog-detail .blog-post .blog-post-footer {
        padding: 15px 0px;
    }

        .blog-detail .blog-post .blog-post-footer .blog-post-time {
            margin: 0 0px;
        }

    .secondary-menu ul li a {
        padding: 1px 10px;
    }
    /* share-box */
    .share-box .share-box-social {
        width: 165px;
    }

        .share-box .share-box-social li a {
            padding: 0 7px;
        }

    .widget .company-detail-meta .share-box .share-box-social {
        width: 145px;
    }
    /* footer */
    .footer {
        padding-top: 50px;
    }

    .footer-shape {
        display: none;
    }

    .footer-bottom {
        padding: 24px 0px;
    }

    .footer-top-logo img {
        height: 30px;
    }
    /* owl-nav */
    .owl-nav-top-center .owl-nav .owl-prev {
        left: 35%;
    }

    .owl-nav-top-center .owl-nav .owl-next {
        right: 35%;
    }

    .owl-nav-bottom-center .owl-nav .owl-prev {
        right: 60%;
    }

    .owl-nav-bottom-center .owl-nav .owl-next {
        left: 60%;
    }

    #slider .slider-content h1 {
        font-size: 34px;
    }

    #slider .slider-content h2 {
        font-size: 22px;
        line-height: 30px;
    }

    #slider .slider-content a.btn-link {
        padding: 0;
    }
    /* sidebar */
    .sidebar {
        margin-bottom: 40px;
    }

    .widget .company-detail-meta {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    /* 404 */
    .notfound-404 {
        height: 160px;
    }

        .notfound-404 h1 {
            font-size: 110px;
        }
    /* mfp-close */
    .mfp-image-holder .mfp-close {
        right: 10px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        top: 10px;
        padding-right: 5px;
    }

    img.mfp-img {
        padding: 0;
    }
    /* secondary-menu */
    .sticky-top.secondary-menu-sticky-top {
        position: inherit;
        z-index: 9;
    }
    /* Popup */
    .social-login ul li a {
        padding: 15px;
    }

    .job-filter-tag {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .footer-widget-col-1, .footer-widget-col-2, .footer-widget-col-3, .footer-widget-col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
        line-height: 34px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 17px;
    }

    .space-ptb {
        padding: 50px 0;
    }

    .space-pt {
        padding-top: 50px;
    }

    .space-pb {
        padding-bottom: 50px;
    }

    .container {
        max-width: 100%;
    }

    .container-fluid {
        padding: 0 30px;
    }

    .section-title {
        margin-bottom: 30px;
    }

        .section-title p {
            margin-top: 20px;
        }

    .section-title-02 {
        margin-bottom: 30px;
    }

    .bg-holder-pattern {
        background-image: inherit !important;
    }

    .step-number {
        margin-bottom: 10px;
    }

        .step-number span:after {
            content: none;
        }

    .lead {
        font-size: 16px;
    }
    /* header-inner */
    .header-inner {
        padding: 50px 0;
    }

        .header-inner.header-inner-big {
            padding: 50px 0;
        }
    /* blog */
    .blog-post-quote .blockquote {
        padding: 20px 20px 0px 20px;
    }

    .progress {
        position: relative;
        overflow: inherit;
        height: 3px;
        margin: 40px 0px 20px;
    }

    .secondary-menu {
        padding: 10px 10px 0px 10px;
    }

        .secondary-menu ul li a {
            padding: 1px 8px;
        }

        .secondary-menu ul {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

    .blog-sidebar .widget {
        margin-bottom: 30px;
    }

    .banner-bg-slider-content .job-search-item .form-group {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .banner-bg-slider-content .job-search-item input {
        padding-left: 20px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        margin-right: 0px;
        margin-bottom: 16px;
    }
    /* category */
    .category-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

        .category-item:nth-child(1n+3) {
            border-top: 1px solid #f6f6f6;
        }

        .category-item:nth-child(2n+0) {
            border-right: 0;
        }

    .social-login ul li {
        min-width: 100%;
    }

    .login-register .form-control {
        height: 40px;
    }

    .pagination {
        margin-bottom: 0;
    }

        .pagination .page-item {
            margin: 0px;
        }
    /* job-list */
    .job-list {
        padding: 24px 20px;
    }


    .testimonial-content p {
        font-size: 16px;
    }

    .nav-tabs.nav-tabs-02 .nav-item .nav-link {
        margin: 0px 0px;
        padding: 12px 13px 10px;
    }

    .tab-pane .border-right {
        border: none !important;
    }

    .style-01 ul {
        margin: 20px 0px;
    }

    .job-found {
        margin-bottom: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #slider .slider-content h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    #slider .slider-content h2 {
        font-size: 16px;
    }

    #slider .slider-content h6 {
        line-height: 18px;
        font-size: 14px;
    }
    /* feature-content */
    .feature-content {
        padding: 40px 20px;
    }

    .feature-info-03 {
        margin-bottom: 30px;
    }

    
    /* pricing */
    .pricing-plan {
        margin-bottom: 30px;
        margin-top: 30px;
    }
    /* index slider */
    .slider-category {
        margin-top: 60px;
    }

    .companies-counter {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
        flex: 0 0 120px;
    }

    .slider-banner .carousel-control-next,
    .slider-banner .carousel-control-prev {
        display: none;
    }
    /* nav-tabs */
    .nav-tabs .nav-item .nav-link {
        margin-bottom: 10px;
    }

    .blog-sidebar .widget .newsletter .newsletter-bg-icon i {
        right: 0;
    }

    .job-tag li {
        margin-left: 0;
        margin-right: 10px;
    }
}

@media (max-width: 575px) {

    /*Employer List*/
    .employers-list {
        display:block;
    }

    .employers-list .employers-list-logo {
        width:80px;
    }
    .employers-list-details, .employers-list-info {
        display:block;
        position:relative;
    }

    .employers-list-drop{
        position:absolute;
        top:0;
        right:0;
    }

    h1 {
        font-size: 26px;
    }

    .space-ptb {
        padding: 40px 0;
    }

    .space-pt {
        padding-top: 40px;
    }

    .space-pb {
        padding-bottom: 40px;
    }

    .lead {
        font-size: 14px;
    }

    .banner {
        padding:30px 0px 15px 0px;
    }

    .job-search-item input.location-input {
        padding-right: 40px;
    }

    .job-search-item .left-icon .detect:after {
        left: -27px;
        top: -20px;
    }

    .header.header-transparent + .banner {
        padding: 80px 0px 80px 0px;
    }

    .agency-logo {
        display: none;
    }

    .container-fluid {
        padding: 0 15px;
    }


    .job-search-field .select2-container--default .select2-selection--single {
        height: 50px;
        padding: 15px 20px;
    }

        .job-search-field .select2-container--default .select2-selection--single .select2-selection__arrow {
            top: 18px;
        }
    /* feature-info */
    .feature-info-02,
    .feature-info-04 {
        display: block;
    }

    .job-img-01 {
        padding-right: 0px;
    }

    .job-img-02 {
        margin-top: 20px;
    }

    .popup-icon i {
        left: 50%;
    }

    .feature-info-rounded.text-start {
        display: block;
    }

        .feature-info-rounded.text-start .feature-info-icon {
            margin-bottom: 20px;
        }

    .job-found h6 {
        font-size: 14px;
    }
    /* blog */
    .blog-post-footer .blog-post-time,
    .blog-post-footer .blog-post-author,
    .blog-post-footer .blog-post-comment,
    .blog-post-footer .blog-post-share {
        display: inline-block;
    }

    .blog-post .blog-post-details .blog-post-description {
        margin: 15px 0px;
    }

    .blog-detail .blog-post .blog-post-content .blockquote {
        font-size: 14px;
        padding-left: 20px;
    }

    .blog-post .blog-post-footer .blog-post-time,
    .blog-post-author,
    .blog-post-time,
    .blog-detail .blog-post-comment,
    .blog-post-share {
        margin: 0 5px;
    }

    .navigation .nav-links {
        display: block;
    }

        .navigation .nav-links .nav-previous {
            width: 100%;
        }

        .navigation .nav-links .nav-next {
            width: 100%;
            margin-top: 5px;
        }

    .megamenu .agency-logo .job-list {
        margin-bottom: 10px;
    }

        .megamenu .agency-logo .job-list .job-list-logo {
            margin-bottom: 0;
        }

    .blog-detail .blog-post-tags {
        display: block !important;
    }

    .candidate-banner .candidate-list .candidate-list-details {
        border-bottom: none;
    }

    .jobber-candidate-timeline .jobber-timeline-item .jobber-timeline-info {
        padding: 5px 0 0 50px;
    }

    .jobber-candidate-timeline .jobber-timeline-item .jobber-timeline-cricle:before {
        display: none;
    }
    /* countdown */
    .countdown {
        margin: 0px 10px;
    }

        .countdown span {
            font-size: 24px;
            line-height: 24px;
        }

        .countdown p {
            font-size: 14px;
        }

    .countdown-small.countdown span {
        font-size: 20px;
        line-height: 20px;
    }
    /* companies-counter */
    .companies-counter {
        text-align: center;
        border: none !important;
    }

    .companies-info {
        padding-right: 0px;
    }

    .companies-counter .counter {
        width: 48%;
        padding: 15px !important;
    }
    /* footer */
    .footer {
        padding-top: 40px;
    }

        .footer .btn-app {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

    .btn-app {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
    /* category */
    .category-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

        .category-item:nth-child(1n+2) {
            border-top: 1px solid #f6f6f6;
        }

        .category-item:nth-child(1n+0) {
            border-right: 0;
        }
    /* nav-tabs */
    .nav-tabs .nav-item .nav-link {
        padding: 6px 8px !important;
        margin-right: 2px;
    }

    .job-shortby {
        margin-top: 20px;
    }

        .job-shortby .filter-btn {
            margin-top: 30px;
        }

    .nav-tabs.nav-tabs-border .nav-item {
        margin-right: 0 !important;
        width: 100%;
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
    }

        .nav-tabs.nav-tabs-border .nav-item .nav-link {
            padding: 20px 15px !important;
        }

    .nav-tabs.nav-tabs-border .tab-icon {
        font-size: 24px;
        line-height: 24px;
    }

    .pagination {
        padding: 5px 8px;
    }

        .pagination .page-item .page-link {
            padding: 8px 10px;
        }

    .filter-btn .btn {
        padding: 12px 25px;
    }

    .social-login ul li a {
        padding: 10px;
    }

    .job-list {
        padding: 20px 15px;
    }

    .similar-jobs-item.widget-box {
        padding-top: 30px;
    }

    .similar-jobs-item .job-list .job-list-details {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .job-list.job-grid .job-list-details {
        border-bottom: 0;
    }

    .job-list .job-list-details .job-list-title {
        margin-bottom: 10px;
    }

    .job-list .job-list-favourite-time {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .job-list .job-list-favourite-time span {
            display: inline-block;
            margin: 0;
            -ms-flex-item-align: center;
            align-self: center;
        }

        .job-list .job-list-favourite-time a {
            margin-bottom: 0;
            margin-left: auto;
        }

    .job-list.job-list-company .job-list-favourite-time a {
        margin: 0 auto;
    }


    
    /* dashboard */
    .dashboard-resume-title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: block !important;
    }

    #slider .slider-content a.btn-link {
        display: none;
    }

    .candidates-skills {
        display: inline-block;
    }

    .slider-category {
        margin-top: 30px;
    }
    /* 404 */
    .notfound-404 {
        height: 130px;
    }

        .notfound-404 h1 {
            font-size: 90px;
        }
}

@media (max-width: 479px) {
    .slider-banner .carousel-item {
        height: 170px;
    }

        .slider-banner .carousel-item img {
            height: 100%;
        }
}

@media (max-width: 370px) {
    .bootstrap-datetimepicker-widget {
        width: 250px !important;
    }
}

@media (min-width: 1200px) {
    .border-xl-top-0 {
        border-top: 0 !important;
    }

    .border-xl-right-0 {
        border-right: 0 !important;
    }

    .border-xl-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-xl-left-0 {
        border-left: 0 !important;
    }

    .border-xl-top {
        border-top: 1px solid #eeeeee !important;
    }

    .border-xl-right {
        border-right: 1px solid #eeeeee !important;
    }

    .border-xl-bottom {
        border-bottom: 1px solid #eeeeee !important;
    }

    .border-xl-left {
        border-left: 1px solid #eeeeee !important;
    }
}

@media (min-width: 992px) {
    .border-lg-top-0 {
        border-top: 0 !important;
    }

    .border-lg-right-0 {
        border-right: 0 !important;
    }

    .border-lg-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-lg-left-0 {
        border-left: 0 !important;
    }

    .border-lg-top {
        border-top: 1px solid #eeeeee !important;
    }

    .border-lg-right {
        border-right: 1px solid #eeeeee !important;
    }

    .border-lg-bottom {
        border-bottom: 1px solid #eeeeee !important;
    }

    .border-lg-left {
        border-left: 1px solid #eeeeee !important;
    }
}

@media (min-width: 768px) {
    .border-md-top-0 {
        border-top: 0 !important;
    }

    .border-md-right-0 {
        border-right: 0 !important;
    }

    .border-md-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-md-left-0 {
        border-left: 0 !important;
    }

    .border-md-top {
        border-top: 1px solid #eeeeee !important;
    }

    .border-md-right {
        border-right: 1px solid #eeeeee !important;
    }

    .border-md-bottom {
        border-bottom: 1px solid #eeeeee !important;
    }

    .border-md-left {
        border-left: 1px solid #eeeeee !important;
    }
    /* pricing */
    .pricing-plan {
        display: block;
        max-width: 100%;
    }
}

@media (min-width: 576px) {
    .border-sm-top-0 {
        border-top: 0 !important;
    }

    .border-sm-right-0 {
        border-right: 0 !important;
    }

    .border-sm-bottom-0 {
        border-bottom: 0 !important;
    }

    .border-sm-left-0 {
        border-left: 0 !important;
    }

    .border-sm-top {
        border-top: 1px solid #eeeeee !important;
    }

    .border-sm-right {
        border-right: 1px solid #eeeeee !important;
    }

    .border-sm-bottom {
        border-bottom: 1px solid #eeeeee !important;
    }

    .border-sm-left {
        border-left: 1px solid #eeeeee !important;
    }
}
.privacy-policy p {
    line-height: 1rem;
    font-size: 12px;
}

.privacy-policy ol, .privacy-policy ul {
    padding-left: 1rem;
}

    .privacy-policy ol li, .privacy-policy ul li {
        line-height: 1rem;
        font-size: 12px;
    }

/*##################### Responsive #################*/


