@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap');

.desc-area1 .detail {
    margin-bottom: 20px;
}

a.btnBack {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #f87062;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    text-decoration: none;
    position: absolute;
    top: 100px;
}

    a.btnBack span {
        text-underline-position: under;
        text-decoration: underline;
        margin-left: 5px;
    }

    a.btnBack:hover {
        color: #080808
    }

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.img-zone {
    background-color: #F2FFF9;
    border: 5px dashed #4cae4c;
    border-radius: 5px;
    padding: 20px;
}

    .img-zone h2 {
        margin-top: 0;
    }

.progress,
#img-preview {
    margin-top: 15px;
}

body{
    color: #555555;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    padding: 0;
    margin: 0;
}
img{
    max-width: 100%;
}
header{
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
    transition:.4s all;
}
.btn{
    padding: 11px 30px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Montserrat',sans-serif;
    border-radius: 6px;
    position:relative;
    overflow:hidden;
    transition: all 150ms ease-in-out;
}
.btn:hover,
.btn:focus{
    outline:0;
}
.btn-primary{
    background-color: #f87062;
    border-color: #f87062;
    box-shadow: 9px 12px 20px rgb(248 112 98 / 26%);
}
.btn-default{
     box-shadow: 9px 12px 20px rgb(0 0 0 / 8%);
     color: #f87062;
     background-color: #fff;
     border-color:#fff;
     transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
/* .btn-default:hover {
      box-shadow: 0 0 40px 40px #f87062 inset;
      color:#fff;
} */
.btn-default:hover,
.btn-primary:hover,
.btn-default:focus,
.btn-primary:focus {
      box-shadow: 0 0 10px 0 #f87062 !important;
      background-color:#fff;
      color:#f87062;
      border-color:#f87062;
      outline:0;
}
.btn-back {
    background-color: #fff;
    width: 46px;
    border:1px solid #fff;
    height: 46px;
    padding: 0;
    line-height: 46px;
    box-shadow: 9px 12px 14px rgb(0 0 0 / 5%);
}
.btn-back:hover {
    box-shadow: 0 0 10px 0 #f87062;
    background-color:#f87062;
    color:#fff;
    border-color:#f87062;
}
header .nav{
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ffd3e5;
}

header.is-sticky{
    background-color:#fff;
    box-shadow:0px 4px 26px rgb(0 0 0 / 6%);
}
header.is-sticky .nav{
    border:0;
}
.nav .header-left{
    margin: auto 0;
}
.nav .header-right{
    margin: auto 0;
}
.nav .header-right .btn{
    margin: 0 5px;
    min-width: 140px;
}
.search-section{
    position: relative;
    padding-top: 90px;
    padding-bottom: 20px;
    background-size: cover;
}
.search-section:before{
    content: '';
    position: absolute;
    left: 0;
    top: 30%;
    width: 90px;
    height: 300px;
    background-image: url(../images/shape1.png);
    background-position: right;
}
.search-section:after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 21px;
    left: 0;
    background-image: url(../images/shape2.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}
.breadcrumb-area{
    position: relative;
    padding-top: 83px;
    padding-bottom: 0px;
    background-size: cover;
    background-position: 10% center;
}
.breadcrumb-area:after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 30px;
    width: 570px;
    background-image: url(../images/shape2-1.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}
.breadcrumb-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0;
}
.breadcrumb-wrap .btn-back{
    position:absolute;
    left:0;
    top: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-content h1{
    font-size: 44px;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
    color: #080808;
    margin:0;
    line-height:68px
}
.breadcrumb-content p{
    font-size:18px;
    color:#8b8b8b;
}
.search-wrapper {
    position: relative;
    width: 54.666667%;
    margin: auto 0;
}

.search-container {
    display: flex;
    position: relative;
    z-index: 1;
}

.search-wrapper .title {
    color: #080808;
    font-size: 58px;
    font-weight: 800;
    line-height: 64px;
    font-family: 'Montserrat',sans-serif;
    margin-bottom: 20px;
}
.search-wrapper .title span{
    display: inline-block;
    position:relative;
    background-color: rgb(248 112 98 / 6%);
    color: #f87062;
    
}
.search-wrapper .title span:before{
    content:'';
    position:absolute;
    left: -10px;
    right: -10px;
    top: -5px;
    bottom: -5px;
    border: 3px solid #f87062;
}
.search-container .figure {
    width: 45%;
    position: relative;
    margin-left: 0;
    margin-right: 0%;
    text-align: right;
}
form.search-form {}
form.search-form input{
    background-image:url(../images/icons/pin-marker.png);
    background-position: 97%;
    background-repeat: no-repeat;
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
    font-size:14px;
    padding: 20px 40px 20px 20px;
    border-radius: 6px;
    color:#b7b7b7;
    width: 100%;
}
form.search-form input:focus{
    outline:0
}
form.search-form input:hover{
    border-color:#f87062
}
form.search-form .btn-primary{
    width: 21%;
    margin-left: auto;
}
.slide-area{
    position: absolute;
    left: -100px;
    top: 0;
    width: 220px;
    background-color: rgb(255 255 255 / 70%);
    padding: 13px;
    border-radius: 6px;
    box-shadow: 12px 20px 28px rgb(0 0 0 / 10%);
}
.slide-area:after{
    content: '';
    position: absolute;
    top: 110%;
    left: 15%;
    height: 65px;
    width: 105px;
    background-image: url(../images/dashed-arrow-left.png);
    background-repeat: no-repeat;
}
.single-slide{
}
.slide-box{
    text-align: left;
}
.slide-box h6{
    font-size: 16px;
    color: #080808;
    font-family: 'Montserrat',sans-serif;
    font-weight: bold;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    flex-grow: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 0 0 5px;
    line-height: 1.4;
}
.slide-box ul{
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
    line-height: 2;
}
.slide-box ul li{
    margin-right: 8px;
    font-size: 12px;
    color: #8f8f8f;
}
.slide-box ul li span{
    margin-left: 5px;
}
.slide-box h4{
    font-size: 14px;
    color: #f87062;
    margin: 0;
    line-height: 1.5;
}
.slide-box h4 smal{
    font-size: 10px;
}
main{
    padding: 60px 0;
}
.section-padding{
    padding: 45px 0;
}
.heading-area{
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10%;
}
.heading-area span{
    display: inline-block;
    background-color: rgb(248 112 98 / 10%);
    color: #f87062;
    letter-spacing: 2.5px;
    padding: 0 30px;
    font-size: 20px;
    margin-bottom: 10px;
    border-radius: 6px;
}
.heading-area h1{
    font-size: 44px;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
    color: #080808;
}
.prectice-place {}
.prectice-place-wrapper {}

.prectice-box {
    display: flex;
}

.prectice-box.top {}

.prectice-box.bottom {}

.prectice-contant {
    width: 58.666667%;
    padding:85px 65px;
    background-color:#fff;
}
.prectice-box.top .prectice-contant{
    background-image:linear-gradient(45deg,#f87062,#f43e88);
    color:#fff;
    padding-right: 18%;
}
.prectice-box.bottom .prectice-contant{
    margin-top:-85px;
    padding-left: 18%;
    color: #080808;
    box-shadow: 9px 12px 20px rgb(213 213 213 / 24%);
}
.prectice-contant h2 {
    font-size:24px;
    font-weight:bold;
    font-family:'Montserrat',sans-serif;
}

.prectice-contant p {}

.prectice-contant .btn {}

.prectice-box .figure {
    width: 41.333333%;
}
.prectice-box .figure img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.explore-listing {}

.explore-listing ul {
    display: flex;
    flex-flow: wrap;
    padding: 0;
    margin: 0;
    justify-content: center;
    list-style: none;
    padding: 0 20px;
}

.explore-listing ul li {
    padding: 15px 30px;
    box-shadow: 9px 12px 20px rgb(213 213 213 / 20%);
    margin: 5px;
    border-radius: 6px;
}

.explore-listing ul li a {
    color: #080808;
    text-decoration: none;
    font-size: 16px;
    font-family:'Montserrat',sans-serif;
    font-weight:600
}

.explore-listing ul li:hover{
    background-color:#f87062;
    box-shadow: 9px 12px 20px rgb(248 112 98 / 24%);
}
.explore-listing ul li:hover a{
    color:#fff;
}
.mobile-app {
    padding: 60px 0;
}
.mobile-app-container{
    background-image: linear-gradient(45deg,#f87062,#f43e88);
    display: flex;
}
.btn-info {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.mobile-buttons {
    display:flex;
    margin:0 -5px;
}

.mobile-buttons .btn-info{
    display:flex;
    width:50%;
    margin:5px;
    padding: 7px 23px;
    text-align: center;
    justify-content: center;
}
.mobile-buttons .btn-info img{
    margin: auto 0;
    margin-right: 10px;
}
.mobile-buttons .btn-info p{
    margin:0;
    font-size:22px;
    text-transform:capitalize;
    font-weight:initial;
    text-align: left;
    line-height: 1.2;
}
.mobile-buttons .btn-info p span{
    display:block;
    font-size: 9px;
    text-transform:uppercase;
}

.mobile-buttons .btn-info:hover{
    background-color:#000;
    border-color:#000;
    color:#fff
}
.mobile-app-container .mobile-figure {
    margin: -74px 0;
    width: 50%;
    /* padding-left: 3.333333%; */
}

.mobile-app-container .mobile-content {
    width: 50%;
    padding: 80px 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-app-container .mobile-content h1{
    font-size: 44px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
}
footer{
    background-image: linear-gradient(360deg, #fff0ef, transparent,transparent);
}
.footer-logo{
    text-align: center;
    margin-bottom: 20px;
}
.footer-menu {
    padding: 10px 0;
}

.footer-menu ul {
    display: flex;
    flex-flow: wrap;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin: 0;
}

.footer-menu ul li {
    position: relative;
}

.footer-menu ul li a {
    text-decoration: none;
    color: #080808;
    font-weight: 500;
    display:block;
    padding: 15px 20px;
}

.footer-menu ul li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;top: 20px;
    bottom: 20px;width: 2px;
    background: #080808;
}
.footer-access {
    border-top: 1px solid #d5d5d5;
    padding: 10px 0;
    border-bottom: 1px solid #d5d5d5;
}

.footer-widgets {
    display: flex;
    height: 100%;
    justify-content: center;
}

.footer-widgets figure {
    margin: auto 0;
    margin-right: 15px;
    min-width: 30px;
}

.footer-widgets .widget-content {margin: auto 0;line-height: 1;}

.footer-widgets .widget-content p {
    margin: 0 0 3px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #080808;
}
.footer-widgets .widget-content a,
.footer-widgets .widget-content h6 {
    margin: 0;
    font-size: 18px;
    text-decoration:none;
    color:#080808;
    font-weight:500;
}
.footer-widgets .widget-content a:hover{
    color:#f87062
}
.social-links {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.social-links a {
    height: 30px;
    display: block;
    line-height: 30px;
    text-align: center;
    width: 30px;
    border: 1px solid #f87062;
    color: #f87062;
    border-radius: 50%;
    margin: 0 5px;
}
.social-links a:hover{
    background-color:#f87062;
    color:#fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #d5d5d5;
}

.footer-bottom p {
    margin: 0;
    font-weight: 500;
}

.footer-bottom p a {
    color: #080808;
    text-decoration: none;
}

.cashier-needed{}
.desc-area{}
.desc-area .heading-area{
    margin-bottom:20px
}
.desc-area .detail{
    text-align:center;
    margin-bottom: 20px;
}
.desc-area .detail p{   
    color: #646464;
    line-height: 26px;
}
.desc-area .detail ul{
    padding: 0;
    list-style: none;
}
.desc-area .detail ul li{
    color: #646464;
    line-height: 26px;
    padding: 0 20px;
    position:relative;
}
.desc-area .detail ul li span{
    display:inline-block;
    position:relative
}
.desc-area .detail ul li span:before{
    content:'';
    position:absolute;
    left: -16px;
    top: 9px;
    height:5px;
    width:5px;
    border-radius:50%;
    background-color:#646464;
}
.map-location iframe{
    width:100%;
    height:400px;
}
.reviews-box{
    position: relative;
}
.reviews-box .btn-primary{
    position:absolute;
    bottom:0;
    right:0;
}
.testimonial-content-carousel{
    padding-bottom: 60px;
}
.testimonial-content{}
.testimonial-content .content-head{
    display: flex;
    justify-content: space-between;
}
.ratings{}
.ratings .fa{
    color: #f87062;
}
.testimonial-content .content-head p{
    font-size: 14px;
    color: #8f8f8f;
}
.testimonial-content .content-head p .fa{
    margin-right: 10px;
}
.testimonial-content .content-head p span{}
.testimonial-content .testimonial-desc{
    color: #646464;
    line-height: 26px;
}
.testimonial-content .testimonial-author{
    color: #000;
    font-weight: bold;
    font-size: 14px;
    line-height: 26px;
}
.testimonial-content-carousel .slick-arrow{
    position: absolute;
    bottom: 0;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 6px;
    padding: 0;
    box-shadow: 9px 12px 14px rgb(0 0 0 / 5%);
}

.testimonial-content-carousel .slick-arrow.slick-prev{}
.testimonial-content-carousel .slick-arrow.slick-next{
    left: 55px;
}
.testimonial-content-carousel .slick-arrow:hover {
    box-shadow: 0 0 10px 0 #f87062;
    background-color:#f87062;
    color:#fff;
    border-color:#f87062;
}
.testimonial-content-carousel .slick-arrow:focus{
    outline:0;
}

.more-jobs{
    padding: 40px 0;
}
.desc-area .heading-area h1,
.more-jobs .heading-area h1{
    font-size:34px;
}
.white-box{
    box-shadow: 0px 12px 27px rgb(213 213 213 / 45%);
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom:20px;
    display: block;
    text-decoration: none;
    min-height: 163px;
}
.more-jobs .box-head{
    display: flex;
    justify-content: space-between;
}
.more-jobs .box-head h6{
    font-size: 22px;
    color: #080808;
    font-family:'Montserrat',sans-serif;
    font-weight:bold;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    flex-grow: 1;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.more-jobs .box-head span{}
.more-jobs .box-head span .fa{
    color: #f87062;
}
.white-box ul{
    list-style: none;
    padding: 0;
    display: flex;
}
.white-box ul li{
    margin-right: 10px;
    font-size: 14px;
    color: #8f8f8f;
}
.white-box ul li span{
    margin-left: 5px;
}
.white-box ul li span .fa{}
.white-box h4{
    font-size: 20px;
    color: #f87062;
    margin: 0;
}
.white-box h4 small{
    font-size: 12px;
}
.white-box:hover{
    background-color:#f87062;
    box-shadow:6px 12px 20px rgb(248 112 98 / .2);
}
.white-box:hover h4,
.white-box:hover li,
.white-box:hover .fa,
.white-box:hover h6,
.white-box:hover .box-head span .fa{
    color:#fff;
}

.load-more{
    text-align: center;
    padding: 10px 0;
}
.load-more a{
    text-decoration: none;
    color: #f87062;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Montserrat',sans-serif;
}
.load-more a:hover{
    text-decoration:underline;
    -webkit-text-underline-position: under;
    -ms-text-underline-position: below;
    text-underline-position: under;
}
.search-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    padding: 20px 0;
}

.search-left {
    width: 60%;
    margin: auto;
    padding-right: 15px;
}

.search-figure {
    width: 40%;
    text-align: right;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.dropdown-toggle::after{
    content: "\f142";
    font: normal normal normal 14px/1 FontAwesome;
    border: 0;
    vertical-align: baseline;
    font-size: 20px;
}
.dropdown {}

.dropdown .dropdown-toggle{
    padding: 10px;
    padding-right: 0;
    overflow: inherit;
}

.dropdown .dropdown-toggle span{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 6px;
    color: #f87062;
    line-height: 40px;
    font-size: 20px;
    box-shadow: 5px 8px 20px rgb(0 0 0 / 8%);
}
.dropdown .dropdown-toggle:focus{
    box-shadow:none
}
.dropdown .dropdown-toggle.show span,
.dropdown .dropdown-toggle:hover span{
    background-color: #f87062;
    border-color: #f87062;
    color:#fff;
    box-shadow: 9px 12px 20px rgb(248 112 98 / 26%);
}
.menu2{
    border: 0;
    padding: 20px;
    min-width: 20em;
}
.menu2 li{
    display: flex;
    padding: 0;
}
.menu2 li:not(:last-child){
    border-bottom:1px solid #d5d5d5
}
.menu2 li a{
    display: flex;
    padding: 11px 0;
    cursor: pointer;
}
.menu2 li a span{
    font-size: 18px;
    font-weight: 600;
    margin: auto 0;
    font-family:'Montserrat',sans-serif
}
.menu2 li a.active,
.menu2 li a:hover{
    background-color:transparent;
    color:#ed1924
}
.menu2 li a figure{
    width: 36px;
    height: 36px;
    background-color: rgb(248 112 98 / 10%);
    border-radius:50%;
    margin:0;
    display: flex;
    margin-right:10px;
    align-items: center;
    justify-content: center;
}
.menu2 li a img{}
.menu2 li a.active img.normal,
.menu2 li a:hover img.normal{
    display:none;
}
.menu2 li a img.hover{
    display:none;
}
.menu2 li a.active img.hover,
.menu2 li a:hover img.hover{
    display:inline-block
}
aside.side-menu {
    background-color: #fff8fb;
}

aside.side-menu .menu2 {
}

.toggle-filter{
    background-color: #f87062;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    color: #fff;
    line-height: 50px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 34px;
    cursor: pointer;
    border: 1px solid #f87062;
}
.toggle-filter:focus,
.toggle-filter:hover{
    box-shadow: 0 0 10px 0 #f87062 !important;
    background-color:#fff;
    color:#f87062;
    border-color:#f87062;
    outline:0;
}
.filter-body {}

.filter-body h4 {
    text-align: center;
}
.filter-form{}
.modal .modal-body .filter-form p{
    margin-bottom: 5px;
    color: #080808;
    font-weight: 600;
}
.filter-form ul{
    display: flex;
    flex-flow: wrap;
    line-height: normal;
    padding: 0;
    list-style: none;
}
.filter-form ul li{
    margin-right: 7px;
    width: 60px;
    margin-bottom: 7px;
}
.filter-form ul li .radiocontainer{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* width: 100%; */
    text-align: center;
    padding: 0px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #080808;
    font-weight: 600;
    width: 100%;
}
.filter-form ul li .radiocontainer input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.filter-form ul li .radiocontainer .radiobtn{
    border-radius: 6px;
    display: table;
    background-color: #f4f4f4;
    color: #878a91;
    padding: 5px 10px;
    font-size: 12px;
    width: 100%;
}
.filter-form ul li .radiocontainer input:checked~.radiobtn {
    background-color: #878a91;
    color: #fff;
    border-color: #878a91;
}
.filter-form ul li .radiocontainer .radiobtn span{}

.apply-button{
    display: flex;
    justify-content: center;
}

.apply-button .btn-primary {
    min-width: 250px;
    margin: 0 10px;
}

.apply-button .btn-back {
    color: #f87062;
}
.apply-button .btn-back:hover{
    color:#fff
}
.apply-button .btn-back:focus{
    box-shadow: 0 0 10px 0 #f87062;
    background-color:#f87062;
    color:#fff;
    border-color:#f87062;
}



/* Modal  */
.modal-backdrop{
    background-color: #fff;
}
.modal{}
.modal .modal-content{
    border: 0;
    box-shadow: 0px 10px 36px rgb(0 0 0 / 10%);
}
.modal .btn-close{
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}
.modal .btn-close:focus{
    outline:0;
    box-shadow:none
}
.modal .modal-body{
    padding: 30px 1rem;
}
.modal .apply-body{
    text-align:center;
    padding: 20px 0 0;
}
.modal .modal-body h4{
    font-size: 22px;
    font-weight: bold;
    font-family: 'Montserrat',sans-serif;
    color: #080808;
}
.modal .modal-body p{
    font-size: 14px;
    color: #8f8f8f;
}
.modal .modal-body .btn-primary{
    width: 100%;
}
.btn-action {
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
}
.modal .modal-body .btn-action .btn{
    width:50%;
    margin: 0 5px;
}
.reviews-body{}
.reviews-body .form-group{}
.rate {
    display: flex;
    padding: 0 10px;
    justify-content: center;
    direction: rtl;
    margin-bottom: 10px;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float:right;
    width: 29px;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
    margin: 0 5px;
}
.rate:not(:checked) > label:before {
    content: "\f006";
    font-family:'FontAwesome';
    display:inline-block;
}
.rate > input:checked ~ label {
    color: #f87062;    
}
.rate > input:checked ~ label:before{
    content:"\f005";
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #f87062;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #f87062;
}
.add-cv{}
.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 0px 0 10px;
}
.uploadDoc {
    position: relative;
}
.modal .modal-body .add-cv p{
    color:#f87062;
}
.docErr{
    position: absolute;
    right: auto;
    left: 10px;
    top: -56px;
    padding: 10px;
    font-size: 15px;
    background-color: #fff;
    color: red;
    box-shadow: 0px 0px 7px 2px rgb(0 0 0 / 20%);
    display: none;
}
.it .btn-orange {
    background-color: transparent;
    border: 1px dashed #8f8f8f;
    color: #8f8f8f;
    text-align: center;
    width: 100%;
    text-transform: capitalize;
    font-weight: normal;
    font-family: 'Roboto';
}
.it .btn-orange img {
    width: 30px;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    bottom: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.price-range-wrap {
    padding-top: 8px;
}

.price-range-wrap .price-range {
    border-radius: 0;
    margin-right: 13px;
    margin-bottom: 20px;
}
.price-range-wrap .price-range.ui-widget-content {
    border: none;
    background: #eeeeee;
    height: 8px;
    border-radius: 20px;
}
.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
    background-color: #f87062;
    border-radius: 0;
}
.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    border: none;
    background-color: #fff;
    height: 16px;
    width: 16px;
    outline: none;
    cursor: ew-resize;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
}
.price-range-wrap .price-range.ui-widget-content .ui-slider-handle:before {
    top: 50%;
    left: 50%;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: #f87062;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.price-range-wrap .range-slider {
    color: #222222;
    margin-top: 10px;
}
.price-range-wrap .range-slider .price-input {
    text-align: center;
}
.price-range-wrap .range-slider .price-input label {
    color: #848484;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    font-size: 14px;
    top: 0;
    line-height: 25px;
    margin-right: 10px;
}
.price-range-wrap .range-slider .price-input input {
    color: #555555;
    border: none;
    outline: none;
    pointer-events: none;
    max-width: 80px;
}

/*  end Modal  */


h3.title{
    font-size: 26px;
    font-weight: bold;
    font-family: 'Montserrat',sans-serif;
    margin-bottom: 20px;
    color: #080808;
}
.go-seek-tabs .nav-tabs{
    border-bottom-color: #ffdedb;
}

.go-seek-tabs .nav-tabs .nav-link{
    margin: 0;
    font-family: 'Montserrat',sans-serif;
    font-size: 20px;
    color: #080808;
    font-weight: bold;
    position: relative;
    background-color: #fff;
    border: 0;
    padding: 0px 10px 10px 0;
    margin-right: 30px;
}
.go-seek-tabs .nav-tabs .nav-link:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -2px;
    height: 4px;
    background-color: transparent;
}

.go-seek-tabs .nav-tabs .nav-item.show .nav-link, 
.go-seek-tabs .nav-tabs .nav-link.active,
.go-seek-tabs .nav-tabs .nav-link:hover{
    color: #f87062;
}
.go-seek-tabs .nav-tabs .nav-link.active:after{
    background-color: #f87062;
}
.go-seek-tabs .nav-tabs .nav-link:focus{
    outline:0;
}
.go-seek-tabs .tab-content {
    padding: 10px 0 0;
}
.my-job-listing {
    list-style: none;
    padding: 0;
}

.my-job-listing .single-job {
    margin-bottom: 0px;
    padding: 10px 0;
}
.my-job-listing .single-job:not(:last-child){
    border-bottom:1px solid #ffdedb;
}
.my-job-listing .single-job a {
    text-decoration: none;
}
.my-job-listing .single-job a .box-head {
    display: flex;
    justify-content: space-between;
}

.my-job-listing .single-job a h6 {
    font-size: 22px;
    color: #080808;
    font-family: 'Montserrat',sans-serif;
    font-weight: bold;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    flex-grow: 1;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.my-job-listing .single-job a .box-head span {
    color: #f87062;
}

.my-job-listing .single-job a ul {
    padding: 0;
    display: flex;
    list-style: none;
    margin-bottom: 10px;
}

.my-job-listing .single-job a ul li {
    margin-right: 10px;
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 0;
}

.my-job-listing .single-job a li span {
    margin-left: 5px;
}

.my-job-listing .single-job a h4.price {
    font-size: 20px;
    color: #f87062;
    margin: 0;
}

.my-job-listing .single-job a h4.price small {
    font-size: 12px;
}

.my-jobs-wrapper {}


/*  Upload  */

.uploader {
  display: block;
  clear: both;
  margin: 0 auto;
  width: 100%;
}
.uploader label {
  clear: both;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: center;
  background: #fff8fb;
  border-radius: 9px;
  border: 2px dashed #ffd3e5;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.uploader label:hover {
  border-color: #f44483;
}
.uploader label.hover {
  border: 3px solid #454cad;
  box-shadow: inset 0 0 0 6px #eee;
}
.uploader label.hover #start i.fa {
  transform: scale(0.8);
  opacity: 0.3;
}
.uploader #start {
  float: left;
  clear: both;
  width: 100%;
}
.upload-btn {
    text-align: center;
}
.upload-btn .btn{
    padding: 4px 60px;
}
.uploader #start.hidden {
  display: none;
}
.uploader #start i.fa {
  font-size: 40px;
  margin-bottom: .2rem;
  transition: all 0.2s ease-in-out;
  color: #f87062;
}
.uploader #response {display: flex;padding: 7px 20px;box-shadow: 10px 12px 30px rgb(0 0 0 / 10%);border-radius: 8px;margin: 20px 0;}
.uploader #response.hidden {
  display: none;
}
.uploader #response #messages {
  margin-bottom: 0;
  color: #080808;
}
.file-text {
    text-align: center;
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 0;
}
.uploader #file-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  background-color: #fff8fb;
  color: #f87062;
  flex: 0 0 40px;
  margin-right: 20px;
}
.progress-container {
    width: -webkit-fill-available;
}

