/*---------------------------------------*/
/* image */
/*---------------------------------------*/

.roboyad_item_padding_title {
    color: black;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
}

.roboyad_item_padding_title span {
    font-size: 18px;
    font-weight: 500;
}

.roboyad_single_education_topic_image_parent {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;

    margin-top: 5px;
    margin-bottom: 5px;

    background-color: white;
    border: 1px solid var(--border_color_1);
    border-radius: 8px;
    padding: 24px;
    gap: 20px
}

.roboyad_single_education_topic_image {
    background-size: cover;
    background-position: center;
    border: 8px;
    border-radius: 8px;
    position: relative;
    width: 100%;
    max-width: 462px;
    height: 257px;
    padding: 20px;
}

.roboyad_single_education_data_game {
    width: 100%;
    display: flex;
    align-items: start;
    height: -webkit-fill-available;
    justify-content: space-between;
    flex-direction: column;
}

.roboyad_single_education_data_game_title {
    color: black;
    font-size: 20px;
}

.roboyad_single_education_data_game_title_container {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.roboyad_single_education_data_game_title_container svg {
    width: 100%;
    height: auto;
    max-width: 28px;
}

.roboyad_single_education_data_game_description {
    color: black;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
}

.roboyad_single_education_data_game_container_buttem {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 100%;
    gap: 10px;
}

.roboyad_single_education_data_game_container_buttem button {
    background-color: #00BF36;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    padding: 12px;
    border-radius: 8px;
    gap: 10px;
    width: 100%;
    max-width: 240px;
    font-weight: bold;
    border: none;
}

.roboyad_single_education_data_game_container_buttem button p {
    font-weight: bold;
    font-size: 18px;
}

.roboyad_single_education_data_game_container_buttem button svg {
    width: 100% ;
    max-width: 29px;
}

.roboyad_single_education_data_game_container_buttem_share {
    background-color: #F3F3F3 !important ;
    width: 100% !important ;
    max-width: 46px !important ;
    height: auto;
    border: 1px solid #D4D4D4 !important;
    border-radius: 8px;
    padding: 12px !important;
}

.roboyad_single_education_data_game_container_buttem_share:hover {
    cursor: pointer;
}

.roboyad_single_education_data_game_container_buttem_share svg {
    width: 25px !important;
    height: auto!important;
}

.goto_game:hover {
    cursor: pointer;
}



@media ( max-width: 768px ) {


    .roboyad_single_education_data_game_title_container {
        gap: 8px;
    }

    .roboyad_single_education_data_game_title_container svg {
        max-width: 25px;
    }

    .roboyad_single_education_topic_image_parent {
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        padding: 12px;
    }

    .roboyad_single_education_data_game_description {
        margin-bottom: 18px;
    }

    .roboyad_single_education_data_game_container_buttem {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .roboyad_single_education_data_game_title {
        color: black;
        font-size: 15px;
        margin-bottom: 13px;
    }

    .roboyad_single_education_data_game_description {
        color: black;
        font-size: 14px;
        font-weight: 400;
        line-height: 23px;
    }

    .roboyad_single_education_data_game_container_buttem button {
        padding: 12px;
        max-width: none;
    }

    .roboyad_single_education_data_game_container_buttem button p {
        font-size: 16px;
    }


    .roboyad_single_education_data_game_container_buttem button svg {
        max-width: 25px;
    }

    .roboyad_item_padding_title {
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .roboyad_item_padding_title span {
        font-size: 14px;
    }


}







/*----------------------------------------------*/
/* share */
/*----------------------------------------------*/


.roboyad-share-wrapper {
    position: relative;
    display: inline-block;
}

/* دکمه اصلی */
.share-main-btn {
    background: #2C7E7E;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* منو */
.roboyad-share-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    min-width: 180px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.25s ease;
    z-index: 9999;
}

.roboyad-share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* آیتم‌ها */
.share-item {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    display: flex;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-item:last-child {
    margin-bottom: 0;
}

.share-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* رنگ شبکه‌ها */
.share-item.telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.share-item.eitaa {
    background: linear-gradient(135deg, #FF8A00, #FF6A00, #E65100);

    /*background: linear-gradient(135deg, #7C4DFF, #5E35B1);*/
}

.share-item.instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.share-item.copy {
    background: linear-gradient(135deg, #616161, #424242);
}



/*-------------------------------------------------*/
/* video */



.roboyad_item_movie {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.roboyad_item_movie_contariner {
    width: 100%;
    max-width: 600px;
}
















