@font-face {
    font-family: 'IR';
    src: url('./font/Vazir-Bold.eot');
    /* IE9 Compat Modes */
    src: url('./font/Vazir-Bold.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('./font/Vazir-Bold.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('./font/Vazir-Bold.woff') format('woff'),
        /* Modern Browsers */
        url('./font/Vazir-Bold.ttf') format('truetype');
    /* Safari, Android, iOS */
    font-display: swap;
}

body {
    margin: 0px;
    padding: 0px;
}

[h] {
    display: none !important;
}

.app {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header {
    display: flex;
    justify-content: space-between;

    font-family: 'IR';
    user-select: none;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    transform: translateY(0%);
    transition: transform 0.5s ease, 0.3s background, 0.3s border-radius;
}

@keyframes toalways {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0%);
    }
}

.header.always {
    position: fixed;
    z-index: 999;
    background: white;
    transform: translateY(0);
    animation: toalways 0.3s;
    z-index: 1000;
    border-radius: 0px 0px 12px 12px;
    height: unset;
}
.header.always2 {
    position: fixed;
    z-index: 1000;
}

.header[open="true"].always {
    background: transparent;
}

@keyframes outalways {
    from {
        transform: translateY(0%);
    }
    to {
        transform: translateY(-100%);
    }
}


.header.back {
    position: fixed;
    z-index: 999;
    background: white;
    transform: translateY(0);
    animation: outalways 0.3s;
    height: unset;
}


.header .head {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
}

.header .head img {
    width: 70px;
    margin-left: 20px;
    transition: 0.3s width;
    z-index: 9991;
}

.header .head span {
    display: flex;
    cursor: pointer;
    transition: 0.3s;
}

.header .head span:hover {
    color: #8A1378;
}

.header .head span.s {
    color: #8A1378;
}

.header .head span::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 25px;
    background: #D9D9D9;
    margin-left: 6px;
    border-radius: 18px;
    margin-left: 10px;
    margin-right: 10px;
}

.header .head span:first-child::before {
    display: none;
}

.header .info,
.mobile_header .infow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: linear-gradient(to right, #502849, #8A1376);
    color: white;
    border-radius: 17px;
    width: 200px;
    height: 60px;
    cursor: pointer;
    box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
    position: unset;
    opacity: 1;
    pointer-events: auto;
    z-index: 9999;
    transition: 0.3s scale;
}

.header .info:hover {
    scale: 1.04
}

.header .info .small {
    font-size: 14px;
}

.header .hambruger {
    background: #502849;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s opacity ease;
    position: fixed;
    box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 9991;
    user-select: none;
}

@media (max-width: 700px) {
    .header .hambruger {
        cursor: default;
    }
}

.header[open="true"] .hambruger .close {
    display: unset;
}

.header[open="true"] .hambruger .main {
    display: none;
}

.header .hambruger svg {
    width: 30px;
}

.header .hambruger .close {
    display: none;
}

@media (max-width: 700px) {
    .header .head img {
        width: 60px;
    }

    .header .head span {
        display: none;
    }

    .header .info {
        opacity: 0;
        pointer-events: none;
        transition: 0.3s opacity ease;
        position: fixed;
    }

    .header .hambruger {
        position: unset;
        opacity: 1;
        pointer-events: auto;
    }
}

.mobile_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.6);
    backdrop-filter: blur(5px);
    font-family: 'IR';
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    z-index: 999;
}

.mobile_header .items {
    width: 100%;
    height: 100%;
    display: flex;
    /* margin-top: 250px; */
    justify-content: center;
    flex-direction: column;
    /* padding-top: 200px; */
}

