.custom-modal{display:none;align-items:center;justify-content:center;position:fixed;top:0;left:0;width:100%;height:100%;z-index:1000;padding:40px 0}
@media only screen and (max-width:749px){
.custom-modal{align-items:flex-start;padding:20px 0}
}
.custom-modal.show{display:flex}
.custom-modal__backdrop{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5)}
.custom-modal__box{display:flex;flex-direction:column;position:relative;background-color:#eeefee;border-radius:8px;box-shadow:rgba(0,0,0,.2) 0 2px 10px;width:600px;max-width:90%;max-height:90vh;z-index:1001;margin:auto;overflow:hidden}
@media only screen and (max-width:749px){
.custom-modal__box{max-height:calc(100vh - 40px)}
}
.custom-modal__background{position:absolute;top:0;left:0;color:#d5c0a2;z-index:1;width:130px;height:100%}
.custom-modal__header{position:relative;z-index:2;display:flex;justify-content:space-between;align-items:center;padding:18px 20px;color:#fff;width:100%;box-sizing:border-box}
.custom-modal__close{background:0 0;border:none;color:#555;font-size:20px;cursor:pointer;padding:0}
.custom-modal__title{font-family:SangBleuOGSans,sans-serif;margin:0;font-size:22px;font-weight:500}
.custom-modal__body{position:relative;z-index:2;padding:0 20px;min-height:50px;line-height:1.5;overflow-y:auto;flex:1;width:100%;box-sizing:border-box;word-wrap:break-word}
.custom-modal__footer{position:relative;z-index:2;display:flex;justify-content:flex-end;padding:18px 20px;gap:18px;width:100%;box-sizing:border-box}
.custom-modal__button{padding:12px 20px;background-color:#e0e0e0;color:#333;border:none;border-radius:9999px;cursor:pointer;font-size:14px}
.custom-modal__loader{display:flex;align-items:center;justify-content:center;height:50px}
.custom-modal__loader .loading__spinner{position:static}