button.btn.close-btn {
    font-size: 30px;
    width: auto;
    margin: auto 0;
    margin-left: 30px;
    padding: 0;
}
.uploader #file-image.hidden {
  display: none;
}
.uploader #notimage {
  display: block;
  color: #f87062;
}
.uploader #notimage.hidden {
  display: none;
}
.upload-container progress,
.upload-container .progress {
  display: inline;
  clear: both;
  margin: 0 auto;
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 4px;
  background-color: #fef7fa;
  overflow: hidden;
}
.upload-container .progress[value]::-webkit-progress-bar {
  border-radius: 4px;
  background-color: #fff8fb;
}
.upload-container .progress[value]::-webkit-progress-value {
  background: #f87062;
  border-radius: 4px;
}
.upload-container .progress[value]::-moz-progress-bar {
  background: #f76868;
  border-radius: 4px;
}
.uploader input[type=file] {
  display: none;
}
.uploader .text {
  margin: 0 0 0.2rem 0;
  color: #f87062;
}
.uploader .btn {
  display: inline-block;
  margin: 0.5rem 0.5rem 0.5rem 0.5rem;
  font-size: 14px;
  border: none;
  outline: none;
  padding: 0 1rem;
  line-height: 36px;
  transition: all 0.2s ease-in-out;
}
.upload-btn .btn{
    padding:3px 60px
}


