.times_holder_container{
    width:calc(100%);
    max-width: 780px;
    background-color: white;
    padding: 20px 50px;
    border-radius: 60px;
    margin-top: 50px;
}

.flex_content_holder_times {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
}

.flex_content_holder_times h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    color: var(--default_purple_from_gradient);
}

.flex_content_holder_times div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    text-align: center;
    gap: 0.3em;
}

.flex_content_holder_times div h1{
    margin: 0;
    font-weight: 800;
    font-size: 19px;
}

.flex_content_holder_times div p{
    margin: 0;
    max-width: 400px;
    font-weight: 500;
    font-size: 16px;
    color: var(--default_orange_color);
}


/*Rules*/

.rules_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-bottom: 125px;
}

.rules_content_holder {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    border: 3px solid white;
    border-radius: 60px;
    gap: 3em;
    padding: 20px 50px;
    position: relative;
    overflow: visible;
}

.left_image_holder {
    position: relative;
    flex: 0 0 40%; /* Usa flex para definir o tamanho */
    align-self: stretch;
    display: none;
}

.left_image_holder img {
    position: absolute;
    bottom: -20px;
    left: 0; /* Garante que a imagem esteja alinhada à esquerda */
    height: calc(105% + 30px);
    object-fit: cover; /* Mantém a proporção da imagem */
}

.right_content_rules {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.right_content_rules_main_header_title {
    font-size: 22px;
    text-align: center;
    font-weight: normal;
    color: var(--default_green_for_card);
}

.holder_of_all_rules { /*Holder div of all rules*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
}

.single_rule_holder{ /*Holder div of single rule*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} 

.single_rule_holder h1{ 
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}
.single_rule_holder p{ 
    margin: 0;
    text-align: center;
    font-weight: 500;
    color: var(--default_green_for_card);
    max-width: 100%;
}

.arrow-left {
    width: 0; 
    height: 0; 
    border-top: 5px solid transparent; /* metade da altura */
    border-bottom: 5px solid transparent; /* metade da altura */
    border-right: 10px solid white; /* largura e cor da seta */
    margin-left: 5px;
}

.image_title_holder_with_arrow{ /*Holder div of title with arrow*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.image_title_holder_with_arrow img{
    width: 10px;
    height: 10px;
}


@media (min-width: 1420px)  {
    .left_image_holder {
        display: block;
    }

    .single_rule_holder p{ 
        max-width: 70%;
    }

    .times_holder_container{
        width:calc(100% - 100px);
    }
}