*{
    margin:0px;
    padding:0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}
.clear { clear:both;}
.main {
    width:100%;
}
.ui-autocomplete-input {
    background-image: url('/images/down-arrow.png');
    background-size: 12px;
    background-position: 97% center;
    background-repeat: no-repeat;
}
/* navigation */

.nav {
    width:100%;
    background-color:#565656;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    position: fixed;
    top:0;
    z-index: 100;
}
.inner_nav {
    width:95%;
    margin:0px auto;
}
.nav_left {
    float:left;
    padding-bottom: 6px;
}
.logo {
    margin: 10px 15px;
    cursor: pointer;
    /*font-weight: bold;*/
    font-size: 30px;
    color:#FFF;
    float:left;
    width: 170px;
}
.logo img {vertical-align: middle; width: 100%; object-fit: cover; height: 53px;}
.logo.sub {
    font-size: 18px;
}
.logo span { color:#0098ff;font-weight: 500;}
.nav_left ul {
    list-style:none;
    margin:0px !important;
}
.nav_left ul li {
    float:left;
}
.nav_left ul li a {
    text-decoration:none;
    color:#FFF;
    display:block;
    margin: 25px 15px 10px;
    font-size: 15px;
}
.nav_left ul li a:hover {
    color:#0098ff;
}
.nav_right {
    float:right;
        /*padding-bottom: 6px;*/
}
.nav_right ul {
    list-style:none;
    margin:0px !important;
}
.nav_right ul li {
    float:left;
    padding-bottom: 6px;
}
.nav_right ul li a {
    text-decoration:none;
    color:#FFF;
    display:block;
    margin: 25px 15px 10px;
    font-size: 15px;
}
.nav_right ul li a i {
    margin-right: 5px;
}
.nav_right ul li a:hover {
    color:#0098ff;
}

/* banner */

.banner {
    width:100%;
}
.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}
.carousel {
    position: relative;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 400px;
}
.carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition:      -o-transform .6s ease-in-out;
        transition:         transform .6s ease-in-out;

        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    .carousel-inner > .item.next.left,
    .carousel-inner > .item.prev.right,
    .carousel-inner > .item.active {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}
.carousel-inner > .active {
    left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}
.carousel-inner > .next {
    left: 100%;
}
.carousel-inner > .prev {
    left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}
.carousel-inner > .active.left {
    left: -100%;
}
.carousel-inner > .active.right {
    left: 100%;
}
.carousel-control {
    position: absolute;
    top: 14em;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: .5;
}
.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
}
.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
    color: #fff;
    text-decoration: none;
    filter: alpha(opacity=90);
    outline: 0;
    opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1;
}
.carousel-control .icon-prev:before {
    content: '\2039';
}
.carousel-control .icon-next:before {
    content: '\203a';
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px;
}
.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
    text-shadow: none;
}
img {
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}
@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px;
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px;
    }
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px;
    }
    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
}

/* search bar */
.posted_date {color: #0a5c94; font-weight: bold;}
.s_bar {
    width:100%;
    background-color:#565656 !important;
}
.inner_sbar {
    width:1170px;
    margin:0px auto;
    padding:5px 0px;
}
.form-group {
    width:23%;
    float:left;
    margin:10px !important;
}
.fullscreen-parallax .form-hero-multi .form-control, .fullscreen-parallax .form-hero-multi select {
    border: 0px;
    padding-left: 15px;
    height: 40px;
}
.form-control {
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
}
.search_button_style {
    background-color: #0098ff;
    padding: 10px;
    color: white;
    font-weight: bold;
}

/* categories */

.categories {
    width:100%;
}
.inner_cat {
    width:1170px;
    margin:0px auto;
    padding: 15px 0px;
}
.site-heading {
    text-align: center;
    width: 60%;
    margin: 0 auto 20px;
}
.site-heading h2 {
    color: #3e3e3e;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    font-size:30px;
}
.site-heading p {
    color: #777;
    font-size: 15px;
}.categories_box {
    width:950px;
    margin:0px auto;
    display: block;
}
.categories_box ul {
    list-style:none;
}
.categories_box ul li {
    float: left;
    width: 300px;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: .5px .87px 10px 0 rgba(0,0,0,.07);
    background: #fff;
}
.categories_box ul li a { display:block;}
.categories_box ul li a:hover {
    text-decoration:none;
}
.app_box {
    position: absolute;
    top: 300px;
    width: 175px;
    right: 0;
    margin-right: 25px;
}
.app_box img {width: 100%;}
.app_box h3{
    margin: 70px 10px 20px;
}
.nav.app {
    background-color: white;
    padding: 10px;
    display: none;
}
.nav.app span {float: left; margin: 5px 0px;}
.nav.app input{ width: 100px !important; float: right;}
.close.app_icon_close {float: left;margin-right: 10px; background-image: url('/images/close-pop.png'); background-repeat: no-repeat; background-size: 8px;
                       width: 18px;
                       height: 18px;
                       margin-top: 5px;
                       background-color: #0098ff;
                       border-radius: 25px;
                       background-position: center;}
.top-ind-icon {
    width: 40px;
    float: left;
    margin-right: 15px;
}
.top-ind-icon img { width:100%;}
.tab-sub-text{
    display: block;
    color: #f52f2f;
}
.single-category-holder {
    padding: 60px 20px;
    text-align: center;
    background: #f7f7f7 none repeat scroll 0 0;
    display: block;
    margin-top: 14px;
    border-radius: 5px;
    min-height: 200px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    text-align: center;
}
a, a:hover, a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}
.category-holder-icon {
    margin-bottom: 10px;
}
.single-category-holder {
    text-align: center;
}
.category-holder-icon i {
    font-size: 30px;
    color: #0098ff;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.fa-briefcase::before {
    content: "\f0b1";
}
.category-holder-text h3 {
    font-size: 17px;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 30px;
    color: #111;
}
.single-category-holder > img {
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.single-category-holder::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65) none repeat scroll 0 0;
    z-index: -1;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 5px;
}
.single-category-holder:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.58);
}
a, a:hover, a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}
.single-category-holder:hover .category-holder-icon i, .single-category-holder:hover .category-holder-text h3 {
    color: white;
}
.single-category-holder:hover img {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.single-category-holder:hover::after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
div.form-control {
    border: none;
    box-shadow: none;
    -webkit-transition: none; -o-transition: none; transition: none;
}
.profile h2 {
    padding: 10px 0px;
}
textarea.form-control {
    height: 150px;
}
.form-control.edit-profile.short {
    width: 232px;margin-right: 10px;
    display: inline-block;
}
.form-control.edit-profile1 {
    width: 70%;
    display: inline-block;
}
.form-control.edit-profile1.multirow {
    height: 100px;
}
.form-control.edit-profile1.multirow option {
    padding: 5px 0px 5px 5px;
}
.form-control.edit-profile2 {
    width: 60%;
    display: inline-block;
}
.form-control.select {
    background-image: url('/jqueryplugin/css/images/combo_arrow.png');
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 12px;
}
.form-control.datebox {
    background-image: url('/jqueryplugin/css/images/datebox_arrow.png');
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 12px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btn.short {min-width: 100px; margin-right: 10px;}

/*joinus banner*/

.joinus_banner {
    padding-top: 3% !important;
    padding-bottom: 4% !important;
    background-image: url(../images/banner.png) !important;
}
.inner_join {
    width:1170px;
    margin:0px auto;
}
.inner_join h1 {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
}
.inner_join p {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
}
.join_btn {
    width:200px;
    margin:30px auto 0px auto;
}
.Join_search{
    background-color: #0098ff;
    padding: 10px !important;
    color: white !important;
    font-weight: bold !important;
}
.Join_search:hover {
    color:#000 !important;
}

/*clients*/

.clients {
    width:100%;
    background-color:#f6f6f6;
}
.inner_clients {
    width:1170px;
    margin:0px auto;
    padding: 35px 0px;
}
.client-heading h2 {
    color: #3e3e3e;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    margin:0px !important;
    font-size: 30px;
    text-align:center;
    padding-bottom: 20px;
}
.inner_clients ul {
    list-style:none;
    margin:0px !important;
}
.inner_clients ul li {
    float:left;
    width:16.56%;
    border: 1px solid;
    background-color: white;
    height: 80px;
}
.inner_clients ul li img {
    width: 80%;
    transition: 0.4s ease-in-out;
    padding: 5px;
    margin: 0px auto;
    display: block;
    max-height: 100%;
}
/*footer*/

.footer {
    background-color:#1a2032;
}
.inner_foot {
    width:95%;
    margin:0px auto;
    padding:20px 0px;
}
.foot_one {
    width:33%;
    float:left;
}
.foot_one h3 {
    margin: 0;
    margin-bottom: 0px;
    font: normal 32px 'Maven Pro', sans-serif;
    margin-bottom: 20px;
    color: #fff;
}
.foot_one h3 a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}
.foot_one h3 span {
    color: #0098ff;
}
.foot_one p {
    text-align: left;
    /*font: bold 16px sans-serif;*/
    color: #fff;
}
.foot_one p.links a {
    color: #fff;
    text-decoration: none;
}
.foot_one p.company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin-top: 20px;
}
.foot_two {
    width:33%;
    float:left;
}
.foot_two ul {
    list-style:none;
}
.foot_two ul li {}
.foot_two ul li span {}
.foot_two ul li p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    text-align: left;
    /*font: bold 16px sans-serif;*/
    width:70%;
}
.foot_two ul li p span {
    display: block;
    font-weight: normal;
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}
.foot_two ul li p a {
    color: #fff;
    text-decoration: none;
}
.fa.footer-contacts-icon {
    background-color: #252a3c;
    color: #fff;
    font-size: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin: 10px 15px 10px 0;
}
.fa-map-marker::before {
    content: "\f041";
}
.fa-phone::before {
    content: "\f095";
}
.fa-envelope::before {
    content: "\f0e0";
}
.foot_three {
    width:33%;
    float:left;
}
.foot_three h4 {
    display: block;
    color: #fff;
    font-size: 21px;
    font-weight: normal;
    margin-bottom: 20px;
}
.foot_three p {
    line-height: 20px;
    color: #92999f;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    text-align: justify;
}
div.social-links {
    margin-top: 20px;
    color: #fff;
}
.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #252a3c;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.fa-facebook, .fa-twitter, .fa-google-plus, .fa-instagram {
    margin:8px 0px !important;
}


