/* Typography
=========================================== */

@font-face {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/ProximaNova-Regular.otf);
}

@font-face {
    font-family: 'Proxima Nova';
    font-style: bold;
    font-weight: 700;
    src: url(../fonts/Proxima%20Nova%20Bold.otf);
}

@font-face {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Proxima%20Nova%20Semibold.otf);
}

a {
    color: #fff;
    cursor: pointer;
}

.ngx-pagination .disabled {
    color: #fff;
}

body {
    color: #545353;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 14px;
    line-height: normal;
    font-family: 'Proxima Nova', Georgia, sans-serif;
}

p {
    color: #6a6c6d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: #2d3e50;
    font-family: 'Proxima Nova', Georgia, sans-serif;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 23px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}


/* Global CSS
=========================================== */

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0 solid;
}

a {
    text-transform: capitalize;
    color: #e98007;
}

a:hover {
    color: #2d3e50;
}

button:focus,
.btn:focus {
    outline: 0 solid;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/* List */

.unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-inline li {
    display: inline-block;
}


/* BTN */

.btn {
    /* height: 43px;*/
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.btn.btn-md {
    padding: 6px 24px;
}

.btn.btn-md:hover {
    background-color: #e84c3d !important;
    border: 1px solid #e84c3d;
}

.btn.btn-lg {
    padding: 6px 19px;
}

.btn-primary {
    color: #fff !important;
    font-size: 15px;
    /* background: #1bba99;
    border-color: #4fbba4;*/
}

.btn-primary:hover {
    color: #fff;
    border-color: #e98007;
    background: #e98007;
}

.btn-secondary {
    font-size: 14px;
    background: #7e8c8d;
    border-color: #7e8c8d;
}

.btn-secondary:hover {
    background: #19bd9b;
    border-color: #19bd9b;
}

.btn-success {
    font-size: 14px;
    color: #fff !important;
    background: #19bd9b;
    border-color: #19bd9b;
}

.btn-success:hover {
    background: #e98007;
    border-color: #e98007;
}

.btn-info {
    color: #fff !important;
    font-size: 14px;
    background: #e98007 !important;
    border-color: #e98007 !important;
}

.btn-info:hover {
    font-size: 14px;
    background: #19bd9b !important;
    border-color: #19bd9b !important;
}

.btn-danger {
    font-size: 14px !important;
}

.btn.disabled,
.btn:disabled {
    opacity: 10;
}

.btn-info:hover {
    color: #fff;
    background-color: #19bd9b;
    border-color: #19bd9b;
}

.btn-border {
    border: 1px solid #fff;
    color: #fff;
}

.btn-border:hover {
    background: #2d3e50;
    color: #fff;
    border-color: #2d3e50;
}

.readmore-btn {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    color: #494753;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.readmore-btn:hover {
    color: #ffbd0a;
}


/* Pagination */

.paging {
    margin-top: 20px;
}

.paging .pagination {
    margin-bottom: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.paging .pagination li {
    display: inline-block;
    margin: 0 10px;
}

.paging .pagination li.disabled a {
    color: #fff;
    cursor: not-allowed;
    text-decoration: underline;
    background: gray !important;
}

.paging .pagination li a {
    display: block;
    border: 1px solid #ddd;
    padding: 2px 10px;
    color: #a1a1a5;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.paging .pagination li a i {
    font-size: 10px;
}

.paging .pagination li.active a {
    background: #e98007;
    color: #fff;
    border-color: #e98007;
    font-weight: 700;
}

.paging .pagination li:hover a {
    background: #e98007;
    color: #fff;
    border-color: #e98007;
}

.paging.no-margin {
    margin-top: 0;
}

.paging.no-border .pagination {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.paging.no-border .pagination li {
    position: relative;
}

.paging.no-border .pagination li a {
    border: none;
    font-weight: 600;
}

.paging.no-border .pagination li.active a {
    background: none;
    color: #494753;
}

.paging.no-border .pagination li:hover a {
    background: none;
    color: #494753;
}

.paging.no-border .pagination li:after {
    content: "";
    position: absolute;
    top: calc(50% + 4px);
    right: -11px;
    width: 3px;
    height: 3px;
    background: #a1a1a5;
}

.paging.no-border .pagination li:first-child {
    margin-right: 0;
}

.paging.no-border .pagination li:last-child {
    margin-left: 0;
}

.paging.no-border .pagination li:last-child:after {
    display: none;
}

.paging.no-border .pagination li.page-direc:after {
    display: none;
}

.paging.justify-center {
    margin-top: 30px;
}

.paging.justify-center .pagination {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* Bottom Menu */

.bottom-menu ul li {
    margin-bottom: 10px;
}

.bottom-menu ul li a {
    color: #aeafb3;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.bottom-menu ul li a:hover {
    color: #ffbf10;
}

.bottom-menu ul.border-bottom-dashed li {
    border-bottom: 1px dashed #464b5c;
    padding-bottom: 7px;
    margin-bottom: 4px;
}

.bottom-menu ul.border-bottom-dashed li:last-child {
    border: none;
}

.bottom-menu.menu-half ul {
    display: inline-block;
}

.bottom-menu.menu-half ul:last-child {
    margin-left: 55px;
}

.bottom-menu.menu-half ul li:last-child {
    margin-bottom: 0;
}


/* Section */

section,
.section {
    padding: 50px 0 50px;
    position: relative;
}

.shadow_top {
    border-bottom: 1px solid #eee;
}


/* Column title */

.column-title {
    line-height: 50px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .column-title {
        font-size: 30px;
    }
}


/* Section Title */

.section-header {
    margin-bottom: 32px;
}

.section-header .section-title {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 29px;
}


/* Background */

.bg-orange {
    background: #d25400 !important;
}

.bg-sky {
    background: #19bd9b !important;
}

.bg-yellow {
    background: #f2c40e !important;
}

.bg-red {
    background: #f05a21 !important;
}

.bg-solid {
    background: #ecf0f1 !important;
}

.bg-dark {
    background: #353949 !important;
}


/* Text Colors */

.color-green {
    color: #24b34a !important;
}

.color-yellow {
    color: #ffbd0a !important;
}

.color-orange {
    color: #d25400 !important;
}


/* Share Items */

.share-item {
    width: 170px;
}

.share-item p {
    text-transform: uppercase;
    color: #b3b2b6;
    margin-bottom: 18px;
}

.share-item ul li {
    margin-right: 13px;
}

.share-item ul li a i {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 30px;
}

.share-item ul li a i.fa-facebook {
    background: #3b5998;
}

.share-item ul li a i.fa-twitter {
    background: #1da1f2;
}

.share-item ul li a i.fa-linkedin {
    background: #0077b5;
}

.share-item ul li a i.fa-vimeo {
    background: #1ab7ea;
}

.share-item ul li:last-child {
    margin-right: 0;
}


/* BG Overlay */

.bg-overlay {
    position: relative;
    z-index: 1;
}

.bg-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 57, 73, 0.8);
    z-index: -1;
}

.bg-overlay-green {
    position: relative;
    z-index: 1;
}

.bg-overlay-green:after {
    border-radius: 9px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #19bd9bf5;
    z-index: -1;
}

.bg-overlay-red {
    position: relative;
    z-index: 1;
}

.bg-overlay-red:after {
    border-radius: 4px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e98007f5;
    z-index: -1;
}

.bg-overlay-blue {
    position: relative;
    z-index: 1;
}

.bg-overlay-blue:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 100, 177, 0.92);
    z-index: -1;
}


/* Gap */

@media (min-width: 992px) {
    .gap-30 {
        height: 30px;
        clear: both;
    }
}

.mb-0 {
    margin-bottom: 0;
}


/* No Padding */

.no-padding {
    padding: 0 !important;
}

.padding-top0 {
    padding-top: 0 !important;
}

.padding-bottom0 {
    padding-bottom: 0 !important;
}


/* Breadcumbs */

.breadcrumb {
    background: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 10px;
}

.banner-area {
    position: relative;
    padding: 132px 0;
    background-size: cover;
    background-position: 50% 50%;
    overflow: hidden;
}

.banner-area .banner-title {
    color: #fff;
    text-align: center;
    font-size: 40px;
    margin-bottom: -15px;
}

.banner-area li {
    position: relative;
    padding: 0 10px;
    color: #fff;
}

.banner-area li a {
    color: #fff;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.banner-area li a:hover {
    color: #ffbd0a;
}

.banner-area li:not(:last-child):after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 0px;
    width: 1px;
    height: 10px;
    background: #fff;
}

