.popup_btn {
    text-align: left;
    color: #111111;
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1.88px;
    font-weight: normal;
    "Sailec-Medium"!important;
    cursor: pointer;
    text-transform: uppercase;
    display: inline;
  font-weight: 600;
}
.popup_btn:hover, .popup_btn:focus{
    text-align: left;
    color: #111111;
    text-decoration: none;
    font-size: 12px;
  font-weight: 600;
    line-height: 20px;
    letter-spacing: 1.88px;
    "Sailec-Medium"!important;
    cursor: pointer;
    text-transform: uppercase;
    display: inline;
} 

.popup_modal{
  display:none;
  position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
      background: rgb(0 0 0 / 35%);
      align-items: center;
    justify-content: center;
}

.popup_inside{
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    padding: 40px;
    border-radius: 15px;
    height: auto;
    min-height: 300px;
    position: relative;
}
a.close_modal {
    position: absolute;
    right: 15px;
    font-size: 35px;
    top: -5px;
    color: gray;
  text-decoration: none!important;
  outline: none!important;
}
.popup_content {
    max-height: 500px;
    overflow-y: auto;
}
.popup_content::-webkit-scrollbar {
  width: 8px;
}
 
.popup_content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.popup_content::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
@media screen and (max-width:768px) { 
  .popup_inside{
    padding: 20px;
  }
}