.avatar-upload {
  position: relative;
  max-width: 158px;
  margin: 0 auto 20px;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: 'FontAwesome';
  color: #757575;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.avatar-upload .avatar-preview {
  width: 130px;
  height: 130px;
  position: relative;
  border-radius: 100%;
  box-shadow: 10px 6px 24px rgb(0 0 0 / 10%);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* end Upload  */
hr.hr2 {
    height: 4px;
    background-color: #f3f3f3;
    opacity: 1;
}
.form-group{
    margin-bottom: 20px;
    height: 100%;
    position: relative;
}
.form-group label{
    color:#848484;
    line-height: 22px;
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 3px;
    transition: all .2s;
    text-transform: capitalize;
    font-weight:500;
}
.form-group.phone-No {
}
.countryCode {
    width: 50px;
}
.form-group span{
    text-align:right;
    display:block;
    color:#f87062;
    padding:5px 0;
}
.input-field {margin-top: 20px;}
.form-group.phone-No label {
    left: 85px;
}
.focus label{
    top:-20px;
}
.country-phone-input {
    position: relative;
}
.country-phone-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;    
    border-bottom: 1px solid #d5d5d5;
}
.countryCode input,
.form-control{
    border: 0;
    border-bottom: 1px solid #d5d5d5;
    border-radius: 0;
    padding: 0px 0 7px;
    color: #080808;
    font-weight: 600;
}
.form-group .d-flex{
    margin: 0 -5px;
}
.form-group .d-flex .form-control{
    margin:0 5px;
}
.form-group .d-flex .form-control:nth-child(1){
    width:50px
}
.form-control:focus{
    outline:0;
    box-shadow:none;
    color: #080808;
    font-weight:600
}
.form-control:hover{
    border-bottom-color:#f87062
}
.form-group .btn-primary{
    width:100%;
    padding: 14px;
}
.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
.custom-checkbox.custom-control, .custom-radio.custom-control {
    min-height: auto;
}
.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.custom-checkbox input, .custom-checkbox .custom-control-input, .custom-radio input, .custom-radio .custom-control-input {
    outline: none;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}