.banner-area .banner-img {
    position: absolute;
    bottom: -58px;
    left: calc(50% - 415px);
}


/* Review Star */

.review-star li {
    margin-right: 1px;
}

.review-star li i {
    color: #ffbd0a;
}

.review-star li.rating {
    margin-left: 8px;
    color: #b3b2b6;
}


/* Sticky Header */

.affix {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99 !important;
}

.affix.navbar {
    background-color: #353949;
}

.affix.navbar .navbar-collapse {
    margin: 0 auto;
    padding: 0 15px;
}

.affix.header-solid .tl-logo-area {
    background: #fff;
    -webkit-box-shadow: 0 0 1px 3px #e7e7e7;
    box-shadow: 0 0 1px 3px #e7e7e7;
}

.affix.tl-header-transparent .tl-logo-area {
    background: #353949 !important;
}


/* Back to top */

#back-to-top {
    position: fixed;
    right: 40px;
    bottom: 25px;
    top: auto;
    z-index: 10;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: none;
}

#back-to-top .btn-primary {
    font-size: 18px;
    padding: 6px 15px;
    width: 44px;
    height: 44px;
    line-height: 30px;
    border-radius: 100%;
}

#back-to-top .btn-primary:before {
    display: none;
}

.sidebar.sidebar-right {
    margin-left: 20px;
}

.sidebar.sidebar-left {
    margin-right: 20px;
}

.avatar {
    display: inline-block;
}

