.strokes {
    color: white;
    position: relative;
    z-index: 2;
    font-family: "rounround";
}
.strokes::after {
    content: attr(title);
    position: absolute;
    -webkit-text-stroke: 0.25em #b17010;
    left: 0;
    top: 0;
    z-index: -1;
}
.md .md-modal {
    max-width: 500px;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2000;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateX(-50%) translateY(-50%);
}
.md .md-modal .md_top {
    width: 100%;
    text-align: right;
    position: relative;
}
.md .md-modal .md_top .title {
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.md .md-modal .md_top .md_close {
    width: 40px;
    height: 40px;
    border: 2px white solid;
    background: #5ebbd8;
    border-radius: 100%;
    position: absolute;
    top: -50px;
    right: 10px;
}
.md .md-modal .md-content {
    border-radius: 20px;
    border: 6px #7fe2ff solid;
    background-color: #f1fcff;
    padding: 40px 30px;
    position: relative;
    margin: auto;
}
.md .md-close {
    color: white;
    border-radius: 25%;
    font-size: 45px;
    display: flex;
    position: absolute;
    top: -54px;
    right: 10px;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    background: black;
    transition: all 0.3s;
}

.md.active .md-modal {
    visibility: visible;
}
.md.active .md-overlay {
    opacity: 0.8;
    visibility: visible;
    pointer-events: auto;
}
.md.active .md-close {
    visibility: visible;
    right: 1px;
}

.md.light .md-modal .md_top {
    height: 145px;
}
.md.light .md-modal .md_top .title {
    top: inherit;
    bottom: -73%;
}
.md.light .md-modal .md_top .md_close {
    bottom: 20px;
    top: inherit;
}
.md.light .md-modal .md_top:before {
    content: "";
    width: 100%;
    height: 144px;
    background: url(../images/pop/img_star.png) center top no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    bottom: 11px;
}
.md.light .md-modal:before {
    content: "";
    width: 230%;
    height: 100vh;
    background: url(../images/pop/img_light.png) center no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, 0);
    z-index: -1;
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
    pointer-events: none;
}
.md_incompatible .md-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-image: url(../images/pop/bg_cloud.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}
.md_incompatible .md-content .txt {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.md_incompatible .md-content .txt strong {
    font-size: clamp(32px, 3vw, 36px);
}
.md_incompatible .md-content .txt strong:after {
    -webkit-text-stroke: 0.15em #4e9bf2;
}
.md_incompatible .md-content .txt p {
    color: #4e9bf2;
}
.md_incompatible .md-content .btn {
    display: flex;
    justify-content: center;
    gap: 35px;
}
.md_incompatible .md-modal {
    max-width: 400px;
}
.md_incompatible .md-modal .md_top .md_close {
    background: #7fe2ff;
}
.md_incompatible .md-modal .md-content .txt strong {
    font-size: clamp(28px, 3vw, 32px);
}