.custom-checkbox label, 
.custom-checkbox .custom-control-label, 
.custom-radio label, 
.custom-radio .custom-control-label {
    font-size: 14px;
    line-height: 1;
    padding-left: 10px;
    font-weight: 400;
    display: block;
    cursor: pointer;
    position: unset;
    left: auto;
    top: auto;
    color:#848484;
    font-weight:500;
}
.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}
.custom-control-label::before, .custom-file-label, .custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.custom-checkbox label:before, 
.custom-checkbox .custom-control-label:before {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 0;
    height: 18px;
    top: -2px;
    width: 18px;
    border-radius: 4px;
}
.custom-radio label:before, 
.custom-radio .custom-control-label:before {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 0;
    height: 18px;
    top: -2px;
    width: 18px;
    border-radius: 50%;
}
.custom-checkbox input:checked ~ .custom-control-label:before, 
.custom-checkbox input:checked label:before, 
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before, 
.custom-checkbox .custom-control-input:checked label:before {
    background-color: #f87062;
    border-color: #f87062;
    color:#fff;
} 
.custom-radio input:checked ~ .custom-control-label:before, 
.custom-radio .custom-control-input:checked label:before {
    background-color: #ffffff;
    border-color: #f87062;
    color:#fff;
}
.custom-radio input:checked ~ .custom-control-label, 
.custom-radio .custom-control-input:checked label{
    color:#f87062;
}
.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 18px;
    height: 18px;
    content: "";
    background: no-repeat 50%/50% 50%;
}
.custom-checkbox label:after, .custom-checkbox .custom-control-label:after, .custom-radio label:after, .custom-radio .custom-control-label:after {
    background-size: 10px 10px;
    height: 18px;
    top: -2px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23f87062'/%3e%3c/svg%3e");
}