.avatar--medium .avatar__image--round {
    border-radius: 100%;
}

.avatar--medium .avatar__image {
    border: 0;
    background-color: #ebebeb;
    height: 64px;
    width: 64px;
}

.userPro {
    border-radius: 5px;
    padding: 14px;
    border: 1px solid #eaebec;
    margin-bottom: 16px;
    background: #fff;
}

.UserProIn {
    text-align: center;
}

.UserProIn h3 {
    margin-bottom: 2px !important;
    font-size: 17px;
    padding-top: 10px;
}

.userLink {
    font-weight: 500px;
    color: #2d3e50;
}


/* Widget */

.widget {
    padding: 14px 14px;
    border: 1px solid #eaebec;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 5px;
}

.widget.widget-ad {
    padding: 0;
    border: none;
}

.widget.widget-ad img {
    width: 100%;
}

.widget.widget-search {
    padding: 0;
    border: none;
}

.widget .widget-title {
    font-size: 20px;
    margin-bottom: 16px;
    color: #e98007;
}

.UserProIn h3 {
    color: #d25400;
    font-size: 15px;
}

.widget .input-group {
    position: relative;
}

.widget .input-group input {
    padding: 17px 20px;
    border-radius: 0;
    border-color: #eaebec;
}

.widget .input-group input::-webkit-input-placeholder {
    font-size: 14px;
    color: #b9b8bb;
    font-family: 'Proxima Nova', Georgia, sans-serif;
}

.widget .input-group input::-moz-placeholder {
    font-size: 14px;
    color: #b9b8bb;
    font-family: 'Proxima Nova', Georgia, sans-serif;
}

.widget .input-group input:-ms-input-placeholder {
    font-size: 14px;
    color: #b9b8bb;
    font-family: 'Proxima Nova', Georgia, sans-serif;
}

.widget .input-group input::-ms-input-placeholder {
    font-size: 14px;
    color: #b9b8bb;
    font-family: 'Proxima Nova', Georgia, sans-serif;
}

.widget .input-group input::placeholder {
    font-size: 14px;
    color: #b9b8bb;
    font-family: 'Proxima Nova', Georgia, sans-serif;
}

.widget .input-group .input-group-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.widget-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-tabs-nav li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #ececed;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.widget-tabs-nav li a {
    color: #929292;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-tabs-nav li span {
    color: #929292;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-tabs-nav li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.widget-tabs-nav li:hover a,
.widget-tabs-nav li:hover .posts-count {
    color: #f05a21;
}

.main-container {
    height: auto;
    ;
    min-height: 500px;
    background: #f6f7f9;
}

.main-container2 {
    background-size: 100%;
    background-attachment: fixed;
    min-height: 600px;
    height: auto;
    background-repeat: no-repeat;
    background-image: url(../images/homebg.jpg);
}

.recent-post .media {
    margin-bottom: 18px;
}


/* background-size: 100%;
  background-attachment: fixed;
  min-height: 550px;
  height: auto;
  background-repeat: no-repeat;
  background-image: url(../images/homebg.jpg);
 
 } */

.recent-post .media {
    margin-bottom: 18px;
}

.recent-post .media .media-left {
    margin-right: 15px;
}

.recent-post .media .media-left img {
    width: 50px;
    height: 50px;
}

.recent-post .media-body .entry-title>a {
    line-height: 18px;
    font-weight: normal;
    font-size: 13px;
    color: #7e8c8d;
    margin-bottom: 5px;
    display: block;
}

.recent-post .media-body .entry-title span {
    display: block;
    color: #929292;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: -7px;
}

.recent-post .media-body .entry-title span a {
    color: #ffbd0a;
}

.recent-post .media-body .post-time * {
    font-size: 12px;
    color: #929292;
}

.midPart {
    padding: 53px 52px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 5px;
}

.midPart_table {
    padding: 30px 30px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 5px;
}

.midPart_In {
    width: 90%;
    margin: 20px auto;
}

.form_leftDiv {
    width: 20%;
    float: left;
    text-align: right;
}

.form_righttDiv {
    width: 80%;
    float: left;
    text-align: right;
}

.midPart h1 {
    font-size: 21px;
    margin-bottom: 20px;
    color: #2d3e50;
}

.formlable_name {
    margin-right: 20px;
    color: #2d3e50;
    font-family: 'Proxima Nova', Georgia, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    float: right;
    padding: 6px 0 0 0px;
}

input.form-control.formlable_name_textbox {
    padding: 11px 11px;
    font-size: 13px;
    color: #545353!important;
    margin-bottom: 20px;
    border-radius: 2px;
}

input.form-control.formlable_name_textbox_Optiontxt {
    float: left;
    margin-right: 5px;
    font-size: 14px;
    width: 77%;
    height: 35px;
    margin-bottom: 15px;
    border-radius: 3px;
}

.formlable_name_textbox {
    padding: 11px;
    font-size: 14px;
    color: #6b6571 !important;
    margin-bottom: 20px;
}