.mobile_header .items .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.mobile_header .items .item span {
    background: #332231;
    color: white;
    width: 90%;
    text-align: center;
    font-size: 23px;
    border-radius: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.mobile_header .items .item span.s {
    background: #502849;
}

.mobile_header .infow {
    width: 90%;
    height: 80px;
    margin-bottom: 30px;
}

.header .mobile_header .infow span {
    font-size: 18px;
}

.header .mobile_header .infow .small {
    font-size: 14px;
}

.footer {
    position: relative;
    background: #161515;
    border-radius: 37px 37px 0px 0px;
    width: 100%;
    padding-bottom: 30px;
    user-select: none;
}

.footer .items {
    font-family: 'IR';
    color: white;
    display: flex;
    direction: rtl;
    flex-direction: row;
    gap: 20px;
    justify-content: space-around;
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.footer .items .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .items .title {
    font-size: 16px;
    margin-bottom: 5px;
    user-select: none;
}

.footer .items .item .address {
   user-select:text;
}

.txtdot,
.txtdotb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.txtdot::before,
.txtdotb::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
}

.footer .items .l1 {
    margin-bottom: 10px;
}

.footer .items .l0 {
    margin-bottom: 0px;
}

.footer .items .maps {
    margin-top: 15px;
}

.footer .items p {
    margin: 0px;
}

.footer .items .maps span {
    background: #353A92;
    text-align: center;
    border-radius: 13px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s background;
    margin-left: 5px;
}


@media (max-width: 700px) {
    .footer .items .maps span  {
        cursor: default;
    }
}


.footer .items .maps span:hover {
    background: #464cbe;
}

.footer .items .accounts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .items .accounts span {
    background: #353A92;
    text-align: center;
    border-radius: 13px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s background;
}

@media (max-width: 700px) {
    .footer .items .accounts span  {
        cursor: default;
    }
}

.footer .items .accounts span:hover {
    background: #464cbe;
}

@media (max-width: 700px) {
    .footer .items {
        font-family: 'IR';
        color: white;
        display: flex;
        direction: rtl;
        flex-direction: column;
        gap: 20px;
        justify-content: space-between;
        padding-top: 15px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.link {
    direction: ltr;
    color: #2C66BD;
    cursor: pointer;
    transition: 0.3s color;
    text-align: right;
    user-select: none;
}

@media (max-width: 700px) {
    .link  {
        cursor: default;
    }
}

.link:hover {
    color: #535be4;
}

.body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
    padding-bottom: 50px;
}

.body .info {
    width: 90%;
    max-width: 1000px;
    /* min-width: 900px; */
    height: 250px;
    display: flex;
    border-radius: 18px;
    justify-content: center;
    box-shadow: 4px 5px 12px 0 #0000006d;
}


.body .info .img_cover {
    width: auto;
    border-radius: 0px 18px 18px 0px;
    transition: 0.3s;
}

.body .info .cover {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 17px;
    padding-right: 15px;
    padding-left: 10px;
}

.body .info .cover {
    background: #2C66BD;
    width: 100%;
    height: 100%;
    border-radius: 18px 0px 0px 18px;
}

.body .info .cover span {
    font-family: 'IR';
    color: white;
}

.body .info[tag="tools"] .cover {
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.body .info .cover ul {
    padding-right: 20px;
    padding-left: 20px;
    margin: 0;
    color: white;
    font-family: "IR";
    direction: rtl;
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 10px;
    align-self: flex-end;
}

.body .info .cover ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    text-align: right;
}

.body .info .cover span.big {
    font-size: 20px;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
}

.body .info .cover .numbers {
    margin-top: 20px;
    user-select: none;
}

.body .info .cover .numbers span {
    background: #3F61A9;
    text-align: center;
    border-radius: 13px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s background;
    margin-left: 5px;
}

@media (max-width: 700px) {
    .body .info .cover .numbers span {
        cursor: default;
    }
}

.body .info .cover .numbers span:hover {
    background: #456cc1;
}

.body .info .cover .maps {
    margin-top: 20px;
    user-select: none;
}

.body .info .cover .maps span {
    background: #359278;
    text-align: center;
    border-radius: 13px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s background;
    margin-left: 5px;
}

@media (max-width: 700px) {
    .body .info .cover .maps span {
        cursor: default;
    }
}

.body .info .cover .maps span:hover {
    background: #3fb695;
}


@media (max-width: 990px) {
    .body .info .cover .numbers {
        display: flex;
        flex-direction: column;
        direction: rtl;
        gap: 10px;
    }

    .body .info .cover .numbers span {
        max-width: unset;
        max-width: max-content;
        text-align: right;
    }
}

@media (max-width: 865px) {
    .body .info .img_cover {
        width: 400px;
        height: auto;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 810px) {
    .body .info[tag="tools"] .img_cover {
        width: 40%;
        height: auto;
    }

    .body .info .cover ul {
        margin-left: 0px;
    }
}

@media (max-width: 736px) {
    .body .info[tag="tools"] .img_cover {
        width: 35%;
        height: auto;
    }
}

@media (max-width: 700px) {
    .body .info {
        display: flex;
        flex-direction: column-reverse;
        height: unset;
        width: 95%;
    }

    .body .info .img_cover {
        border-radius: 18px 18px 0px 0px;
        width: 100% !important;
        height: 300px !important;
        object-fit: cover;
        display: block;
    }

    .body .info .cover {
        border-radius: 0px 0px 18px 18px;
        height: auto;
        padding-bottom: 20px;
        text-align: center;
        padding-right: 0px;
        padding-left: 0px;
        max-width: unset;
    }

    .body .info .cover .numbers {
        align-items: center;
    }
}

.body .about {
    width: 90%;
    max-width: 1000px;
    /* min-width: 900px; */
    height: 250px;
    display: flex;
    border-radius: 18px;
    justify-content: center;
    position: relative;
    z-index: 99;
}

.body .about .img_cover {
    position: absolute;
    width: 300px;
    height: auto;
    flex-shrink: 0;
    left: -40px;
    margin-top: -50px;
    z-index: 2;
    transition: 0.3s;
}

.body .about .cover {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: 100px;
    color: white;
    font-family: "IR";
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2C66BD;
    padding-left: 0px;
    padding-top: 0px;
    box-shadow: 4px 5px 12px 0 #0000006d;
    flex-direction: column;
}

.body .about .cover p {
    display: block;
    font-family: 'IR';
    text-align: center;
    font-size: 20px;
    margin-left: 150px;
    margin-right: 10px;
    transition: 0.3s;
}

.body .about .cover h1 {
    display: block;
    font-family: 'IR';
    text-align: center;
    font-size: 20px;
    margin-left: 130px;
    transition: 0.3s;
}

@media (max-width: 400px) {
    .body .about .cover p {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}

@media (max-width: 900px) {
    .body .about .cover p {
        font-size: 17px;
    }

    .body .about .img_cover {
        width: 290px;
        margin-top: -40px;
    }
}

.body .about .cover .logo {
    display: none;
}

@media (max-width: 700px) {
    .body .about {
        display: flex;
        flex-direction: column;
        height: unset;
        max-width: unset;
        direction: rtl;
        margin-top: 50px;
        width: 95%;
    }

    .body .about .img_cover {
        position: absolute;
        left: 50%;
        top: 0%;
        transform: translate(-50%, -30%);
        width: 200px;
    }

    .body .about .cover {
        position: unset;
        padding-top: 100px;
        padding-bottom: 10px;
        display: flex;
        flex-direction: column;
    }

    .body .about .cover .logo {
        width: 120px;
        /* display: unset; */
        margin-bottom: 30px;
    }

    .body .about .cover p {
        display: block;
        font-family: 'IR';
        text-align: center;
        font-size: 17px;
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 0px;
        transition: 0.3s;
    }

    .body .about .cover h1 {
        margin-top: 30px;
        margin-left: unset;
    }
}

.body .gallery {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.body .gallery .imgc {
    background: #161515;
    /* max-height: 400px; */
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.body .gallery .imgc img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    
    /* background: #161515; */
    z-index: 9999;
}

.countbar {
    background: #252224;
    min-width: 40px;
    width: max-content;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    padding: 5px;
    gap: 10px;
    user-select: none;
    height: 44px;
    align-items: center;
}

.countbar div {
    background: #434142;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s background;
}

@media (max-width: 700px) {
    .countbar div  {
        cursor: default;
    }
}

.countbar div:hover {
    background: #595959;
}

.countbar div span {
    color: white;
    font-family: 'IR';
}


.countbar div.s {
    border: #FFFFFF solid 1px;
    background: #595959;
}

.body .video {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.body .video .continer {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #6b6b6b;
    border-radius: 18px;
}

.body .video .continer .overlay {
    position: absolute;
    inset: 0;
    background: #0000008a;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 700px) {
    .body .video .continer .overlay, .body .video .continer {
        cursor: default;
    }
}

.body .video .continer .overlay svg {
    width: 60px;
}

.body .video .continer video{
    display: block;
    width: 100%;
    height: 400px;
    
    z-index: 1;
}

.comments {
    width: 100%;
    direction: rtl;
    font-family: "IR";
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comments .send {
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: #252224;
    position: relative;
}

.comments .status {
    background: #252224;
    width: 100%;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.comments .status .card {
    background: #27cf218a;
    width: 100%;
    border-radius: 12px;
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    box-sizing: border-box;
}

.comments .send span {
    width: 100%;
    font-size: 15px;
    color: #ffffff;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
}

.comments .send textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 100px;
    resize: none;
    border: none;
    outline: none;
    border-radius: 12px;
    background: #222;
    color: #fff;
    font-size: 14px;
    font-family: "IR";
    padding: 10px;
    border: 1px solid #fff;
}

@keyframes wronglengthanim {
    0% {
        border-color: #ffffff;
        box-shadow: 0 0 0 rgba(255, 90, 90, 0);
    }
    25% {
        border-color: #ff6b6b;
        box-shadow: 0 0 6px rgba(255, 107, 107, 0.25);
    }
    50% {
        border-color: #ffffff;
        box-shadow: 0 0 0 rgba(255, 90, 90, 0);
    }
    75% {
        border-color: #ff6b6b;
        box-shadow: 0 0 6px rgba(255, 107, 107, 0.25);
    }
    100% {
        border-color: #ffffff;
        box-shadow: 0 0 0 rgba(255, 90, 90, 0);
    }
}


.comments .send textarea.wronglength {
    animation: wronglengthanim 0.6s ease-in-out;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comments .send .submit {
    align-self: flex-start;
    background: #45B76B;
    color: white;
    padding: 5px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
    margin-top: 10px;
    margin-right: 10px;
}

.comments .send .submit_ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.6);
    backdrop-filter: blur(5px);
    font-family: 'IR';
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    align-items: center;
}

.comments .send .submit_ui .box {
    background: #252224;
    border-radius: 28px;
    border: 1px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s border-radius;
}


@media (max-width: 470px) {
    .comments .send .submit_ui .box {
        border-radius: 0px;
        width: 100%;
    }
}


.comments .send .submit_ui .box .item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.comments .send .submit_ui .box .title {
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.comments .send .submit_ui .box .inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    direction: ltr;
}

.comments .send .submit_ui .box .inputs input {
    background: #464444b2;
    border: none;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    font-family: 'IR';
    color: white;
    height: 40px;
    border: 1px solid #ffffff95;
    font-size: 16px;
}


@keyframes wronglengthanim2 {
    0% {
        border-color: #ffffff95;
        box-shadow: 0 0 0 rgba(255, 90, 90, 0);
    }
    25% {
        border-color: #ff6b6b;
        box-shadow: 0 0 6px rgba(255, 107, 107, 0.25);
    }
    50% {
        border-color: #ffffff95;
        box-shadow: 0 0 0 rgba(255, 90, 90, 0);
    }
    75% {
        border-color: #ff6b6b;
        box-shadow: 0 0 6px rgba(255, 107, 107, 0.25);
    }
    100% {
        border-color: #ffffff95;
        box-shadow: 0 0 0 rgba(255, 90, 90, 0);
    }
}


.comments .send .submit_ui .box .inputs input.wronglength {
    animation: wronglengthanim2 0.6s ease-in-out;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comments .send .submit_ui .box .btns {
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    gap: 10px;
    /* margin-top: 90px; */
    /* margin-top: 40px; */
}

#turnstile-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.comments .send .submit_ui .box .btns span {
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 12px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s opacity;
    user-select: none;
}

.comments .send .submit_ui .box .note {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
    opacity: 1 !important;
}

.comments .send .submit_ui .box .btns .red {
    background: #B74547;
}

.comments .send .submit_ui .box .btns .green {
    background: #45B76B;
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

.loadingv2 > * {
    opacity: 0.5;
    pointer-events: none;
}

.loadingv2 .note {
    opacity: 1 !important;
    pointer-events: auto;
}

.comments .send .submit:hover {
    background: #43a047;
    transform: translateY(-1px);
}

.comments .lists {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #252224;
    margin-bottom: 10px;
    padding-bottom: 20px;
    width: 100%;
}

.comments .item {
    padding: 15px;
    padding-bottom: 5px;
    border-radius: 15px;
}

.comments .lists .item.empty {
    display: flex;
    /* align-items: center;
    justify-content: center; */
}

.comments .lists .item.empty span{
    text-align: center;
    font-size: 17px;
    opacity: 0.7;
}

.comments .profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comments .profile .titles {
    display: flex;
    flex-direction: column;
}

.comments .profile .titles .date {
    opacity: 0.7;
    font-size: 13px;
}

.comments .profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

.comments .profile span {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.comments .item > span {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.7;
}

.comments .reply {
    position: relative;
    margin-top: 12px;
    margin-right: 20px;
    padding-right: 12px;
    /* border-right: 2px solid #4caf50;
    background: #2e2e2e; */
    padding: 10px;
    border-radius: 18px;
}

.comments .reply::before {
    content: "";
    position: absolute;
    right: -10px;   
    top: 0;
    width: 4px;
    height: 70%;
    background: #D9D9D9;
    border-radius: 10px;

    top: 50%;
    transform: translateY(-50%);
}

.comments .countbar {
    direction: ltr !important;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fade-out {
    animation: fadeOut 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s forwards;
    opacity: 1;
}

a {
    text-decoration: none;
}

#header_spacer {
    height: 0;
    width: 100%;
}

.placershow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.6);
    backdrop-filter: blur(5px);
    font-family: 'IR';
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99999;
}

.placershow img {
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    object-fit: contain;
    transition: 0.3s width;
}

.placershow span {
    background: #c32828;
    color: white;
    width: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    margin-top: 20px;
    border-radius: 12px;
    cursor: pointer;
}

@media (max-width: 1030px) {
    .placershow img {
        width: 95%;
    }
}


@media (max-width: 700px) {
    .placershow span {
        cursor: default;
    }
}