.carousel-control.left {
    right: 46px;
}
.carousel-control.left, .carousel-control.right {
    background-image: none !important;
}
.carousel-control.right {
    right: 10px;
}
.carousel-control.left, .carousel-control.right {
    background-image: none !important;
}

/* Login popup */
.auth-step {
}
.auth-step, .overflow-container {
    overflow: hidden;
}
.auth-heading {
    font-size: 18px;
    line-height: 28px;
    margin-bottom:10px;
    font-weight: 600;
    color: #454545;
}
.auth-substep {
    position: relative;
    overflow: auto;
}
.auth-subheading, .auth-text {
    font-size: 13px;
    line-height: 24px;
    color:#666;
    font-weight: 400;
}
.auth-form {
    margin-bottom: 12px;
    position: relative;
}
.auth-form-input {
    /*height: 40px;*/
    font-size: 14px;
}
.auth-form-input.error {
    border-color: red;
}
.error.left {
    text-align: left !important;
}
.forgot-password-text {
    margin-bottom: 12px;
    font-size: 12px;
}
.highlight-clickable-text {
    cursor: pointer;
    color: #528FF0;
}
.form-control {
    font-size: 12px;
}
input[type=checkbox].form-control, input[type=radio].form-control {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0px 5px;
    height: auto;
}
.form-label.access {
    font-weight: normal;
    margin-bottom: 10px;
    font-size: 12px;
}
#access {display: none;}
.edit-profile3 {
    width: 240px;
}
.form-label.edit-profile-label {
    width: 25%;
    display: inline-block;
}
.btn-primary {
    color: #fff !important;
    background-color: #0098ff;
    border-color: #0098ff;
}
.btn-primary:focus, .btn-primary:disabled{
    background-color: #0098ff !important;
    border-color: #0098ff !important;
    opacity: 1 !important;
}
.auth-main-container.right-align {
    left: 480px;
}
.auth-main-container {
    position: absolute;
}
.auth-main-container.normal {
    position: relative;
    margin: 40px auto;
    top: 0px;
    z-index: 0;
    display: block !important;
}
.auth-main-container.normal.loginbox {
    margin-top: 100px;
}
.auth-main-container.normal.normal1 {
    margin: 0px auto;
}
.auth-main-container.normal.register {
    width: 700px !important;
    margin-top: 100px;
}
.auth-main-container.normal.register {
    margin-top: 100px;
}
.auth-main-container.normal.register,.auth-main-container.signin.admin {
    width: 700px !important;
}
.auth-main-container .left {
    float: left;
    width: 45%;
}
.auth-main-container.signin.admin .left {
    width: 50%;
    padding-right: 40px;
    border-right: 1px solid #d0cece;
}
.auth-main-container .right {
    float: right;
    width: 45%;
}
.auth-main-container .right.middle {
    position: relative;
    top: 200px;
}
.auth-main-container.normal .btn-register {
    width: 250px;
    margin: 0px auto;
    width: 280px;
}

.auth-main-container {
    width: 322px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 4px 4px 8px 0 rgba(23,31,37,0.06);
    border: 1px solid rgba(0,0,0,0.08);
    -webkit-box-shadow: 4px 4px 8px 0 rgba(23,31,37,0.06);
    top: 50px;
    left: 0px;
    right:0px;
    margin:0px auto;
    padding: 32px 40px;
    -webkit-transition: left .8s cubic-bezier(.175,.885,.26,1.055);
    transition: left .8s cubic-bezier(.175,.885,.26,1.055);
    z-index:20100;
}
.auth-main-container .controls.hide {
    display: none;
}
.hidden{
    display: none;
}
.auth-main-container.admin {
    width: 500px;
}
.adminTestQue {
    display: inline-block; width: 48%; min-height: 100px; float: right;
}
.adminTestQue2 {
    float: left;
}
.testNoQue {padding-top: 21px;}
.adminTestQue2 select {width: 100px;}
.auth-main-container.admin.long-form {
    width: 800px;
}
.auth-subtext {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
    text-align:center;
}
.auth-subtext a.highlight {
    color: #528FF0;
}

