*, *:before, *:after {
    box-sizing: border-box;
    outline: none;
}

button {
    cursor: pointer;
}



.pdfobject-container {
    height: 30rem;
    border: 1rem solid rgba(0, 0, 0, 0.1);
}

/*.trigger {

}
.trigger i {

}
.trigger:hover {
    box-shadow: 0 0.875rem 1.75rem rgba(0, 0, 0, 0.25), 0 0.625rem 0.625rem rgba(0, 0, 0, 0.22);
}*/
.mmodal {
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 0vh;
    background-color: transparent;
    overflow: hidden;
    z-index: 9999;
}
.mmodal.open {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.mmodal.open > .content-wrapper {
    transform: scale(1);
}
.mmodal .content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /*width: %;*/
    margin-left: .7rem;
    margin-right: .7rem;
    width: 40%;
    padding-top: 1rem;
    padding-right: 1.7rem;
    padding-left: 1.7rem;
    background-color: white;
    border-radius: 0.3125rem;
    box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.2);
    transform: scale(0);
}
.mmodal .content-wrapper .close {
    position: absolute;
    top:0;
    right: 0.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #aaa !important;
    float: right;
    font-size: 28px;
    font-weight: bold;
    border: none;
    background-color: transparent;
}
.mmodal .content-wrapper .close:hover,
.mmodal .content-wrapper .close:focus {
    color: black !important;
    text-decoration: none;
    cursor: pointer;
    outline: none !important;
}
.mmodal .content-wrapper .close:before, .mmodal .content-wrapper .close:after {
    position: absolute;
    content: "";

}

.mmodal .content-wrapper .close:hover:before, .mmodal .content-wrapper .close:hover:after {
    /*background-color: black;*/
}
.mmodal .content-wrapper .mmodal-header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0 0 1.25rem;
}
.mmodal .content-wrapper .mmodal-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
}
.mmodal .content-wrapper .content {
    position: relative;
    display: flex;
}
.mmodal .content-wrapper .content p {
    font-size: 0.875rem;
    line-height: 1.75;
}
.mmodal .content-wrapper .mmodal-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    padding: 1.875rem 0 0;
}
.mmodal .content-wrapper .mmodal-footer .action {
    position: relative;
    margin-left: 0.625rem;
    padding: 0.625rem 1.25rem;
    border: none;
    background-color: slategray;
    border-radius: 0.25rem;
    color: white;
    font-size: 0.87rem;
    font-weight: 300;
    overflow: hidden;
    z-index: 1;
}
.mmodal .content-wrapper .mmodal-footer .action:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.mmodal .content-wrapper .mmodal-footer .action:hover:before {
    width: 100%;
}