.fixes-filter {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 14px rgb(0 0 0 / 8%);
    z-index: 6;
}

/* Register  */
.option-wrapper {
    background-color: #fff;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.option-wrapper .option-left {
    width: 50%;
    background-image: url(../images/bg-1.png);
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}

.option-wrapper .option-left img {}

.option-wrapper .option-right {
    width: 50%;
    padding: 90px 30px;
    text-align: center;
    display: flex;
    margin: auto;
}

.option-wrapper .option-child {}

.option-wrapper p {}

.option-wrapper .btn {
    width: 100%;
    margin: 5px 0;
}



.register-container{
    position:relative;
    background-image:url(../images/register-bg.png);
    background-position:bottom;
    height: 100vh;
}
.register-container main{
    padding:80px 0 30px
}
.register-container:before,
.register-container:after{
    position:absolute;
    content:'';
}
.register-container:before{
    top:0;
    right:0;
    width:458px;
    height:406px;
    background-image:url(../images/shape2-2.png);
    background-position: left bottom;
}

.register-container:after{
    bottom:0;
    left:0;
    width: 190px;
    height: 170px;
    background-image:url(../images/shape1.png);
    background-position:top right;
}
header.register {
    padding: 10px;
    text-align: center;
}

section.register-wrapper {position: relative;z-index: 1;}

.register-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 120px);
    width: 100%;
}
.register-box .form-header {
    margin-bottom: 30px;
}
.register-box form {
    padding: 30px;
    box-shadow: 9px 12px 28px rgb(0 0 0 / 10%);
    border-radius: 8px;
    position: relative;
    background-color: #fff;
    width: 100%;
}
.register-box form .form-group:nth-last-child(1){
    margin-bottom:0;
}
.register-box .form-control{
    background-repeat:no-repeat;
    background-position:right;
    padding-right:20px;
}
.register-box .form-control.user{
    background-image: url(../images/icons/user-3.png);
}
.register-box .form-control.email{
    background-image: url(../images/icons/email-1.png);
}
.register-box .form-control.password{
    background-image: url(../images/icons/padlock.png);
}
.register-box .form-control.phone{
    background-image: url(../images/icons/telephone.png);
}
.register-box form h1 {
    text-align: center;
    font-size: 28px;
    color: #080808;
    font-weight: bold;
    font-family: 'Montserrat';
}

