.crucial-open{
    overflow: hidden;
}
.crucial-wd{
    background: #fff;
    padding: 1rem;
    border-left: 4px solid var(--primary);
    display: flex;
    position: relative;
}
.crucial-wd__content{
    flex-grow: 1;
}
.crucial-wd__content p:last-child{
    margin-bottom: 0;
}
.crucial-wd__close{
    flex: 0 0 auto;
    margin-left: auto;
}
.crucial-wd__closebutton{
    border: 0;
    background: none;
    color: var(--primary);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
}
.crucial-wd__closebutton span{
    display: block;
    font-size: 1.7rem;
    height: 1rem;
    line-height: 1rem;
}
.crucial-wd__button{
    padding-top: 1rem;
    text-align: center;
    display: none;
}
.crucial-wd-bg{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2050;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
/* modal */
.crucial-wd-bg .crucial-wd{
    width: 100%;
    margin: 0.5rem;
    max-height: 90vh;
    z-index: 2060;
}
.crucial-wd-bg .crucial-wd__button{
    display: block;
}
.crucial-wd-bg .crucial-wd__close{
    display: flex !important;
}
.crucial-wd-bg .crucial-wd__content{
    overflow-y: auto;
    scrollbar-width: none;/* firefox */
}
.crucial-wd-bg .crucial-wd__content::-webkit-scrollbar {
  width: 0;/* chrome */
}
@media (min-width: 576px){
    .crucial-wd-bg .crucial-wd{
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
@media (min-width: 992px){
    .crucial-wd-bg .crucial-wd {
        max-width: 800px;
    }
}