.jypmedia-flow .header {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

@media (max-width: 800px) {
    .jypmedia-flow .header{
        align-items: center;
    }
}
.jypmedia-flow .title {
    margin: 0 20px;
    align-self: center;
}

.jypmedia-flow .see-more,
.jypmedia-flow .back{
    background-color: #00000027 !important;
    padding: 10px !important;
    border-radius: 10px;
    border: 2px solid #ffffff1a !important;
    color: white !important;
    font-size: 15px;
    backdrop-filter: blur(10px);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;

    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-transform: none;
}
.jypmedia-flow .list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}



.jyp-flow-option {
    background-color: #00000027 !important;
    backdrop-filter: blur(10px);
    width: auto;
    height: 150px;
    min-width: 200px;
    min-height: 150px;
    max-width: 500px;
    max-height: 200px;
    border-radius: 20px !important;
    border: 2px solid #ffffff1a !important;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px !important;
}
@media (max-width: 800px){
    .jyp-flow-option{
        min-height: 100px;
        height: 100px;
        padding: 10px 20px !important;
        min-width: 0 !important;
        max-width: 46%;
    }
    .jyp-flow-option p{
        font-size: 20px !important;
    }
}
.jyp-flow-option p {
    word-break: break-word;
    white-space: normal;
    text-align: center;
    font-size: 25px;
    line-height: 1;
    margin: 0;
}

.jyp-flow-option:hover,
.jyp-flow-option:focus,
.jyp-flow-option:active {
    cursor: pointer !important;
    background-color: #53535327 !important;
}



.jypmedia-flow .list .jyp-flow-option {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    animation: jypFlowAppear 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.jypmedia-flow .list .jyp-flow-option:nth-child(1) { animation-delay: 0.05s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(2) { animation-delay: 0.1s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(3) { animation-delay: 0.15s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(4) { animation-delay: 0.2s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(5) { animation-delay: 0.25s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(6) { animation-delay: 0.3s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(7) { animation-delay: 0.35s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(8) { animation-delay: 0.4s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(9) { animation-delay: 0.45s; }
.jypmedia-flow .list .jyp-flow-option:nth-child(10) { animation-delay: 0.5s; }

@keyframes jypFlowAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