.register-box form h2 {
    text-align: center;
    font-size: 26px;
    color: #080808;
    font-weight: bold;
    font-family: 'Montserrat';
}

.register-box form p {
    text-align: center;
    color: #080808;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.register-box form p a {
    color: #080808;
    text-decoration: none;
    font-weight: bold;
}
.register-box form p a:hover{
    color:#f87062
}
.user-modal-body {}
.user-modal-body h4{
    text-align:center;l
}
.user-modal-body ul{
    list-style:none;
    padding:0;
    margin:0;
}
.user-modal-body ul li{
    margin:10px 0;
    padding: 15px 20px;
    background-color:#fff8fb;
    border-radius: 7px;
}
.user-modal-body ul li .custom-control-label{
    color:#080808;
    text-transform:uppercase;
    font-family: 'Montserrat';
    font-weight: bold;
}
.user-modal-body ul li .custom-radio label:before, 
.user-modal-body ul li .custom-radio .custom-control-label:before{
    border-color:#f87062
}
.varify-box {
    padding: 30px;
    box-shadow: 9px 12px 28px rgb(0 0 0 / 10%);
    border-radius: 8px;
    position: relative;
    background-color: #fff;
    max-width: 500px;
    text-align: center;
}

.varify-box h4 {
    font-size: 22px;
    color: #080808;
    font-family: 'Montserrat';
    font-weight: bold;
}

.varify-box p {
    font-size: 14px;
    color:#848484;
    line-height:22px;
}

.varify-box .varify-code {
    margin: 10px 0;
    display:flex;
    justify-content:center;
}

.varify-box .varify-code input {
    width: 64px;
    height: 64px;
    border-radius: 7px;
    background-color: #fff9f8;
    margin: 5px;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    border: 1px solid #f87062;
    font-weight: bold;
}
.varify-box .varify-code input:focus{
    outline:none;
    box-shadow: 4px 12px 20px rgb(248 112 98 / 26%);
}
.varify-box .btn-primary{
    width:100%;
}


/* end Register  */


/* Employeer Jobs  */


.company-media {
    display: flex;
    padding: 20px 20px 0;
}

.company-media figure {
    height: 100px;
    width: 100px;
    flex: 0 0 auto;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}

.company-media figure img {}

.company-media .author {
    margin: auto;
    margin-left: 15px;
}

.company-media h4 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'MONTSERRAT';
    line-height: 24px;
}

.company-media .rating {
    display: flex;
}

.stars {}

.stars .fa {
    color: #dddcdd;
}
.stars .fa.checked {
    color: #f87062;
}
.rating span {
    color: #080808;
    font-weight: 500;
    margin-left: 10px;
}


.employeer-jobs-wrapper {}

.employeer-jobs-wrapper .single-job{
    box-shadow: 5px 8px 20px rgb(0 0 0 / 8%);
    padding: 20px;
    margin-bottom: 30px;
}
.employeer-jobs-wrapper .single-job h6 a{
    text-decoration:none;
    color:#080808;
    font-size:22px;
    font-weight:bold;
    font-family:'Montserrat';
    line-height:30px;
    cursor: pointer;
}
.employeer-jobs-wrapper .single-job h6 a:hover{
    color:#f87062
}
.employeer-jobs-wrapper .single-job .box-head {
    display: flex;
    margin-bottom: 10px;
}

.employeer-jobs-wrapper .single-job .dropdown {
    margin: auto 0;
    margin-left: auto;
}

.employeer-jobs-wrapper .single-job .box-head .dropdown .dropdown-toggle {
    background-color: #fff;
    border: 0;
    padding: 0;
}
.employeer-jobs-wrapper .single-job .box-head .dropdown .dropdown-toggle:focus{
    outline:none
}
.job-menu{
    border: 0;
    padding: 10px 20px;
    min-width: 10em;
    box-shadow: 5px 8px 20px rgb(0 0 0 / 8%);
}
.job-menu li{
    display: flex;
    padding: 0;
}
.job-menu li:not(:last-child){
    border-bottom:1px solid #d5d5d5
}
.job-menu li a{
    display: flex;
    padding: 8px 0;
}
.job-menu li a span{
    font-size: 14px;
    font-weight: 600;
    margin: auto 0;
    font-family:'Montserrat',sans-serif
}
.job-menu li a:hover{
    background-color:#fff;
    color:#f87062
}
.status-box {
    background-color: #f7f7f7;
    padding: 3px 20px;
    border-radius: 45px;
    color: #b0b0b0;
    font-weight: 500;
    display: inline-block;
}
.status-box span{
    display:inline-block;
    height:10px;
    width:10px;
    border-radius:50%;
    margin-right: 5px;
    background-color: #b0b0b0;
}
.status-box.active{
    background-color:#eef9f2;
    color:#56c07f;
}

.status-box.active span{
    background-color:#56c07f
}
.status-box.pause{
    background-color:#fef6eb;
    color:#f1a73e;
}

.status-box.pause span{
    background-color:#f1a73e
}

.employeer-jobs-wrapper .single-job ul.list-2 {
    padding: 0;
    display: flex;
    list-style: none;
    margin-bottom: 10px;
}
.employeer-jobs-wrapper .single-job ul.list-2 li {
    margin-right: 10px;
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 0;
}
.employeer-jobs-wrapper .single-job ul.list-2 li span {
    margin-left: 5px;
}

.job-detail-section {
    position: relative;
}

.job-detail-section .btn-back {
    position: absolute;
    left: 0;
}
.job-detail-content{
    text-align: center;
}
.job-detail-content .breadcrumb-content {
    margin-bottom: 40px;
}
.job-detail-content{
    line-height:28px;
    font-size:16px;
}
.job-detail-content h2{
    font-size:34px;
    font-weight:bold;
    color:#080808;
    font-family:'Montserrat';
}

.job-seeker{
    padding-top: 40px;
}
.job-seeker .single-job{
    box-shadow: 9px 12px 28px rgb(0 0 0 / 10%);
    text-align: left;
    padding: 30px 20px;
    border-left: 4px solid #ff0000;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    display: flex;
    margin-bottom: 30px;
}
.job-seeker .single-job.joined{
    border-color:#f43d7e;
}

.job-seeker .single-job.confirm{
    border-color:#91d92a;
}

