

/*
////////////
//Team Page Popup
////////////
*/

section.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
}
section.modalWindow {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    z-index: 999 !important;
    width: 600px;
    min-height: 200px;
    margin-left: -300px;
    background: #FFF;
    cursor: default;
}
section.modal.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 997;
    cursor: pointer;
}
section.modalWindow section.modalWrapper {
    margin: 30px;
    padding: 15px;
    text-align: left;
    line-height: 20px !important;
  height: 300px;
}
.closeBtn {
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer;
}
 a.closeBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E84E0E;
    color: #fff;
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    height: 30px !important;
    width: 31px !important;
    border-radius: 100px;
    text-wrap: nowrap;
    border: 1.5px;
}
@media (max-width:600px){
  section.modalWindow {
    display: none;
    position: fixed;
    top: 12%;
    left: 77% !important;
    z-index: 999 !important;
    width: 100% !important;
    min-height: 700px !important;
    margin-left: -300px;
    background: #FFF;
    cursor: default;
    border-radius: 10px;
}
  a.closeBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E84E0E;
    color: #fff;
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    height: 30px !important;
    width: 31px !important;
    border-radius: 100px;
    text-wrap: nowrap;
    border: 1.5px;
}
  section.modalWindow section.modalWrapper {
    padding: 6px;
  }
}