/* CSS file */

#splashNotice.display-right {
    left: 30px;
    top: 180px;
    max-width: 400px;
}
#splashNotice.light {
    background-color: #edf3fa;
    color: #393d4d;
    border: 2px solid #b7d5f7;
}

#splashNotice {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999997;
}
#splashNotice #closeIcon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: #bfb9b9;
    overflow: hidden;
    opacity: .85;
    z-index: 999999;
    position: absolute;
    top: 10px;
    right: 10px;
    background: url(../images/close.png) 0 0 / 20px 20px no-repeat;
}

#splashNotice * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
#splashNotice .title-wrap {
    display: flex;
    align-items: left
    margin-bottom: 2rem;
    /*background: url(../images/arrow_right.png) 0 0 / 40px 40px no-repeat; */
    padding-left: 0;
    height: 40px;
}
#splashNotice .title-wrap svg {
    margin-right: 10px;
}
#splashNotice h4 {
    font-family: inherit;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
}
#splashNotice.light p, #splashNotice.light ul {
    color: #393d4d;
}
#splashNotice p, #splashNotice ul {
    font-size: 1.4rem;
    margin-bottom: 20px;
}
#splashNotice .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}
#splashNotice .btn-wrap button {
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    line-height: 36px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    transition: box-shadow .3s;
}
#splashNotice button {
    outline: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
#splashNotice .btn-wrap button:hover {
    transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),transform .4s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
    transform: translate3d(0,-1px,0);
}
.btn-primary{
    color:#ffffff;
    background:#004479;
    border: 1px solid #115cfa;
}


/*
----------------------------------------------------------------------------------
Responsive css here....... 
----------------------------------------------------------------------------------
*/

@media all and (max-height: 400px) {
#splashNotice h4 {
    font-size: 1.3rem;
}

#splashNotice p {
    font-size: 1.2rem;
}

}