.job-seeker .single-job.pending{
    border-color:#ffe400;
}
.job-seeker .single-job .job-left{}
.job-seeker .single-job .job-left h6 a{
    font-size: 22px;
    text-decoration: none;
    color: #080808;
    font-weight: bold;
    font-family: 'Montserrat';
}
.job-seeker .single-job .job-left h6 a:hover{
    color:#f87062
}
.job-seeker .single-job .job-left p{
    margin-right: 10px;
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 0;
}
.job-seeker .single-job .job-left p span{
    margin-left:5px;
}
.job-seeker .single-job .job-right{
    margin-left: auto;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #fef0ef;
    color: #f87062;
    line-height: 40px;
    text-align: center;
}

.seeker-profile {
    justify-content: center;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.seeker-profile figure {
    border: 4px solid #ff0000;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    overflow: hidden;
    margin: auto 20px;
    margin-bottom: 20px;
}

.seeker-profile figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.seeker-profile .author {
    margin: auto 0;
}

.seeker-profile h4 {
    color: #080808;
    font-weight: bold;
    font-size: 22px;
    font-family: 'Montserrat';
    margin-bottom: 3px;
}

.seeker-profile p {
    font-weight: 500;
    font-size: 18px;
    color: #8b8b8b;
    line-height: 25px;
    margin-bottom: 10px;
}

.seeker-profile ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.seeker-profile ul li {
    padding: 5px;
}

.seeker-profile ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    border-radius: 7px;
    box-shadow: 5px 8px 20px rgb(0 0 0 / 8%);
}
.seeker-profile ul a:hover{
    background-color:#f87062;
    box-shadow: 9px 12px 20px rgb(248 112 98 / 26%);
}
.seeker-profile ul a:hover img.normal {
    display: none;
}

.seeker-profile ul a img.hover {
    display: none;
}

.seeker-profile ul a:hover img.hover {
    display: inline-block;
}
.label-modal-arapper {
    text-align: center;
}

.label-modal-arapper ul.user-modal-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.label-modal-arapper ul li {
    margin: 0 5px;
    height: 30px;
}
.label-modal-arapper ul li .custom-radio label:before, 
.label-modal-arapper ul li .custom-radio .custom-control-label:before{
    height: 30px;
    width: 30px;
}
.custom-radio.joined-radio .custom-control-label:before{
    background-color: #f43d7e;
    border-color: #f43d7e;
}
.custom-radio.pending-radio .custom-control-label:before{
    background-color: #ffe400;
    border-color: #ffe400;
}
.custom-radio.confirm-radio .custom-control-label:before{
    background-color: #91d92a;
    border-color: #91d92a;
}
.custom-radio.reject-radio .custom-control-label:before{
    background-color: #ff0000;
    border-color: #ff0000;
}
.custom-radio.joined-radio input:checked ~ .custom-control-label:before, 
.custom-radio.joined-radio .custom-control-input:checked label:before {
    background-color: #f43d7e;
    border-color: #f43d7e;
    color:#fff;
}
.custom-radio.pending-radio input:checked ~ .custom-control-label:before, 
.custom-radio.pending-radio .custom-control-input:checked label:before {
    background-color: #ffe400;
    border-color: #ffe400;
    color:#fff;
}
.custom-radio.confirm-radio input:checked ~ .custom-control-label:before, 
.custom-radio.confirm-radio .custom-control-input:checked label:before {
    background-color: #91d92a;
    border-color: #91d92a;
    color:#fff;
}
.custom-radio.reject-radio input:checked ~ .custom-control-label:before, 
.custom-radio.reject-radio .custom-control-input:checked label:before {
    background-color: #ff0000;
    border-color: #ff0000;
    color:#fff;
}

.custom-radio.joined-radio .custom-control-input:checked~.custom-control-label::after {
    background-image:none
}

.custom-radio.pending-radio .custom-control-input:checked~.custom-control-label::after {
    background-image:none
}

.custom-radio.confirm-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image:none
}
.label-modal-arapper ul li .custom-checkbox label:after, 
.label-modal-arapper ul li .custom-checkbox .custom-control-label:after, 
.label-modal-arapper ul li .custom-radio label:after, 
.label-modal-arapper ul li .custom-radio .custom-control-label:after{
    height: 40px;
    width: 40px;
}
.label-modal-arapper ul li .custom-radio .custom-control-input:checked ~ .custom-control-label::after{
    background-image:none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    top: -7px;
    left: -5px;
}
.label-modal-arapper ul li .custom-radio.reject-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: rgb(255 0 0 / 16%);
}

.label-modal-arapper ul li .custom-radio.pending-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: rgb(255 228 0 / 16%);
}

.label-modal-arapper ul li .custom-radio.confirm-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: rgb(145 217 42 / 16%);
}

.label-modal-arapper ul li .custom-radio.joined-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: rgb(244 61 126 / 16%);
}

.job-detail-content object {
    width: 100%;
    height: 400px;
}

.reviews-wrapper {
    box-shadow: 9px 12px 28px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: 7px;
}

.review-header p {
    margin-right: 10px;
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 0;
    margin-left: auto;
}

.review-header {
    display: flex;
    margin-bottom: 10px;
}

.review-header p span {
    margin-left: 5px;
}

.single-review {
    padding: 10px 0;
}
.single-review:not(:last-child){
    border-bottom: 1px solid #d5d5d5;    
}
.single-review h5{
    font-size:14px;
    color:#080808;
    font-weight: bold;
    font-family: 'Montserrat';
}

.review-desc {
    color: #646464;
    font-size: 16px;
}

.review-desc p {
    color: #646464;
    font-size: 16px;
}
.company-location {
    box-shadow: 9px 12px 28px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: 7px;
}

.single-location {
    margin-bottom: 10px;
}

.single-location .location-header {
    display: flex;
}

.single-location .location-header p {
    color: #080808;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.single-location .location-header img {
    margin-right: 10px;
}

.single-location .location-header .dropdown {
    margin: auto 0;
    margin-left: auto;
}

.single-location .location-header .dropdown .dropdown-toggle {
    background-color: #fff;
    border: 0;
    padding: 0;
    width: 20px;
    text-align: right;
}
.single-location .location-header .dropdown .dropdown-toggle:focus{
    outline:none
}
.single-location .desc {
    font-size: 16px;
    margin-bottom: 10px;
}

.single-location iframe {
    width: 100%;
    height: 150px;
    border-radius: 7px;
}
form.location-search {}