.sidebar__navigation {
    position:absolute;
    top:10px;
    right:5px;
}
.sidebar__navigation-item {
    background: #f6f9fc;
    line-height: 40px;
    cursor: pointer;
    padding: 5px;
    text-align: center;
    display: inline-block;
}
.sidebar__navigation-item img {
    width:50%;
}
.auth-main-container {
    display:none;
}

.mask, .menu_mask {
    position:fixed; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.5); 
    top:0; 
    left:0; 
    z-index:20000;
    -webkit-opacity:0; 
    -moz-opacity:0; 
    transition:0.2s; 
    -webkit-transition:0.2s; 
    -moz-transition:0.2s; 
    display: none;
    opacity:0.5; 
    -webkit-opacity:1; 
    -moz-opacity:1; 
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 16px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
    display:none;
}
.navbar-toggle .icon-bar {
    background-color: #fff !important;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 6px;
}


/*   Responsive Menu   */

.res_menu {
    position:fixed; width:250px; height:100%; background-color:#FFF; top:0; right:-420px; z-index:1100; box-shadow:0px 0px 10px rgba(0,0,0,0.5);
    transition:0.2s; -webkit-transition:0.2s; -moz-transition:0.2s
}
.res_menu.res_menu_a {
    right:0px;
}       
.res_menu_head a {
    display:inline-block; padding:6px 15px; background-color:#fe4743; margin:0px 4px; border-radius:2px; color:#FFF; font-size:15px; font-weight:600;
}
.menu_close {
    position:absolute; width:20px; height:20px; background:url(/images/close-pop.png) no-repeat center; background-size:100%;
    top:8px; right:20px; cursor:pointer;
}
.res_menu_inn {
    height:60%; overflow-y:auto; margin-top:40px;
}   
.res_menu_menu {
    background-color:#000;
}
.res_menu_menu ul {
    margin:0px 0px; padding:5px 0px;
}
.res_menu_menu ul li {
    list-style-type:none; font-size:16px; font-weight:400; border-top:1px dotted #dedede;
}       
.res_menu_menu ul li a {
    padding:11px 0px 11px 20px; display:block; color:#FFF; text-decoration:none;
}
.res_menu_menu ul li a:hover {
    background-color:#FFF;
    color:#000;
}
.res_menu_menu ul li:hover.nn {
    background-color:#FFF;
}   

label {

    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;

}
button, input, optgroup, select, textarea {
    margin: 0;
    margin-bottom: 0px;
    font: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    color: inherit;

}
/*   Responsive Menu   */


/*   Jobs start   */
.main > .content {
    background-color: #f4f4f4;
    margin-top:60px;
}
.inner_cont {
    width:1170px;
    margin:0px auto;
    font-size: 9px;
    font-family: Arial, Helvetica, sans-serif;
}
.s_bar.fixed {
    position: fixed;
    top: 70px;
    z-index: 99;
}
.refine.fixed {
    position: fixed;
    top: 140px;
    z-index: 99;
}
.cluster {
    overflow: hidden;
    width: 22%;
}
.fl {
    float: left;
}
.cluster .refine {
    background: #fff;
    border: 1px solid #d0cece;
}
.cluster h2, .cluster h3 {
    font-size: 14px;
    font-weight: 400;
}
.cluster #clstrFrm {
    display: inline;
}
.acord {
    display: none;
    *zoom: 1;
    border-bottom: 1px solid #d0cece;
}
.acord .acord_head {
    cursor: pointer;
    padding: 0px 25px 10px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #747474;
    position: relative;
    float:left;
}
.acord .acordDown span {
    background-position: 0 -62px !important;
}
.acord .acordUp span {
    background-position: 0 -72px !important;
}
.acord .acordDown span, .acord .acordUp span {
    width: 9px;
    height: 9px;
    top: 3px;
    left: 4px;
    position: absolute;
}
input.price2 {
    float: left;
    width: 100px;
}
input.price2 {
    float: right;
    text-align: right;
    width: 100px;
}
.acord_cont a b.chkd {
    background-position: -10px -77px !important;
}
.acord .acord_cont {
    padding: 0 8px 5px 15px;
    border-top: 0;
    overflow: auto;
    color:#666;
    max-height: 150px;
    overflow-y: auto;
    font-size: 12px;
}
.acord_cont a {
    display: block;
    color: #666;
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
    *overflow: hidden;
    *zoom: 1;
}
.acord_cont input[type='radio'] {
    color: #666;
    margin-right: 6px;
    margin-bottom: 10px;
}
.acord_cont a, .clstr, .clstr .ltGlobalHd {
    background-color: #fff;
    /* font-family: arial; */
}
.acord_cont a b {
    width: 15px;
    height: 15px;
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1;
    *float: left;
    vertical-align: middle;
    margin: 0 8px 0 -25px;
    background-position: -10px -62px !important;
    *background-position: -10px -61px;
}
.acord_cont a b {
    background: url(/images/comIconSprite_v1.png) no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
}
.acord_cont span {
    padding: 6px 0 0 25px;
    cursor: pointer;
    color: #004276;
    display: inline-block;
}

