html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.notification-center {
    margin: 0 1rem 0 0;
    background-color: #ffffff7d;
    margin: 2rem;
    border-radius: 12px;
    padding: 1rem 0 0 1rem;
    position: relative;
    box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
    box-sizing: border-box;
    width: calc(100% - 4rem);
    color: rgba(0,0,0,.8);
    backdrop-filter: blur(33px);
    background-blend-mode: overlay;
    display: grid;
    align-items: stretch;
    grid-template-areas:
        'a a b b'
        'a a c d'
        'e e e e'
        'f f f f'
        'g g g g'
        'h h h h';
}

.notification-center > div {
    margin: 0 1rem 1rem 0;
    padding: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 10%);
    background: rgba(255,255,255,.5);
}

.ios-dropdown-style {
    margin: 0 1rem 0 0;
    /*background-color: #ffffff7d;*/
    margin: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(33px);
    padding: 1rem;
    position: relative;
    box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
    box-sizing: border-box;
    width: calc(100% - 4rem);
    color: rgba(0,0,0,.8);
    display: flex;
    align-items: center;
    /*.dark .dropdown-style.black*/
    /*background: #423c5a80;*/
    box-shadow: 0 10px 15px rgb(0 0 0 / 30%);
    /*.dropdown-style.black */    
    background-color: #eee3;
    color: rgba(255,255,255,.8);
}

    .ios-dropdown-style > h4 {
        font-weight: 100;
        text-decoration: overline;
        text-transform: lowercase;
        color: #fff7;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .ios-dropdown-style > .btn {
        margin-top: 8px;
        border-radius: 24px;
    }

.form-group {
    padding: 8px;
}