.search-input {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.search-input input{
    border: 0;
    background-color: #f7f7f7;
    height: 50px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
}
.search-input input::placeholder{
    color:#b7b7b7;
}
.search-input input:focus{
    outline:none;
    box-shadow:9px 12px 28px rgb(0 0 0 / 10%);
    background-color:#fff
}

form.location-search .search-input span{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#b7b7b7;
}
form.location-search .btn-primary{
    padding:10px;
    width:50px;
    height:50px;
    margin-left: 10px;
    flex: 0 0 auto;
}
.googlemap {
    height:300px;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:20px
}

.googlemap iframe{
    width:100%;
    height:100%;
}

.edit-location h4{
    font-size: 16px;
    font-weight: bold;
    font-family: 'Montserrat',sans-serif;
    margin-bottom: 20px;
    color: #080808;
}

.edit-location {}

.edit-location .btn{
    width: 50%;
    margin: 0 5px;
}
.confirm-modal {}

.confirm-modal .modal-content {
    background-image: url(../images/bg-2-1.png);
    background-position: top center;
}

.confirm-modal .modal-content .confirm-body {
    padding: 200px 20px 60px;
    text-align: center;
}

.confirm-modal h2 {
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    font-family: 'Montserrat';
    margin-bottom: 20px;
}

.confirm-modal .modal-content .btn-default {
    width: 100%;
    color: #080808;
}
.confirm-modal .modal-content .btn-default:hover{
    background-color:#f87062;
    color:#fff;
}
/* end Employeer Jobs  */



@media screen and (min-width: 768px){
    .modal .modal-dialog{
        min-width: 420px;
    }
    .my-jobs-wrapper {
        padding: 30px;
        box-shadow: 10px 12px 30px rgb(0 0 0 / 10%);
        border-radius: 6px;
    }
    .register-box form{
        max-width: 500px;
    }
}
@media screen and (min-width: 992px){    
    form.search-form {
        display: flex;
        background-color: #fff;
        padding: 10px;
        border-radius: 6px;
    }   
    form.search-form .input-text{
        width: 77%;
    }
}
@media (min-width: 1400px){
    .mobile-app-container .mobile-figure{
        width: 58.3333333333%;
    }
    .mobile-app-container .mobile-content{
        width: 41.6666666667%;
        padding: 0;
        padding-right: 6%;
    }
    .search-container .figure{
        width: 50%;
        margin-left: -4.333333%;
    }
    .slide-area{
        left: -40px;
    }
    .search-wrapper .title{
        font-size:62px;
    }
    .heading-area{
        padding:0 14%;
    }
}
@media screen and (max-width: 1399px){
    .search-container .figure img{
        width:80%
    }
}
@media screen and (max-width: 991px){
    form.search-form .input-text{
        background-color: #fff;
        padding: 10px;
        border-radius: 6px;
    }
    form.search-form input{
        padding: 10px 40px 10px 15px;
    }
    form.search-form .btn-primary{
        width:100%;
        margin-top:10px
    }
    .search-section:after{
        left:40%;
        background-position: 60px 0%;
        height: 400px;
        background-size: contain;
    }
    .heading-area{
        padding:0;
    }
    .heading-area h1{
        font-size:32px;
    }
    .prectice-box{
        flex-flow:wrap
    }
    .prectice-box.bottom{
        flex-flow:wrap-reverse;
    }
    .prectice-box .prectice-contant{
        width:100%;
        padding:40px 20px;
        text-align:center;
    }
    .prectice-box .prectice-contant .btn{
        width:100%
    }
    .prectice-box .figure{
        width:100%;
    }
    .prectice-box.top .prectice-contant,
    .prectice-box.bottom .prectice-contant{
        margin:0;
        padding:40px 20px;
    }
    .mobile-app-container{
        flex-flow:wrap-reverse
    }
    .mobile-app-container .mobile-figure{
        width:100%;
        margin-top: 0;
        padding: 0;
    }
    .mobile-app-container .mobile-content{
        width:100%;
        margin:0;
        padding: 40px 20px;
    }
    .mobile-app-container .mobile-content h1{
        font-size:32px;
    }
    .mobile-buttons .btn-info p{
        font-size: 16px;
    }
    .mobile-buttons .btn-info p span{
        font-size: 8px;
    }
    .mobile-buttons .btn-info{
        padding:7px 15px;
        width: 100%;
    }
}
@media screen and (max-width: 767px){
    .breadcrumb-area{
        padding-top: 60px;
    }
    .menu2{
        min-width:10em
    }
    aside.side-menu{
        display: none;
    }
    .slide-area{
        left:auto;
        right:0;
    }
    .slide-area:after{
        background-image: url(../images/dashed-arrow-right.png);
        left: 37%;
    }
    .nav .header-left{
        width: 30%;
        margin: auto 0;
    }
    .dropdown .dropdown-toggle{
        padding-top: 0;
        padding-bottom: 0px;
    }
    .dropdown .dropdown-toggle span{
        height: 35px;
        width: 35px;
        line-height: 35px;
    }
    header .btn{
        padding: 7px 10px;
        font-size: 12px;
    }
    .search-container{
        flex-flow: wrap;
    }
    .search-wrapper{
        width: 100%;
    }
    .search-wrapper .title{
        font-size: 38px;
        line-height: 48px;
        text-align: center;
    }
    .search-container .figure{
        width: 100%;
        margin: 0;
        margin-top: 20px;
        padding: 95px 0px 0;
        text-align: left;
    }
    .search-container .figure img{         
        max-width: 80%;
    }
    .search-wrapper form{}
    
    .breadcrumb-area:after{      
        width: 80%;
        background-position: top left;
    }
    .explore-listing ul{
        padding:0;
    }
    .explore-listing ul li{
        padding:7px 15px
    }
    .footer-widgets{
        padding: 10px 0;
        justify-content: left;
    }
    .social-links{
        justify-content:left
    }
    .social-links a{
        margin-left:0;
        margin-right:10px
    }
    .footer-menu ul li:not(:last-child):after{
        top: 11px;
        height: 10px;
    }
    .footer-menu ul li a{
        padding: 4px 20px;
    }
    .footer-widgets .widget-content p{
        font-size:12px
    }
    .footer-widgets .widget-content a, .footer-widgets .widget-content h6{
        font-size:16px;
        word-break: break-word;
    }
    .footer-bottom{
        flex-flow:wrap;
        justify-content:center;
    }
    .search-wrap{
        flex-flow:wrap-reverse
    }
    .search-left{
        width:100%;
        text-align:center;
        padding: 0;
    }
    .search-figure{
        width:100%;
        padding:0;
        padding-top:20px;
        justify-content:center;
        display: none;
    }
    .breadcrumb-area h1{
        font-size:32px;
    }
    .search-figure img{
        max-width:300px;
    }
    .mobile-buttons{
        flex-flow:wrap;
    }
    .breadcrumb-wrap .btn-back{
        top:0;
    }
    .nav .header-right .btn{
        margin: 0;
        min-width: auto;
    }
    .varify-box .varify-code input{
        width:50px;
        height:50px;
    }
    .seeker-profile{
        flex-flow:wrap
    }
    .job-detail-content .breadcrumb-content h1{
        font-size: 28px;
    }
    .job-detail-content h2{
        font-size: 24px;
    }
    .job-detail-content p{
        font-size: 14px;
        line-height: 22px;
    }
    .googlemap{
        height:180px;
    }
}