.main .container {
    width: 78%;
    float:left;
    margin: 0px;
}
.container > .srp_container {
    position: relative;
    width:100%;
    background-color: white;
}
.jobType.prefjob em {
    background-position: 0 -64px !important;
}
.container .srp_fixed, .container .srp_head {
    width: 100%;
    z-index: 9;
    /*background-color: lightgray;*/; border: 1px solid #d0cece;
}
.srp_container .row {
    clear: both;
    position: relative;
    width: 100%;
    z-index: 0;
    /*background-color: lightgray !important;*/
}
.divider {height: 5px;
          background-color: #ededed;}
.notop {margin:0px auto;}
.srp_count {
    font-size: 14px;
    color: #333;
}
.srp_count {
    padding: 0 25px;
    cursor:auto;
}
.srp_count .count {
    line-height: 61px;
}
.srp_count .small_title {
    width: 100%;
}
.srp_count .small_title span {
    vertical-align: middle;
}
.srp_count .cnt, .srp_count .frst, .srp_count .scnd {
    /*max-width: 100px;*/
    vertical-align: middle;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}
.srp_count .count h1 {
    font-size: 14px;
    font-weight: 300;
}
.multiColumn a, .pagination .grayBtn, .srp_count .count, .srp_count .count h1, .srp_count .dropText, .srp_count .large, .srp_count .short, .srp_count .sortBy, .srp_count .sortby, .srp_count .tools, .srp_fixed .details {
    display: inline-block;
}
.srp_count .small_title span {
    vertical-align: middle;
}
.srp_count .scnd {
    /*max-width: 95px;*/
}
.srp_count .tools {
    font-size: 11px;
    color: #999;
}
.srp_count .tools {
    position: relative;
    font-weight: 300;
    float: right;
    top: 25px;
}
.srp_count .sortBy {
    height: 14px;
    cursor: pointer;
    position: relative;
}
.srp_count .dropText {
    text-overflow: clip;
    max-width: 70px;
    text-align: left;
}
.srp_count .downArrow {
    background-position: 1px -197px;
    vertical-align: 1px;
    margin-left: 5px;
}
.srp_count .downArrow, .srp_count .tip {
    width: 14px;
    height: 10px;
}
.details_job em {
    width: 14px;
    height: 15px;
    vertical-align: bottom;
    margin-right: 7px;
    display: inline-block;
}
.details_job em {
    background: url(/images/srpSprites_v4.png) no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
}
.srp_count .drop {
    z-index: 5;
    position: absolute;
    top: 17px;
    width: 75px;
    right: 6px;
}
.srp_count .tip {
    background-position: 0 -187px;
    vertical-align: bottom;
}
.srp_count .list {
    box-shadow: 1px 1px 3px #888;
    border: 1px solid #e4e4e4\9;
}
.srp_count .item {
    display: block;
    padding: 6px 0 5px 3px;
    text-align: left;
    background: #FFF;
    color: #666;
}
.srp_count .item.sel {
    display: none;
}
.srp_count .item {
    display: block;
    padding: 6px 0 5px 3px;
    text-align: left;
    background: #FFF;
    color: #666;
    font-size: 12px;
}
li.item:hover {
    background-color: #b1aeae;
    color: white;
}
.row .content {
    display: block;
    padding: 15px 25px 15px;
    background-color: #FFF !important;
}
.row .content, .row .savejob {
    position: relative;
}
.row .banner {
    float: right;
    max-width: 120px;
}
.row .banner img {width: 100%;}
button, fieldset, img, input[type="button"], input[type="submit"] {
    border: 0;
}
.maindiv {border: 1px solid #d0cece;}
.row .desig {
    display: block;
    font-size: 14px;
}
.row .orgRating {
    display: block;
    padding-right: 15px;
    font-weight: 300;
    overflow: hidden;
}
.row .orgRating .org {
    max-width: 205px;
    float: left;
    padding-right: 10px;
}
.row .org {
    display: block;
    font-weight: 500;
    padding: 10px 0px;
}
.row .exp {
    width: 15%;
    font-weight: 300;
}
.row .exp, .row .label {
    padding-right: 10px;
    float: left;
}
.row .exp em {
    background-position: 0 0;
    margin-top: 1px;
}
.applied em {
    background-position: 0 -207px !important;
    margin-top: 1px;
    vertical-align: middle;
}
.jobType.hotjob em {
    background-position: 0 -64px !important;
}

.row .loc, .row .exp, .row .key, .row .date, .row .desc{
    float: left;
    width: 100%;
    font-weight: 300;
    font-size: 12px;
    padding: 5px 0px;
    vertical-align: top;
}
.row .exp {
    max-width: 208px;
}
.row .loc span:first-child, row .exp span:first-child, .row .key span:first-child, .row .date span:first-child, .maindiv.row.details_job .desc span:first-child {
    width: 24%;
    display: inline-block;
    vertical-align: top;
}
.row .loc span:last-child, .row .exp span:last-child, .row .key span:last-child, .row .date span:last-child, .maindiv.row.details_job .desc span:last-child {
    width: 75%;
    word-wrap: break-word;display: inline-block;
}
.row .desc span p {
    display: inline-block;
    width: 65%;
    max-height: 100%;
    overflow-y: hidden;
}
.row .loc em {
    float: left;
    background-position: 0 -14px;
}
.row .more {
    overflow: hidden;
    clear: left;
}
.row .label {
    clear: left;
    width: 16%;
    line-height: 16px;
    font-weight: 300;
}
.headGNB .menu li:hover .subMenu.notification .row .noti_Description, .headGNB .menu li:hover .subMenu.notification .row .status, .row .desc, .row .headGNB .menu li:hover .subMenu.notification .noti_Description, .row .headGNB .menu li:hover .subMenu.notification .status {
    float: left;
    width: 71%;
    font-size: 13px;
    /* color: #444; */
    line-height: 16px;
    font-weight: 300;
    text-align: justify;
}
.srp_container .row .jdMedia, .srp_container .row .jobType, .srp_container .row .menu {
    position: absolute;
}
.row .jobType {
    top: 26px;
    left: 7px;
}
.row .action {
    cursor: pointer;
}
.row .other_details {
    background-color: #f9f9f9;
    overflow: hidden;
    clear: left;
    border-bottom: 2px solid #f9f9f9;
}
.row .rec_details, .row .salary, .row .savejob, .row .tabbing .tabs .active, .row .tabbing .tabs .disable, .row .tabbing .tabs .noBrd, .row .tabbing .tabs .tab, .row .tabbing .tabs li, .tabbing .tabs .row .active, .tabbing .tabs .row .disable, .tabbing .tabs .row .noBrd, .tabbing .tabs .row .tab, .tabbing .tabs .row li {
    border-right: 1px solid #f4f4f4;
    padding: 0px 20px;
    float: left;
    height: 30px;
    line-height: 30px;
    min-width: 25px;
    font-weight: 300;
}
#advanceSearchLayer .notif, .row .label, .row .rec_details, .row .salary {
    font-size: 11px;
    /*color: #999;*/
}
.headGNB .menu li:hover .subMenu.notification .row .noti_Description, .headGNB .menu li:hover .subMenu.notification .row .status, .row .desc, .row .exp, .row .headGNB .menu li:hover .subMenu.notification .noti_Description, .row .headGNB .menu li:hover .subMenu.notification .status, .row .loc, .row .org {
    font-size: 12px;
    /*color: #666;*/
}
.ellipsis, .row .rec_name, .row .salary, .suggest .Sbtn {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.row .savejob em {
    height: 16px;
    background-position: 0 -30px;
    position: absolute;
    top: 50%;
    right: 7px;
    margin-top: -8px;
}
.row .salary {
    max-width: 35%;
}
.row .salary em {
    background-position: 0 -49px;
    vertical-align: middle;
}
.row .rec_details {
    line-height: 25px;
    margin: 0 10px;
    padding: 5px 0;
    float: right;
    text-align: right;
    max-width: 225px;
    width: auto;
    border-right: none;
}
.applied.rec_details { border-right: 1px solid #f4f4f4; border-left: 1px solid #f4f4f4; padding: 5px 20px;}
.job_cont .applied.rec_details {border: 0px;}
.row .rec_name {
    max-width: 48%;
    vertical-align: top;
    *vertical-align: middle;
    /*color: #999;*/
    font-weight: 400;
    cursor: default;
}
.details_cont ul, .details_cont ol {
    margin: 10px;
    padding: 0px 10px;
}
.res_filter {
    display:none;
}
.filiters {
    display: none;
}
.job_cont { padding:15px 25px; background-color: white; font-size: 14px;}
.job_cont span { display:inline-block; padding:5px 5px 5px 0px;}
.job_cont.right {float:right;}
.job_cont h3 { font-size: 16px; 
               color: #454545;
               font-weight: 600; margin-bottom: 15px;}
.job_cont p { font-size:14px; color:#666; padding:0px 0px 15px 0px; line-height: 22px;}

.job_cont a {
    font-size:15px; font-weight:600; color:#0b82cf; margin:0px 0px 10px 0px; display:inline-block;
}
.job_cont ul {
    padding:0px 0px; margin:0px 15px 15px;
}
.job_cont ul li {
    list-style-type:circle; padding:4px 6px 4px 6px; font-size:14px; font-weight:400; color:#666;
    line-height:20px;
}
.srp_count .hone h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-top: 20px;
}
.row .details_job {
    padding: 10px 25px 5px;
}
.details_cont {
    padding-bottom:30px;
}

/*** profile ***/

.profile_cont {padding: 25px;}
.profile {}
.profile h1 {
    font-size: 30px;
    font-weight: 500;
}
.profile label.radio {
    font-size: 12px;width: 130px;
    font-weight: normal;margin: 0px 15px 0px 5px;
}
.profile label.radio input[type=radio], .profile label.radio input[type=checkbox] {
    margin-right: 10px;
}
.profile_left {
    width:50%;
    float:left;
    position:relative;
}
.pro_img {
    width: 150px;
    border: 2px solid #222;
    margin: 15px 0px;
    height: 150px;
}
.profile.admin .pro_img {
    width: 150px;
    height: 150px;
    position: relative;
}
.profile.admin .pro_img img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.profile.admin #upload {
    width: 150px !important;
}
.inform { margin: 10px 0px;}
.name_f {
    float: left;
    width: 200px;
    font-size: 16px;
    margin-right: 30px;
}
.information {
    font-size: 14px;
    float: left;
}
.information a {
    color: blue;
    text-decoration: underline;
}
a#opt {
    color: #049590;
    text-decoration: underline;
}
.pro_img img { width:100%;}
.profile_btn{ margin: 25px 0px 0px;}
.profile_btn1{ margin: 0px; text-align: center;}
.profile_btn.update {display: block !important;}
.profile_btn a {
    background-color: #337ab7;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 8px 5px 0px;
    display: inline-block;
    font-size:15px;
}
.btn_top {
    display: inline-block;
    margin: -38px 40px 0px 0px;
    float: right;
}
.btn_inline {
    position: relative;
    top: -50px;
    left: 175px;
    margin: 0px;
}
.profile_btn a:hover {
    color: #fff;
    background-color: #286090;
}

.profile_right {
    float:left;
    width:50%;
}
.profile_right h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0px 10px 0px;
    text-transform:uppercase;
}

