.modal {
    position: fixed;
    top: 0;
    left: 0;
    background: #DFE1FF;
    opacity: 0;
    z-index: -10;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s ease-in-out, z-index 0s .5s ease-in-out;
}

.modal--is-open {
    z-index: 100;
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

/*-----------
Transparent Layer
-----------*/

.modal__transparent-layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    width: 100%;
    height: 100%;    
}

/*-----------
Modal Content
-----------*/

.modal__content {
    position: relative;
    width: 100%;
    color: #1823A7;
    z-index: 13;
}


.close-icon {
    width: 56px;
    height: 56px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 32px;
    top: 32px;
    z-index: 13;
    background: #1823A7;
    cursor: pointer;
}
.close-icon:active, .close-icon:hover:active{
    transform: scale(1);
}
.close-icon:hover{
    transform: scale(1.06);
    transition-duration: 300ms;
}
 .scroller{
    scrollbar-color: #1823A7;
}
.scroller::-webkit-scrollbar-thumb{
   background: #1823A7;
   height: 20px;
   border-radius: 50px;
   margin-right: 3px;
   border: 2px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.scroller::-webkit-scrollbar {
    width: 8px; /* Mostly for vertical scrollbars */
    height: 5px; /* Mostly for horizontal scrollbars */
  }