header{
    padding: 0px 100px;
}

#main{
    padding: 0px 100px;
}

.jrole {
    margin: 20px 0px 0px 0px;
    box-shadow: 0px 0px 3px 1px gray;
    padding: 15px 20px;
    display: block;
    width: 400px;
    border-radius: 14px;
    border: 1px solid whitesmoke;
    font-weight: 500;
}
.jdesc {
    margin: 10px 0px 0px 0px;
    box-shadow: 0px 0px 3px 1px gray;
    padding: 10px 20px;
    width: 90%;
    border-radius: 10px;
}
@media (max-width: 600px) {
    .jdesc {
        width: 98%;
    }
    #main{
        padding: 10px;
    }
    header {
        padding: 10px;
    }
}

i{
    margin-right: 10px;
    color: gray;
    cursor: pointer;
}

.hide{
    display: none;
}

.applydiv {
    text-align: right;
}
.applydiv button{
    transition: all 0.2s;
    padding: 7px 17px;
    background-color: navy;
    border: none;
    color: white;
    text-transform: uppercase;
    border-radius: 10px;
}
.applydiv button:hover{
    background-color: rgb(51, 51, 243);
}
.applydiv button:active{
    background-color: navy;
    box-shadow: 0px 0px 0px 3px skyblue;
}

.crform {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    border: 2px solid gray;
    border-radius: 10px;
    padding: 30px;
    z-index: 10000;
    background-color: white;
    width: 500px;

    height: 97%;
    overflow: scroll;

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    
}
/* Hide scrollbar for Chrome, Safari and Opera */
.crform::-webkit-scrollbar {
    display: none;
}
#careerform{

}

#careerform div{
    padding: 10px 10px;
    border-bottom: 1px solid rgb(240, 240, 240);
}
#careerform label{
    width: 100px;
    font-weight: bold;
}
#careerform p {
    font-weight: bold;
}
#careerform input[type="text"] {
    width: 300px;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
}
#careerform input[type="number"] {
    width: 300px;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
}
#careerform button{
    padding: 7px 15px;
    border: none;
    background-color: navy;
    border-radius: 5px;
    color: white;
    font-weight: 500;
}

@media (max-width: 500px){
    .crform {
        width: 99%;
        height: 99%;
        /* overflow: scroll; */

    }
}

#formclose{
    position: relative;
    top: -20px;
    right: -15px;
    cursor: pointer;
}

.noPointer {
    pointer-events: none;
}

.allPointer {
    pointer-events: all;
}




/* custom alert box */
.calert {
    background-color: rgb(0, 0, 87);
    color: white;
    /* color: white; */
    border-radius: 15px;
    height: initial;
    width: 450px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 10px 16px 10px;
    z-index: 999999;
}
@media (max-width:500px){
.calert{
    width: 80%;
}
}
.calert p,.calert button{
    text-align: center;
    border: none;
    border-radius: 4px;
    padding: 5px 17px;
}
.calert button{
    background-color: blue;
    color: white;
}
.calert button:hover{
    background-color: rgb(34, 34, 146);
}
.calert button:active{
    background-color: navy;
    box-shadow: 0px 0px 2px 2px rgb(84, 84, 172);
}




/* custom alert box 2  */
.calert2 {
    background-color: rgb(0, 0, 87);
    color: white;
    /* color: white; */
    border-radius: 15px;
    height: initial;
    width: 450px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 10px 16px 10px;
    z-index: 999999;
}
@media (max-width:500px){
.calert2{
    width: 80%;
}
}
.calert2 p,.calert2 button{
    text-align: center;
    border: none;
    border-radius: 4px;
    padding: 5px 17px;
}
.calert2 button{
    background-color: blue;
    color: white;
}
.calert2 button:hover{
    background-color: rgb(34, 34, 146);
}
.calert2 button:active{
    background-color: navy;
    box-shadow: 0px 0px 2px 2px rgb(84, 84, 172);
}



/* spinning loading circle */
.loader {
    position: fixed;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);   
    z-index: 99999999;
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid navy;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  .crform h4 {
      position: absolute;
      top: 10px;
      left: 35px;
      margin: 0;
  }