/*** edit profile ***/

.edit-profile {
    width: 55%;
}
.edit_pro {
    display: block;
    width: 55%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.res_probtn {
    position: absolute;
    top: 0px;
    right: 0px;
    display:none;
}
.res_probtn a {
    background-color: #337ab7;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 8px 5px 0px;
    display:block;
    font-size:15px;
}
.res_probtn a:hover {
    color: #fff;
    background-color: #286090;
}


.button_e{ margin: 25px 0px;}
.button_e a {
    background-color: #337ab7;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 8px 5px 0px;
    display: inline-block;
    font-size:15px;
}
.button_e a:hover {
    color: #fff;
    background-color: #286090;
}

.gender_s {
    
}

.contact {}
.contact h1 {
    text-align:center;
    font-size: 36px;
    font-weight:500;
    margin:15px 0px;
}
.map { width:96%; margin:20px auto;}
.inner_contact {
    width:1100px;
    margin: 0px auto 30px auto;
}
.inner_contact p {
    text-align: justify;
    margin: 20px 0px;
}
.inner_contact h2 {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px dotted #0098ff;
}
.inner_contact ul li {
    margin-left: 40px;
    padding: 10px;
    list-style: square;
}
.inner_contact ol li {
    margin-left: 40px;
    padding: 10px;
}
.cont_left {
    float:right;
    width:300px;
}
.cont_left h3, .cont_right h3 {
    font-size: 26px;
    font-weight: 500;
    border-bottom: 1px solid #cecece;
    margin: 0px 0px 10px 0px;
    padding-bottom: 5px;
}
.cont_left p {
    margin-bottom: 5px;
    font-size: 15px;
}
.cont_right {
    float: left;
    /*padding: 15px 28px;*/
}
span.error {
    display: block;
    font-size: 10px;
    color: red;
    text-align: left;
    visibility: hidden;
    width: 100% !important;
    float: none !important;
}
span.error.visible {
    visibility: visible;
}
.profile_left span.error, .profile_right span.error {
    width: 55%;
}

div.other {
    display:none;
}
.auth-subheading span {color: red;}
.profile_btn .btn {
    min-width: 130px;
    margin-bottom:15px;
}
.res_probtn .btn {
    display: block;
    min-width: 150px;
    margin: 10px;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d;
}
.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19;
}
.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger .badge {
    color: #d9534f;
    background-color: #fff;
}
.resume_name, .resume_name:hover, .resume_name:visited {
    color: #0098ff;
    text-decoration: underline;
}
textarea {
    resize: none;
}
.mce-tinymce.mce-container.mce-panel {
    display: inline-block !important;
}
.profile.job span.error {
    text-align: left;
    margin-left: 285px;
    padding-bottom: 10px;
}
.app_logo img {
    width: 120px;
    margin: 20px 0px;
}
.form-group.form-group-input {
    width: 35.8%;
}
.form-group input, .form-group button {
    height: 40px;
    padding-left: 30px;
}
.input-icon{
    color: gray;
    position: relative;
    left: 10px;
    top: -27px;
    margin-bottom: -15px;
}
.ui-autocomplete-category {
    font-weight: 400;
    padding: 8px 15px 6px;
    margin: 0px 0px 5px;
    line-height: normal;
    font-size: 14px;
    color: #0b82cf;
    border-bottom: 1px dotted #ededed;
}
ul.ui-menu.ui-widget.ui-widget-content {max-height: 200px; overflow-y:auto;overflow-x: hidden;z-index: 100000;}
.pagination{display:inline-block;padding-left:0;margin:20px 0px 80px;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}
.job-list-menu {
    height: auto;
    line-height: normal;
    font-weight: 400;
    font-size: 13px;
    padding: 3px 15px !important;
    color: #666;
}
.job-list-menu:hover {font-weight: normal !important; color: #0b82cf !important; padding: 3px 15px !important;
    height: auto !important;
    line-height: normal;
}


.ref_main { padding:10px;}
.re_sults {float: left; font-weight: 700 !important;font-size: 14px}
.clear_all {
    float: right;
    cursor: pointer;
    margin: 1px 5px;
    font-weight: 600;
    font-size: 12px;
}
.filit_items {
    border-top: 1px solid #d0cece;
    padding: 10px 10px 0px 0px;
}

.brand-search-container {
    width:225px;
    margin: 0px 15px 10px 15px;
}
.brand-search-container > span {
    position: absolute;
    width: 16px;
    height: 16px;
    background-position: -10px -62px;
    display: inline-block;
    top: 10px;
    left: 8px;
}
.brand-search-containe > input {
    margin-bottom: 11px;
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -o-user-select: initial;
    background-color: #fff;
    user-select: initial;
    font-size: 13px !important;
    height: 36px;
}

.slaray_slide {
    width:250px;
    margin-left:16px;
}
.slaray_slide label {
    padding: 0px 8px 10px 0px;
    font-size: 14px;
    font-weight: 400;
    color: #747474;
    position: relative;
    float: left;
}
.keys {
    list-style: none;
    background-color: #fff;
}
.keys li {
    float: left;
    padding: 5px 15px;
    background-color: #fafafa;
    color: #666; margin-right: 8px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-size: 12px;
    border:1px solid #dedede;
}
.keys li i {
    padding-left: 5px;
    color: #999; background-color: #fafafa;
    cursor: pointer;
}
.keys li:hover i {
    color: #eb8a8a;
}
.breadcrumb1 {
    padding: 5px;
    border: 1px solid #d0cece;font-size: 12px;
}
.row .loc {
    width: 75%;
}
.desc, .key {
    width: 100% !important;
}