textarea.form-control.formlable_name_textbox {
    border-radius: 2px;
    font-size: 15px;
}

.formlable_name_dropdown {
    border-radius: 2px;
    font-size: 14px;
    color: #545353 !important;
    margin-bottom: 20px;
    line-height: 20px;
    padding: 9px 10px;
}

button.btn.btn-primary.post {
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    float: left;
    background: #e98007;
    border: 1px solid #e98007;
}

button.btn.btn-primary.post:hover {
    background: #19bd9b;
    border: 1px solid #19bd9b;
}

button.btn.btn-primary.cancel {
    margin-top: 10px;
    margin-right: 10px;
    float: left;
    background: #17a086;
    border: 1px solid #17a086;
}

button.btn.btn-primary.cancel:hover {
    background: #19bd9b;
    border: 1px solid #19bd9b;
}

button.btn.btn-primary.clear {
    margin-top: 10px;
    margin-right: 10px;
    float: left;
    background: #7e8c8d;
    border: 1px solid #7e8c8d;
}

button.btn.btn-primary.clear:hover {
    background: #95a4a7;
    border: 1px solid #95a4a7;
}

.userstatus {
    border-radius: 0;
    border: 1px solid #fff;
    background: #353949!important;
}

.progress.pp {
    border-radius: 0;
    height: 25px;
    margin: 23px 10px 18px 0px;
    background-color: #cacaca;
}

.latest .progress {
    height: 25px;
}

.latest {
    padding: 8px;
    border: 1px solid #eaebec;
    margin-bottom: 16px;
    background: #7e8c8d;
    border-radius: 5px;
}

.latest2 {
    padding: 8px;
    border: 1px solid #34495e;
    margin-bottom: 16px;
    background: #ffffff;
    border-radius: 5px;
}

.latest-title {
    background: #ffffff;
    color: #2d3e50;
    padding: 10px 0 10px 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.job {
    background: #ffffff;
}

.job-box p {
    text-align: justify;
    line-height: 19px;
    color: #fff;
}

.job-box h3 {
    color: #fff;
}

.job-box {
    padding: 18px 20px 20px;
}

.job-bg {
    border-radius: 4px;
    margin-bottom: 20px;
    background-size: cover;
    width: 100%;
}

.summeryTxt {
    color: #17a086 !important;
}

.midPart .custom-select {
    margin-bottom: 15px;
    height: 45px;
}

.midPart .custom-select:focus {
    box-shadow: none;
    border-color: #938c9c;
    outline: 0;
}

.midPart .custom-select {
    font-weight: bold;
    background-size: 10px 15px !important;
}

.midPart .form-check-input {
    position: absolute;
    margin-top: 10px;
    margin-left: 3px;
}

.midPart .form-check-label {
    margin-top: 7px;
    margin-left: 26px;
    margin-bottom: 0;
    font-size: 13px;
}

.questionList {
    background: #e98007;
    border: 1px solid #e98007;
    font-size: 15px;
    text-align: right;
    margin-bottom: 14px;
    float: right;
    /* margin-top: -18px; */
    letter-spacing: 1px;
    color: #fff !important;
}

.questionList:hover {
    border-color: #7e8c8d;
    background: #7e8c8d;
}

.questionList.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    /*  border-color: #2d3e50;
    background: #2d3e50; */
}

.questionList.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.tableHeadr {
    color: #fff;
    font-size: 16px;
    background: #19bd9b;
    border-top: 1px solid #19bd9b;
}

.table-dark {
    color: #2d3e50;
    background-color: #ecf0f1ab;
}

.icon_padding {
    color: #2d3e50;
    margin-right: 10px;
    cursor: pointer;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #fff;
    border-right: 1px solid #fff;
}

tbody.tableRow {
    font-size: 14px;
}

.table-dark.table-hover tbody tr:hover {
    background-color: #ecf0f1;
}

.tableSize1 {
    width: 5%;
}

.tableSize2 {
    width: 15%;
}

.tableSize3 {
    width: 20%;
}

.tableSize4 {
    width: 45%;
}

.tableSize5 {
    width: 15%;
}

.tablebold_size {
    font-weight: 550;
}

.table_pagination {
    margin: 20px 0 20px 0px;
}

.table_pagination .center {
    width: 20%;
    margin: 29px auto;
}

.table_pagination .page-link {
    color: #d25400;
}

.questionBank_box {
    color: #212529;
    margin: 20px 0 20px 0px;
}

.questionBank_box .title {
    padding-bottom: 7px;
    font-weight: bold;
    font-size: 20px;
    float: left;
    padding-right: 9px;
}

.name {
    font-size: 15px;
    float: left;
    padding-right: 10px;
    padding-top: 3px;
    line-height: 20px;
}

.questionBank_box .title2 {
    color: #d25400;
    font-weight: bold;
    font-size: 17px;
    float: left;
    padding-right: 21px;
}

.questionBank_box .box1 {
    clear: both;
    width: 100%;
    margin-bottom: 30px;
}

.popup_box {
    text-align: center;
    margin: 100px auto;
    width: 50%;
}

