/* ////////////////
    Modal 
/////////////////*/


.modal-wrapper{
    position: fixed;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255 255 255 / .75);

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
  }


  #modal-1:target, #modal-2:target, #modal-3:target{
    opacity: 1;
    visibility: visible;
  }

  .modal-on{
    opacity: 1;
    visibility: visible;
  }


#modal-1 .modal-body, #modal-2 .modal-body, #modal-3 .modal-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    width: 100%;
    margin: 0 20px;

    background: white;
    box-shadow: 0 0 85px -3px rgb(0 0 0 / 20%);
    transition: opacity 0.25s ease-in-out;
    z-index: 1;
}

.modal-img-container{
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.modal-img-circle{
    width: 132px;
    height: 132px;
    border-radius: 100%;
    overflow: hidden;
    background: transparent;
}
.modal-img-circle.overlap-top{
    position: absolute;
    top: -40px;
}

.modal-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
}
.modal-title{
    line-height: 36px;
    font-size: 36px;
    padding: 0 50px;
}
.modal-content > p{
    margin-bottom: 0;
    padding: 0 50px;
}
.modal-button-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
    padding: 0 50px;
}


.modal_close{
    position: absolute;
    top: 20px;
    right: 30px;
}
.modal-outside-trigger{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: default;
}