.content.details_job .loc, .content.details_job .exp {width: 250px !important;max-width: 250px !important;}
.content.details_job .date {width: 70%;}
.content.details_job .date span {width: 250px !important;}
.content.detail_job .date span:first-child {}
.content.details_job .desc {width: 74% !important;}
span.more.d-block.text-right {
    display: block;
    text-align: right;
    padding-right: 18px;
    padding-top: 10px;
}




.profile_left {
    float:left;
}
.profile_left h2, .profile_right h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0px 5px 0px;
    color: #07bedb;
}
.contact_info {
    background-color:#FFF;
    width: 500px;
    border-radius: 10px;
    border: 1px solid gray;
    padding: 20px;
    position:relative;
}
.profile_img {
    width: 100px;
    margin: 0px auto;
    padding-bottom: 15px;
    position:relative;
}
.profile_img img {
    width:100%;
    border-radius: 60px;
}
.contact_info ul {
    list-style:none;
}
.contact_info.registration span{
    font-size: 12px;
}
.contact_info ul li {
    float:left;
    width: 50%;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight:400;
}
.contact_info ul li:first-child {
    font-weight:600;
    width: 150px;
}
.registration p {
    font-size: 15px;
    font-weight:600;
    display: inline-block;
}
.reg_btn{
    float: right;
    font-size: 15px;
    font-weight: bold;
    background-color: #0098ff;
    padding: 5px 15px;
    color: white;
    border-radius: 5px;
}
.reg_btn:hover {
    color:white;
}
.resume p {
    font-size: 15px;
    font-weight:600;
}
.resume a {
    font-size: 14px;
    color: #0098ff;
    text-decoration: underline;
}
.upload_res { margin-top:10px;}
.upload_res input {
    border: 1px solid #ababab;
    width: 300px;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
}
.video_res {
    position:absolute;
    top: 10px;
    right: 10px;
}




.profile_right {}
.education {
    border-bottom: 1px solid black;
    padding-bottom: 15px;
}
.education img { cursor:pointer; float:left; width:11%;}
.education p { 
    float:left;
    font-size: 15px;
    font-weight: 600;
    color: #0098ff;
    padding: 14px 10px;
}
.edu_details {
    margin-top: 10px;
    float:left;
}
.edu_details1 {
    margin-top: 10px;
    font-size: 12px;
}
.edu_details p {
    ffont-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.edu_details span {
    font-size: 13px;
    color: #757575;
    font-weight: 600
}

.edit_code {
    margin-top: 10px;
    float:right;
    width: 100px;
}
.edit_code p {
    font-size: 16px;
    font-weight: 600;
    color: #0098ff;
    cursor:pointer;
    text-align:right;
    display: inline-block;
}
.edit_code span {
    font-size: 13px;
    color: #757575;
    font-weight: 600;
    display: block;
}

.edu_details ul { list-style:none; margin: 5px 0px;}
.edu_details ul li { float:left;width: 308px;}
.edu_details ul li span {
    background: #eee;
    padding: 5px 20px;
    border-radius: 4px;
    margin: 5px 5px 0 0;
    color: #666;
    display: inline-block;
}
.work_add { border-bottom:1px solid #999; padding-bottom: 10px;}
.edit_btn { position:absolute; top:15px; right:15px;}
.edit_btn p {
    font-size: 16px;
    font-weight: 600;
    color: #0098ff;
    cursor:pointer;
}


.edit_icon { position:absolute; width:25%; bottom:15px; right:0px;}
.edit_icon img { width:100%;}
.video_res img {
    width: 40px;
    margin: 10px;
}
.edit_code.pop_btn_custom[data-id=skill_info] {
    margin-top: -24px;
    width: auto;
}
.nav_right ul li li {
    width: 100%;
    float: none;
    padding: 10px 0px;
}
.nav_right ul li li a {
    margin: 0px 15px;
}
.nav_right ul ul {
    display: none; 
    position: fixed;
    width: 160px;
    background-color: #565656;
    top: 60px;
    right: 10px;
}
.nav_right ul ul:hover {
    display: block;
}
.profile_link:hover ul{
    display: block;
}
.nobg {
background-color: #f2f2f2;
}
.errorSpan {
    padding:10px 0px 15px 0px;
}
.errorSpan span {
    font-size: 14px; font-weight:400; color:#666; display:inline-block;
}
.errorSpan span:first-child + span {
    font-weight:600; color:#d77070; padding:0px 5px;
}
.errorDownloadBtn {
    text-align: left;
}
.errorDownloadBtn a {
    display:inline-block; width:auto;
}

/*Add Job*/
.appJobWrap {
    width: 80%;
    padding: 15px 5px;
}
.appJobWrap h2 {
    padding: 10px 20px;
    margin: 0px 0px;
    background-color: #627982;
    font-size: 18px;
    color: #fff;
    border-radius: 5px 5px 0px 0px;
}
.appJobInn {
    width: 80%;
    padding: 20px 10px;
}
.appJobWrap .div100,
.appJobWrap .div50 {
}
.appJobWrap .div50 {
}
.appJobWrap .div100 label,
.appJobWrap .div50 label, .companyLogoAdm label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin: 0px 0px;
    padding: 0px 0px 5px 0px;
}
.appJobWrap .div100 label span,
.appJobWrap .div50 label span,
.companyLogoAdm label span,
.checkout h3 span {
    color: #cf3838;
}
.appJobWrap .div100 input,
.appJobWrap .div50 input,
.appJobWrap .div100 textarea,
.appJobWrap .div50 select,
.appJobWrap .div100 select {
    width: 100% !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    height: 36px;
    padding: 0px 15px;
    border: 1px solid #ccc;
}
.appJobWrap .div100 textarea {
    padding: 10px 15px;
    height: 100px;
    resize: none;
}
#aboutProfile {
    height: 300px;
}
.appJobWrap .div100 input.calender,
.appJobWrap .div50 input.calender {
    background-image: url(../images/calender.svg);
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: 98% center;
}
.appJobWrap .div50 select,
.appJobWrap .div100 select,
.appJobWrap .selectCity {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/selectarr.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: 98% center;
}
.appJobWrap .div50 select option,
.appJobWrap .div100 select option,
.appJobWrap .selectCity option {
    padding: 5px;
}

.appJobWrap .div100 input:focus,
.appJobWrap .div50 input:focus,
.appJobWrap .div100 textarea:focus {
    border: 1px solid #0275bf;
}
.appJobWrap .mini input,
.appJobWrap .mini select {
    width: 48% !important;
}
.appJobWrap .mini input:last-child,
.appJobWrap .mini select:last-child {
    float: right;
}
.bgGrayJob {
    background-color: #f1f1f1;
    padding: 15px 0px 10px;
    border-radius: 5px;
    margin: 15px 2%;
}
.appJobWrap .locaWrap select {
    width: 31% !important;
    margin: 0px 3% 0px 0px;
}
.appJobWrap .locaWrap select.lastFeild{
    float: right;
    margin: 0px;
}
.checkout {
    padding: 0px 0px 0px;
    width: 96%;
    margin: 0px 2%;
    float: left;
}
.checkout h3,
.appJobWrap .div100 h3,
.appJobWrap .div50 h3 {
    padding: 15px 0px 15px;
    margin: 0px 0px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.checkout label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin: 0px 0px;
    padding: 0px 0px 5px 0px;
}
.checkout label span {
    color: #cf3838;
}
.appJobWrap .checkInn {
    float: left;
    width: 20%;
    margin: 0;
    padding: 5px 1%;
    border: 1px solid #ededed;
    margin: -1px -1px 0px 0px;
}
.appJobWrap .checkInn label {
    display: inline-block;
    padding: 0px 0px 0px 5px;
    position: relative;
    top: -2px;
}
.checkboxAdmin {
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
}