.popup_box .btn-primary {
    font-size: 13px;
    background: #d25400;
    border-color: #d25400;
}

.popupDesign .modal-body {
    text-align: left;
    color: #2d3e50;
}

.popupDesign .btn-primary {
    font-size: 14px;
    background: #d25400;
    border-color: #d25400;
}

.popupDesign .btn-primary:hover {
    color: #fff;
    background-color: #17a086;
    border-color: #17a086;
}

.popupDesign .btn-secondary:hover {
    background: #19bd9b;
    border-color: #19bd9b;
}

::ng-deep.modal-backdrop.show {
    opacity: 0.8;
}

::ng-deep.modal {
    top: 50px !important;
}

.popupDesign .modal-header {
    padding: 10px;
    height: 50px;
    color: #fff;
    background: #19bd9b;
    border-bottom: 1px solid #ffffff;
    font-size: 15px;
}

.popupDesign .modal-title {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.popupDesign .close {
    opacity: 1.5;
    color: #fff;
}

.popupDesign .upload {
    margin-top: 6px;
    font-size: 17px;
    color: #17a086;
}

.popupDesign .name {
    float: right;
    font-family: 'Proxima Nova', Georgia, sans-serif;
    font-size: 15px;
    color: #17a086;
    margin-left: 5px;
}

.fileContainer {
    overflow: hidden;
    position: relative;
}

.fileContainer [type=file] {
    cursor: inherit;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
}

.signIn_noti {}

.notifications {
    display: block;
    position: relative;
}

.notifications .toggle {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.notifications .toggle:before,
.notifications .toggle:after {
    content: '.';
    display: block;
    position: absolute;
    left: 35px;
    width: 10px;
    background-color: #bdc3c7;
    color: transparent;
    border-radius: 5px;
}

.notifications .toggle:before {
    top: 15px;
    height: 30px;
}

.notifications .toggle:after {
    top: 55px;
    height: 10px;
}

.notifications .messages {
    z-index: 115;
    display: block;
    position: absolute;
    top: 55px;
    left: -106px;
    width: 240px;
    max-height: 240px;
}

.notifications .messages:before {
    z-index: 115;
    content: '.';
    display: block;
    position: absolute;
    margin-left: -10px;
    left: 50%;
    top: -18px;
    width: 0;
    height: 0;
    color: transparent;
    border: 10px solid black;
    border-color: transparent transparent #2d3e50;
}

.notifications .messages .message {
    z-index: 110;
    display: block;
    position: initial;
    padding: 10px;
    background-color: #2d3e50;
    color: #ffffff;
    text-decoration: none;
}

.notifications .messages .message+.message {
    border-top: 1px solid #e0e0e0;
}

.bellicon_box {
    margin-top: 3px;
    float: right;
}

.topright .fa-bell:before {
    color: #ffffff;
    font-size: 18px;
    content: "\f0f3";
}

.Choose .true {
    width: 100%;
    font-size: 13px;
    float: left;
    padding-bottom: 9px;
}

.chooseTextOuter {
    float: left;
    width: 49%;
    margin-right: 4px;
}

h1.mainHeading {
    margin-bottom: -5px;
    text-align: center;
    font-size: 26px;
    text-transform: capitalize;
}

hr.style-four {
    margin: 13px auto 30px;
    width: 18%;
    padding: 0;
    border: none;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    color: #333;
    text-align: center;
}

hr.style-six:after {
    content: " ";
    display: inline-block;
    position: relative;
    top: -2.1em;
    font-size: 1.5em;
    padding: 19px 1.75em;
    background-size: 90px 90px;
    height: 50px;
}

.ios-ui-select {
    margin-top: 5px;
    background: #dddddd;
    border: none;
    height: 22px;
    background: #b3b2b6d6;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    width: 46px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.ios-ui-select.checked {
    -webkit-box-shadow: inset 0 0 0 36px #6ddc5f;
    box-shadow: inset 0 0 0 36px #19bd9b;
}

.ios-ui-select.checked .inner {
    left: 27px;
}

.ios-ui-select .inner {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 3px;
    left: 3px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: white;
    -webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    -moz-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    -o-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}

.app-full-bleed-dialog .mat-dialog-container {
    padding: 0 !important;
}

.popUp1 {
    overflow: hidden;
    margin: -24px;
}

.viewprofile .education_box {
    clear: both;
    height: auto;
    padding: 20px 38px 20px 38px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 2px 3px rgba(0, 0, 0, .2);
    margin-bottom: 25px !important;
}

.viewprofile .left {
    width: 90%;
    float: left;
}

.viewprofile .leftIn {
    margin-left: 32px;
    width: 20%;
}

.descraption {
    padding: 0 37px 20px 0;
}

.iconpen {
    margin-right: 10px;
    float: right;
}

a.veri {
    margin-left: 30px;
    font-size: 16px;
}

.iconpen .fa-pencil:before {
    color: #e98007;
    font-size: 22px !important;
}

.education_box h2 {
    width: 97%;
    /* font-size: 19px; */
    /* line-height: 1.4; */
    float: left;
    font-weight: 600;
    margin-bottom: 27px;
    font-size: 20px;
    line-height: 1;
    color: #34495e;
    vertical-align: middle;
}

.education_box .fa-plus:before {
    color: #17a086;
    font-size: 20px;
    content: "\f067";
}

.infoEducation {
    border-bottom: 1px solid #dad6d6;
    margin: 22px 0 10px 0px;
}

.infoEducation span.bold {
    color: #2d3e50;
    font-weight: bold;
}

.infoEducation span.marks {
    font-weight: 600;
    font-size: 20px;
    color: #d25400;
}

.infoEducation .btn-primary {
    margin: 10px 0 16px 0px;
    font-size: 13px;
    background: #d25400;
    border-color: #d25400;
}

.infoEducation .desc {
    font-size: 15px;
    margin: 0 0 5px 0px;
}

.infoEducation .desc span::after {
    content: ","
}

.infoEducation .desc span:last-child::after {
    content: ""
}

.infoEducation .desc span.bold::after {
    content: ""
}

.infoEducation .title {
    font-weight: normal;
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 1;
    color: #17a086;
    vertical-align: middle;
}

.education_box .info .title a {
    color: #2d3e50;
}

.education_box .info .title a:hover {
    color: #d25400;
}

.education_box .info .desc {
    overflow: hidden;
    font-size: 16px;
    line-height: 25px;
    color: #7e8c8d;
    text-overflow: ellipsis;
}

.education_box .info .desc2 {
    overflow: hidden;
    font-size: 13px;
    line-height: 25px;
    color: #aaadaf;
    text-overflow: ellipsis;
}

.viewprofile .right {
    margin-top: 17px;
    width: 10%;
    float: right;
}

.viewprofile .fa-pencil:before {
    max-width: 100%;
    height: auto;
    width: 38px;
    /* background: #d25400; */
    color: #e98007;
    /* padding-top: 30px; */
    font-size: 26px;
    content: "\f040";
    /* margin-top: 30px; */
    /* padding: 10px; */
    border-radius: 100%;
}

.viewprofile .card {
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 2px 3px rgba(0, 0, 0, .2);
    padding-top: 20px;
    margin: 0px 0 20px 0;
    border-top-width: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 2px;
    -moz-box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.card .card-heading {
    padding: 0 20px;
    margin: 0;
}

.card .card-heading.simple {
    font-size: 20px;
    font-weight: 300;
    color: #777;
    border-bottom: 1px solid #e5e5e5;
}

.card .card-heading.image img {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin-right: 15px;
    vertical-align: top;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.card .card-heading.image .card-heading-header {
    display: inline-block;
    vertical-align: top;
}

.card .card-heading.image .card-heading-header h3 {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    color: #262626;
}

.card .card-heading.image .card-heading-header span {
    font-size: 12px;
    color: #999999;
}

.card .card-body {
    padding: 0 20px;
    margin-top: 20px;
}

.card .card-media {
    padding: 0 20px;
    margin: 0 -14px;
}

.card .card-media img {
    max-width: 100%;
    max-height: 100%;
}

.card .card-actions {
    min-height: 30px;
    padding: 0 20px 20px 20px;
    margin: 20px 0 0 0;
}

.card .card-comments {
    padding: 20px;
    margin: 0;
    background-color: #f8f8f8;
}

.card .card-comments .comments-collapse-toggle {
    padding: 0;
    margin: 0 20px 12px 20px;
}

.card .card-comments .comments-collapse-toggle a,
.card .card-comments .comments-collapse-toggle span {
    padding-right: 5px;
    overflow: hidden;
    font-size: 12px;
    color: #999;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-comments .media-heading {
    font-size: 13px;
    font-weight: bold;
}

.card.people {
    position: relative;
    display: inline-block;
    width: 170px;
    height: 300px;
    padding-top: 0;
    margin-left: 20px;
    overflow: hidden;
    vertical-align: top;
}

.card.people:first-child {
    margin-left: 0;
}

.card.people .card-top {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 170px;
    height: 150px;
    background-color: #ffffff;
}

.card.people .card-top.green {
    background-color: #53a93f;
}

.card.people .card-top.blue {
    background-color: #427fed;
}

.card.people .card-info {
    position: absolute;
    top: 150px;
    display: inline-block;
    width: 100%;
    height: 101px;
    overflow: hidden;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.card.people .card-info .title {
    display: block;
    margin: 8px 14px 0 14px;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    color: #404040;
}

.card.people .card-info .desc {
    display: block;
    margin: 8px 14px 0 14px;
    overflow: hidden;
    font-size: 12px;
    line-height: 16px;
    color: #737373;
    text-overflow: ellipsis;
}

.card.people .card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    line-height: 29px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.card.hovercard {
    position: relative;
    padding-top: 0;
    overflow: hidden;
    text-align: center;
}

.card.hovercard .cardheader {
    background-image: url(../images/viewBg.jpg);
    background-size: cover;
    height: 280px;
}

.card.hovercard .info {
    float: left;
    padding: 4px 8px 10px 38px;
    text-align: left;
}

.card.hovercard .info .title {
    font-weight: 600;
    margin-bottom: 9px;
    font-size: 24px;
    line-height: 1;
    color: #262626;
    vertical-align: middle;
}

.card.hovercard .info .title a {
    color: #2d3e50;
}

.card.hovercard .info .title a:hover {
    color: #d25400;
}

.card.hovercard .info .desc {
    overflow: hidden;
    font-size: 16px;
    line-height: 25px;
    color: #7e8c8d;
    text-overflow: ellipsis;
}

.card.hovercard .info .desc2 {
    overflow: hidden;
    font-size: 13px;
    line-height: 25px;
    color: #aaadaf;
    text-overflow: ellipsis;
}

.card.hovercard .bottom {
    padding-top: 15px;
    margin: 2px 38px 58px 38px;
    margin-bottom: 29px;
    font-size: 15px;
    line-height: 1.5;
    border-top: 1px #cdcfd2 solid;
    color: #2d3e50;
    text-align: justify;
    padding-bottom: 5px;
}

.profileWindow .formlable_name {
    color: #4a4d4e;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    float: left;
    padding: 6px 0 0 0px;
}

.profileWindow input.form-control.formlable_name_textbox {
    color: #7e8c8d !important;
    border: 1px solid #a8b0b1;
    padding: 8px 8px;
    font-size: 14px;
    margin-bottom: 5px;
    border-radius: 0px;
}

.profileWindow .formlable_name_dropdown {
    color: #5e6667 !important;
    border: 1px solid #a8b0b1;
    padding: 10px 8px;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 0px;
}

.profileWindow textarea.form-control.formlable_name_textbox {
    color: #7e8c8d !important;
    border: 1px solid #a8b0b1;
    padding: 8px 8px;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 0px;
    height: 100px;
}

.maintopFrame {
    margin: 40px 0 40px 0px;
}

.no-data {
    padding: 40px;
    background: #fff;
    line-height: 30px;
    width: 55%;
    font-size: 16px;
    text-align: center;
    color: #f44336;
    font-weight: 500;
    margin: 0 auto;
}

.login-mid {
    -webkit-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.58);
    box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.58);
    width: 40%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eaebec;
    border-radius: 1px;
    padding: 15px 20px 10px 20px;
}

.signlsabel_name {
    margin-bottom: 0px;
    color: #242424;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0 5px 0px;
}

.signIn {
    border-radius: 0px;
    height: 45px;
    font-size: 13px;
    border: 1px solid #ced4da !important;
    padding: 10px;
}

.signIn:hover {
    border: 1px solid #938c9c !important;
}

.popupDrop {
    border-radius: 0px;
    height: 48px !important;
    font-size: 13px;
    border: 1px solid #ced4da !important;
    padding: 10px;
}

.popupDrop:hover {
    border: 1px solid #938c9c !important;
}

.signbutton {
    margin-bottom: 10px;
    text-transform: uppercase;
    border-radius: 8px;
    color: #fff!important;
    box-shadow: none;
    text-shadow: none;
    width: 240px;
    height: 42px;
    font-size: 20px;
    border: 1px solid #e98007;
    background-color: #e98007;
    font-weight: 600;
}

.signbutton:hover {
    border: 1px solid #1abc9c;
    background-color: #1abc9c;
}

.btnwrp {
    text-align: center;
    margin: 10px auto 0 auto;
}

.notmembr {
    font-size: 14px;
}

.notmembr a {
    text-decoration: underline !important;
    color: #19bd9b;
}

.signup_b {
    font-weight: 600;
    color: #e98007 !important;
}

p.section-desc {
    font-weight: 400;
    font-family: 'Proxima Nova', Georgia, sans-serif;
    line-height: 22px;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    section,
    .section {
        padding: 10px 0 50px;
    }
    .main-container {
        min-height: auto;
    }
    .login-mid {
        margin-top: 27px;
        width: 100%;
    }
    .main-container2 {
        min-height: 500px;
        height: 100% !important;
        background-size: 100%;
        background-repeat: round;
    }
    .topright li:before {
        top: 3px;
    }
    .teacherDashbord {
        margin-left: 40px;
    }
    nav.navbar.navbar-expand-lg.side {
        right: 7px;
        position: absolute;
        float: right;
        margin-top: -60px;
    }
    div#navbarSupportedContent {
        -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.38)!important;
        -moz-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.38)!important;
        box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.38)!important;
        /* -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75); */
        -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75) !important;
        /* box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75); */
        background: #fff;
    }
    .searchBar {
        padding: 0px 0px !important;
        height: auto !important;
    }
    .latest {
        margin-top: 20px;
    }
    form.recruiter button {
        font-size: 14px !important;
        padding: 13px !important;
    }
    .view-job-wrapper {
        padding: 22px !important;
        width: 96% !important;
    }
    .cdk-overlay-pane {
        width: 100% !important;
    }
    .jobview {
        margin: 2px 0 7px 0px !important;
    }
    .jobadmit {
        margin: 2px 0 5px 0px !important;
    }
    .admitcard {
        width: 90% !important;
    }
    .midPart {
        padding: 4px;
    }
    .table_mobileview {
        width: auto;
        overflow: scroll;
        height: 300px;
    }
    .questionList {
        margin-top: 3px;
    }
    input.form-control.formlable_name_textbox {
        float: left;
        width: 92% !important;
    }
    .formlable_name {
        float: left !important;
    }
    .dontshow {
        display: none !important;
    }
    span.mobileicon {
        display: block !important;
    }
    .fa-user-plus:before {
        font-size: 19px;
    }
    .teachr_results {
        margin-top: 10px !important;
    }
    .no-applied-job-wrapper {
        width: 90%;
    }
    .viewprofile .education_box {
        padding: 10px !important;
    }
    .education_box h2 {
        width: 94% !important;
    }
    .btn {
        padding: 6px 12px !important;
    }
    .no-applied-job-wrapper {
        width: 90% !important;
    }
    .no-data {
        width: 100% !important;
    }
    .tl-topbar {
        padding: 4px 0 6px 0px !important;
    }
    .topright.float-lg-right {
        margin-left: 10px !important;
    }
    .topright ul li ul {
        margin-top: 6px !important;
        left: -46px !important;
    }
    h1.mainHeading {
        margin-top: 22px !important;
    }
    .single-counter-box .counter-icon {
        font-size: 53px !important;
    }
    .single-counter-box .counter-content {
        text-align: left !important;
        padding-top: 0px !important;
        font-size: 26px !important;
    }
    .tl-logo {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    .topright li {
        padding: 0 6px 0 6px !important;
    }
    .card.hovercard .cardheader {
        height: 155px !important;
    }
    .mobilepopup {
        overflow-x: hidden;
        overflow-y: scroll;
        height: 400px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .interview_wrp {
        width: 100% !important;
    }
    .login-mid {
        width: 63%;
    }
    .main-container2 {
        height: 100% !important;
        background-size: 100%;
        background-repeat: round;
    }
    .topright li {
        padding: 0 8px 10px 12px !important;
    }
    nav.navbar.navbar-expand-lg.side {
        margin-top: -47px;
        float: right;
    }
    .latest {
        margin-top: 20px;
    }
}

::ng-deep.modal-backdrop.show {
    opacity: 0.8;
}

::ng-deep.modal {
    top: 50px !important;
}

.text-danger {
    padding-top: 4px;
    font-size: 12px;
}

h5.no-user {
    text-align: center;
    font-size: 15px;
    font-weight: 550;
    padding: 20px 0 0 0px;
}

.tabing .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    font-size: 17px !important;
    font-weight: 550 !important;
    color: #19bd9b !important;
    background-color: #fff !important;
    border-color: #19bd9b #19bd9b #fff !important;
}

