
@font-face {
    font-family: lato;
    src: url(../Lato/lato-regular-webfont.woff);
}

@font-face {
    font-family: latobold;
    src: url(../Lato/lato-bold-webfont.woff);
}

html, body {
    font-family: lato,sans-serif;
    margin: 0px;
    padding: 0px;
}
/* popup */
.popup-content {
    z-index: 555;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 300px;
    padding: 10px 0px;
    transform: translate(-50%,-50%);
    width: 500px;
    visibility: hidden;
    background-color: #fff;
    border-radius: 14px;
}

.popup-overlay.active{
background-color: #6A6A6A;
position:fixed;
top:0px;
width: 100%;
height: 100%;
opacity: 1;
z-index: 2;
}

.popup-content.active {
visibility:visible;
}

.popup-header {
    color: #000000;
    font-family: latobold,sans-serif;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #bebebe;
    word-spacing: 2px;
    font-size: 18px;
}
.close{
    height: 20px;
    width: 20px;
}
.close img{
    max-height: 100%;
    max-width: 100%;
}
.popup-header,.popup-box{
    padding: 20px 30px;
}

.salary-label {
    font-family: latobold,sans-serif;
    display: block;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    margin: 5px 0px;
}
.select-salary {
width: 100%; 
padding: 10px 10px;
border: 1px solid #bebebe;
color: #6A6A6A;
border-radius: 5px;
}
p.note{
margin: 20px 0px;
font-size: 14px;
color: #6A6A6A;
font-style: italic;
}
.continue{
    padding: 10px 20px;
    background-color: #832625;
    color: #fff;
    border: none;
    width: 80%;
    font-size: 14px;
    font-family: latobold,sans-serif;
    border-radius: 5px;
   
}
.continue-btn{
    margin: 40px 0px;
   display: flex;
   justify-content: center;
}

@media only screen and (max-width: 600px) {
   .popup-content{
    width: 340px;
   }
   .popup-header, .popup-box{
    padding: 20px 20px;
   }
   p.note{
    font-size: 11px;
    white-space: nowrap;
   }
  }