.checkboxAdmin:after {
    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    width: 16px;
    height: 16px;
    border: 1px solid #dedede;
    border-radius: 2px;
}

.checkboxAdmin[type="checkbox"]:before {
    background: #0275bf url("http://i.imgur.com/dR1TM0y.png");
    background-size: 10px 8px;
    background-repeat: no-repeat;
    background-position: 3px 4px;
    position: absolute;
    left: 2px;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
    color: #0275bf;
}

.checkboxAdmin[type="checkbox"]:checked:before {
    content: "";
    position: absolute;
    top: 0px;
    opacity: 1;
    left: 0px;
    border: 1px solid #0275bf;
    border-radius: 2px;
}
.appJobWrap .yearPass label,
.appJobWrap .adminRad {
    float: left;
    width: 20% !important;
    padding: 6px 0px 0px 0px;
}
.appJobWrap .yearPass input {
    float: left;
    width: 30% !important;
}
.padL {
    padding: 6px 0px 0px 30px !important;
}
.appJobWrap .adminRad input {
    padding: 0px 0px;
    margin: 8px 10px 0px 0px;
    width: auto !important;
    height: auto;
}
.appJobWrap .genderAd label {
    float: left;
    width: 20%;
    padding: 5px 0px 0px 5px;
}
.appJobWrap .genderAd .adminRad {
    padding: 0px 0px;
}
.genderAd .adminRad label {
    float: none;
    display: inline-block;
}
.appJobWrap .expMin {
    float: left;
    width: 40%;
}
.appJobWrap .expMin select, .appJobWrap .expMin input {
    display: inline-block;
    width: 48% !important; 
    font-size: 13px;
}
.companAdmin {
    position: relative;
}
.companAdmin h3 {
    padding: 15px 20px 15px;
    margin: 0px 0px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.bgGray h3 {
    padding: 5px 20px 15px;
}
.appJobWrap .terAdmin {
    width: 100%;
    margin: 5px 1%;
    border: none;
    font-size: 13px;
    font-weight: 400;
}
.appJobWrap .terAdmin label {
    font-weight: 400;
}
.jobAdmBtn {
    text-align: right; margin-bottom: 30px;
}
.jobAdmBtn button {
    background-color: #0b82cf;
    height: 36px;
    line-height: 36px;
    color: #fff;
    padding: 0px 15px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    margin: 4px;
    width: auto;
}
.jobAdmBtn button:hover {
    background-color: #0974b9;
    color: #fff;
}
.jobAdmBtn button:first-child { 
    background-color: #49b48b; 
}
.jobAdmBtn button:first-child:hover {
    background-color: #3c9774;
}
.jobAdmBtn button.btnExit {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.jobAdmBtn button.btnExit:hover {
    background-color: #ca4d49;
}
.companAdminInn {
    position: relative; width: 72%; padding: 0px 0px 0px 6px;
}
.companyLogoAdm {
    position: absolute; right: -220px; top: 0px;
    width: 160px;
}
.companyLogo { width: 160px; height: 160px; border: 2px solid #ededed; border-radius: 6px;}
.companyLogo img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px;}
.companyLogoUpload { position: relative; padding: 5px 0px 0px; width : 100% !important;}
.companyLogoUpload input {
    width: 80%; margin:0px auto; height: 30px; position: absolute; z-index: 2; 
    margin: 0px auto; left: 0px; right: 0px; opacity: 0; visibility: visible; cursor: pointer;
}
.companyLogoUpload a {
    background-color: #0b82cf;
    height: 30px; display: block;
    line-height: 30px; z-index: 1;
    color: #fff; text-align: center;
    padding: 0px; 
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    margin: 0px auto; left: 0px; right: 0px;
    width: 80%; position: absolute;
}
.appJobWrap .div100 .mce-panel { width:100% !important;}
.appJobInn .clearfix { clear:both;}
.checkInnWrap { width:100%; display:block; padding:10px 0px 0px 0px;}
.noPad {padding : 0px !important;}

.adminActions {
    float: right;
    
}
.uploadOverBtnIcon {
    position : relative;
    font-size: 18px !important;
    width: 40px;
    height: 36px !important;
    text-align: center;
    line-height: 36px !important;
    color: #666;
    font-weight: 400;
    cursor: pointer;
    padding: 0px 0px;
    margin: 0px 0px;
}
.uploadOverBtnIcon:hover {
    color : #0098ff;
}
.uploadOverBtn {
    background-color: #fff;
    box-shadow: 0px 5px 15px
    rgba(0,0,0,0.2);
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    width: auto;
    top: 35px;
    right: 0px;
    padding: 10px 10px 5px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    border-radius : 5px;
}
.uploadOverBtnIcon:hover .uploadOverBtn {
    opacity:1; visibility:visible;
}
.uploadOverBtn div {
    display : inline-flex;
    width: 100%;
}
.uploadOverBtn button {
    width: 100% !important;
    margin : 5px;
}
.uploadOverBtn button i {
    display : inline-block;
    padding : 0px 5px 0px 0px;
}

/*Test/Exam*/

.textAnswerMain, .imgAnswerMain {
   display:flex; flex-wrap: wrap; padding:10px 0px 25px 0px; position: relative;
}
.imgAnswerMain { display:none;}
.textAnswerCta, .imgAnswerCta {
    width:48%; position:relative; padding:10px 10px 10px 30px;
}
.imgAnswerCta {
    float:left; width:24%;
}
.textAnswerCta span, .imgAnswerCta span {
    position:absolute; left:5px; top:17px; font-size:14px; font-weight:600; color:#666;
}
.textAnswerCta span.error, .imgAnswerCta span.error {
    top: 45px;
    left: 60px;
    color : red !important;
    font-size: 10px !important;
    font-weight: 400;
}
.imgAnswerCta span.error {
    top: 140px;
}
.textAnswer, .imgAnswer{
    display: block;
    width: 80%;
    border: 1px solid #dedede;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 0px 0px;
}
.testcheck {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 7px 10px 0px 0px;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  float: left;
}

.testcheck:after {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
}

.testcheck[type="radio"]:before,
.testcheck[type="checkbox"]:before {
  background: #3bb07d url("http://i.imgur.com/dR1TM0y.png");
  background-size: 12px 10px;
  background-repeat: no-repeat;
  background-position: 3px 5px;
  position: absolute;
  left: 2px;
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100%;
  color: #0275bf;
}

.testcheck[type="radio"]:checked:before,
.testcheck[type="checkbox"]:checked:before {
  content: "";
  position: absolute;
  top: 0px;
  opacity: 1;
  left: 0px;
  border: 1px solid #3bb07d;
  border-radius: 5px;
}

.imgCheck {
    display: inline-block;
    position: relative;
    top: -2px; cursor:pointer;
}
.imgCheck label {
    font-weight:400; margin:0px 0px 0px; padding:8px 0px 0px 0px;
}
.imgPreview {
    border: 1px solid #ededed;
    padding: 1px; height:96px;
    margin:0px 0px 10px 0px;
    display: flex;
    justify-content: center;
}
.imgPreview img {
    width: auto;    
    max-width: 96px;max-height: 68px; object-fit: cover;
}
.imgUpload {
    position: relative; top:-34px; height:26px; cursor:pointer;
    width: 103px;  margin:0px 0px 0px 21px; left:-1px;
}
.imgUpload a {
    position: absolute;
    width: 96px;
    height: 26px;
    background-color: #308dea;
    border-radius: 0px 0px 5px 5px;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    z-index: 100;
    left : 0px; cursor:pointer;
    top : 0px; line-height:25px;
}
.imgUpload input {
    position:absolute;
    width: 96px;
    left: 0px;
    top: 0px;
    height: 32px;
    z-index: 150;
    opacity:0; cursor:pointer;
}
.jobLastDate {
    text-align: right;
    padding: 0px 20px 15px 0px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.testValidDateIn {
    display: inline-block;
    width: 48%;
}
.testValidDateIn:last-child {
    float: right;
}
.testAns50 {
    width: 48%;
    display: inline-block;
}
.testAns50 label {width: 100% !important;}
.testAns50:last-child {
    float: right;
}
.testValidity {
    border: 1px solid #cecece;
    padding: 5px 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
    margin: 0px 0px 10px 0px;
}
.testValidity .fa-question-circle {
    color: #e36038;
    cursor: pointer;
}
.testDur label {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    display: block;
}
.adminFilter {
    float: left;
    width: 87%;
}
.adminFilter div {
    float: left;
    margin: 5px 0px 10px 0px;
}
.adminFilter div label {
    width: 90px !important;
}
.btn i {
    display: inline-block;
    padding: 0px 5px 0px 0px;
}
.popUpOut {
    position: fixed;
    z-index: 600;
    padding: 20px 0;
    overflow: auto;
    background-color:
    rgba(0,0,0,.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
}

.popAuto {
    height: auto !important;
}
.userPopupHead {
    padding: 12px 20px 12px 55px; font-size: 16px; font-weight: 500; color: #454545; position: relative; background-color: #fff;
    border-radius: 10px 10px 0px 0px; border-bottom: 1px solid #ededed; margin: 0px;
    box-sizing: border-box;
}
.userPopupHead .closePop {
    position: absolute; left: 10px; top: 7px; background-size: 22px; background-color: #fff; border-radius: 50%;
    width:35px; height: 35px;
}
.userPopupHead .closePop:hover { background-color: #ededed;}
.userPopupMid {
    padding: 20px 20px 15px;
}
.popMid {
    padding: 5px 20px 15px;
}
.sequenceInfo {
    text-align: center;
    display: block; font-weight:400;
    color: #999; font-size:12px;
    animation: blinktext 1s linear 0s infinite alternate;
    -webkit-animation: blinktext 1s linear 0s infinite alternate;
}
.sequenceInfo i { display:inline-block; padding:0px 5px 0px 0px;}
.sequenceTable { padding: 5px 0px 0px 0px;}
.sequenceTable.div100 { margin:0px 0px; width:100%;}
.sequenceTable table {
    display: grid;
    border-collapse: collapse;
    width: 100%; overflow-y: auto;
    grid-template-columns: 
      minmax(110px, 110px)
      minmax(300px, 2fr);
      border: 1px solid #ededed; border-top: none; border-left: none;
}
  .sequenceTable thead,
  .sequenceTable tbody,
  .sequenceTable tr {
    display: contents;
  }
 
  .sequenceTable th {
    background: #ededed;
    text-align: left;
    font-weight: 600;
    font-size: 12px; padding: 9px 15px;
    color: #65add9;
  }
  .sequenceTable th:last-child { border: 0;}
  .sequenceTable td {
    color: #454545;
    font-size:13px; font-weight:400; border-left:1px solid #e8e8e8;
    padding:10px 15px 0px; border-top: 1px solid #e8e8e8;
}
 .sequenceTable td:first-child { text-align: center;}
 
.movIcon {
    position: absolute;
    right: 15px;
    top: 11px;
    color: #ccc;
    background-image: url(../images/movearrow.png);
    height: 23px;
    width: 23px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}
.sequenceCount {
    float:left; width:32%;  margin: 0px 0px;
    padding: 0px 0px; box-sizing: border-box;
}
.sequenceCount li {
     list-style-type: none;
     border: 1px solid #ededed; height:46px;
     border-right:none; text-align: center; line-height: 42px;
     font-size: 14px; margin: 0px 0px -1px 0px;
}
.moveListAlign {
    margin: 0px 0px; float:left;
    padding: 0px 0px; 
    width: 68%;  box-sizing: border-box;
}
.moveListAlign li {
    list-style-type: none; 
    position:relative; height:46px; background-color: #fff;
    border: 1px solid #ededed;  margin: 0px 0px -1px 0px;
}
.courseDrag {
    background-color: #ededed; line-height: 31px;
    padding: 0px 15px; border-radius: 4px;
    color: #666;  margin:6px;
    width: auto; height: 32px;
    cursor: pointer; 
}
.courseDrag label {
    margin:0px; font-size: 13px; font-weight:400; display:inline-block; width:90%;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.courseDrag label b { font-weight: 600; color: #454545;  padding: 0px 5px 0px 0px;}
.sequenceHead {
    background-color: #fff; color: #65add9; font-weight: 400; font-size: 13px;
   display:flex; flex-wrap: wrap; border: 1px solid #ededed; border-bottom: none;
}
.sequenceHead span {
     padding: 10px 5px 10px 15px;
}
.sequenceHead span:first-child { width: 32%; border-right:1px solid #ededed;}
.userPopupInn {
    max-width: 750px; width: 96%; margin: 0px auto;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.15); border-radius: 10px; background-color: #fff; 
    margin-bottom: 40px;
    position: fixed;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    top: 5%;
    height: 90%;
}
.userPopupInn.userPopupInnSm {
    max-width: 500px;
}
.popupOverflow {overflow-y: auto; height: 85%; width:100%;}
.popSavebtn { 
    position: absolute; right:10px; top:10px;
    padding: 5px 15px; margin: 0px; font-size: 15px; font-weight: 500; color: #fff !important;
    display: inline-block; background-color: #0384d8; border-radius: 5px; text-align: center;
}
.popSavebtn:hover { background-color: #0275bf;}
.closePop {
    background-repeat: no-repeat; background-position: center; background-size: 24px; position: absolute; right: 10px; top: 6px;
    background-image: url(../images/close.svg); width: 40px; height: 40px; background-color: #f1f1f1; border: none; cursor: pointer;
}
.adminFilter2 {
    float: left;
    width: 87%;
    position: relative;
}
.adminFilter2 div {
    float: left;
    margin: 5px 0px 5px 0px;
    width: 32%;
    min-height: 55px;
}
.adminFilter2 div label {
    width: 60px !important;
}
.adminFilter2 div input, .adminFilter2 div select {
    width: 65% !important;
}
.adminFilter2 .datebox {
    width: 32% !important;
    margin-right : 0px !important;
}
.filterActions {
    position: absolute;
    top: 66px;
    right: -130px;
    width: auto !important;
}
.filterActions button {
    margin: 0px !important;
}
@keyframes blinktext {
    0% {color: #666;}
    50% {color: #ff7171;}
    100% {color: #666;}
}
@-webkit-keyframes blinktext {
    0% {color: #666;}
    50% {color: #ff7171;}
    100% {color: #666;}
}