.whats-new-modal {
    position: fixed;
    z-index: 2147483647;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%) scale(0.9);
    width: 640px;
    max-width: 95%;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.18s ease-in-out;
    visibility: hidden;
    opacity: 0;

    padding: 20px;
    font-size: 1.4rem;
    max-height: 90vh;
    overflow-y: auto;

    /*scrollbar-width: none;*/
    /*-ms-overflow-style: none;*/
}

/*.whats-new-modal::-webkit-scrollbar {
    display: none;
}*/

.whats-new-modal.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.whats-new-modal .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.whats-new-modal .head h2 {
    font-size: 32px;
    font-weight: bold;
}

.whats-new-modal .body .app-version-item,
.whats-new-modal .body .app-version-item > div {
    margin-bottom: 12px;
}

.whats-new-modal .body .date {
    color: #00000080;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.whats-new-modal .body .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.whats-new-modal .body .description {
    line-height: 1.8rem;
}

.whats-new-modal .body .description b,
.whats-new-modal .body .description strong {
    font-weight: bold;
}

.whats-new-modal .body .description i {
    font-style: italic;
}

.whats-new-modal .body .description p {
    margin-bottom: 12px;
}

.whats-new-modal .body .description p:last-child {
    margin-bottom: 0;
}

.whats-new-modal .body .images {
    text-align: center;
}

.whats-new-modal .body .images img {
    max-width: 100%;
    margin-bottom: 12px;
}

.whats-new-modal .body .app-version-item {
    border-bottom: 1px solid #cccccc;
}

.whats-new-modal .body .app-version-item:last-child {
    border-bottom: none;
}

.whats-new-modal-close {
    font-size: 16px;
    font-weight: bold;
}

.whats-new-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2147483646;
}

.hidden {
    display: none;
}

.whats-new-modal .stamp-wrapper {
    float: right;
    margin: 0 0 24px 24px;
}

.whats-new-modal .stamp {
    width: 100px;
    height: 100px;
    position: relative;
    background: url('../images/app-version-stamp.svg') no-repeat;
    background-size: cover;
}

.whats-new-modal .stamp-logo {
    left: 30px;
    top: 28px;
    position: absolute;
}

.whats-new-modal .stamp-logo img {
    width: 40px;
}

.whats-new-modal .stamp-top-text,
.whats-new-modal .stamp-bottom-text {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
}

.whats-new-modal .stamp-top-text {
    color: rgba(51, 51, 51, 0.30);
    padding-top: 8px;
}

.whats-new-modal .stamp-bottom-text {
    color: rgba(51, 51, 51, 0.75);
    padding-top: 21px;
}

.whats-new-modal .learn-more a,
.whats-new-modal .show-less a {
    color: #F7C56B;
    font-weight: bold;
}

.whats-new-modal .learn-more a:hover,
.whats-new-modal .show-less a:hover {
    text-decoration: underline;
}