.tabing .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #Ffff;
}

.setbtn {
    color: #fff !important;
    background: #e98007;
    margin: 10px 10px 15px 0px;
    padding: 6px 10px;
    border-radius: 3px;
    font-weight: 550;
}

.setbtn:hover {
    background: #19bd9b;
}

.schedule_tittle {
    margin-bottom: 18px;
    font-size: 19px;
    font-weight: 550;
    color: #e98007;
}

label.workflow {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 30px !important;
}

.sn {
    font-size: 13px !important;
    padding-top: 5px;
}

.checkBoxnew {
    margin: 13px 0 0 33px;
}

a.Insave {
    line-height: 22px;
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-decoration: underline !important;
    color: #e98007 !important;
}

.poptxtBox {
    border: 1px solid #c7c5c5;
    margin-bottom: 9px;
    background: #fff;
    border-radius: 2px;
    font-size: 12px;
    padding: 10px 2px 10px 2px;
}

.poptxtBox2 {
    border: 1px solid #c7c5c5;
    background: #fff;
    border-radius: 2px;
    font-size: 14px;
    padding: 10px 2px 10px 5px;
    margin-bottom: 10px;
}

.setbtn2 {
    color: #fff !important;
    background: #19bd9b;
    margin: 10px 10px 15px 0px;
    padding: 6px 10px;
    border-radius: 3px;
    font-weight: 550;
}

.setbtn:hover {
    background: #e98007;
}

span.mobileicon {
    display: none;
}

.txt_inner {
    color: #ffffff;
    font-size: 14px;
    line-height: normal;
}

.txt_inner ul {
    padding-left: 20px;
    margin-bottom: 1px;
}

.txt_inner ul li {
    list-style-type: disc;
    margin-bottom: 9px;
    line-height: 20px;
    border-bottom: 1px dotted #777777;
}

.type {
    margin: 13px 0 0 0px;
    font-style: italic;
    font-size: 13px;
}

.form-control:disabled,
.form-control[readonly] {
    border-radius: 2px !important;
}

.fixPart {
    position: sticky;
    top: 0;
}

.sessionModel .modal-dialog {
    max-width: 70% !important;
}