
@font-face {
    font-family: Poppins;
    src: url(./Poppins-Regular.ttf);
  }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}
body{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    background-color: #f9f9f9;
}
input:focus{
    outline: none;
}
.design-top{
    width: 100%;
    height: 250px;
    background-image: url("./bible.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.overlay{
    width: 120px;
    height: 120px;
    background-image: url("./HJM_Logo.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 60px);
    border-radius: 50%;
    box-shadow: 1px 1px 9px #89393a;
}
.container{
    padding: 30px;
    color: #89393a;
}
.row{
    display: flex;
    gap: 10px;
    padding-top: 5px;
}
input{
    background-color: transparent;
    border: none;
}
.selectDate, .form-btn{
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px #89393a solid;
}
.selectDate{
    color: inherit;
}
.form-btn{
    margin-top: 50px;
    background-color: #89393a;
    color: #fff;
}
.dwn-btn{
    background-color: #89393a;
    color: #fff;
}
.img-input{
    margin-bottom: 20px;
}
button{
    padding: 5px 15px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}
.form-input{
    margin-top: 100px;
}
.spacer{
    margin-bottom: 20px;
}
#formColor {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    background-color: transparent;
    /* border: none; */
    cursor: pointer;
  }
  #formColor::-webkit-color-swatch {
    border-radius: 20px;
    border: none;
  }
  #formColor::-moz-color-swatch {
    border-radius: 20px;
    border: none;
  }
/*********************** MODAL ***********************/
.modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1;
}
.modal::before{
    content: "";
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: .9;
    z-index: 2;
}
.modal-wrap{
    padding: 10px;
    position: relative;
    z-index: 3;
}
.modal-dl{
    /* color: #fff; */
    line-height: 9px;
    width: 350px;
    height: 350px;
    /* background-image: url("./xx.jpg"); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
}
.info{
    display: flex;
    justify-content: space-between;
}
.left{
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo img{
    width: 20px;
}
.cname{
    font-size: 8px;
    font-weight: 600;
}
.title p{
    font-size: 6px;
    font-weight: 600;
}
.action{
    display: flex;
    gap: 20px;
}

/* hidden */
.hide{
    display: none;
}