/*
Theme Name: co.wonders
Theme URI: 
Author: My Mountain
Author URI: 
Description: 
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: co-wonders
Tags: 
*/

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
}

.wp-block-image {
    line-height: 0 !important;
}

.btn-shadow {
    text-transform: uppercase;
    box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029 !important;
    transition: box-shadow 0.2s !important;
}

.btn-shadow:hover {
    box-shadow: inset 0px 3px 3px #00000029, 0px 5px 14px #00000029 !important;
}

.fade-in {
    opacity: 0;
}

.position-unset {
    position: unset !important;
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
}

.nav-link a {
    position: relative;
}

.nav-link a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #66B9C8;
    transition: width 0.2s ease-out;
}

.nav-link:hover a:before {
    width: 100%;
}

.logo {
    margin: 0 !important;
}

.bold-lg-wrapper strong {
    font-size: 20px !important;
}

.home-hero-logo {
    max-width: 50vw;
}

.home-wrap-highlight strong {
    font-size: 16px;
}

.home-activity-card {
    width: fit-content;
}

.home-activity-card__label {
    display: inline-block;
    width: fit-content;
    padding: 2px 6px !important;
    margin: 0 !important;
}

.home-activity-card__title {
    padding: 0 !important;
    margin: 0 !important;
}

.canvas {
    position: relative;
}

.canvas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(12rem, 100%), 1fr));
    grid-gap: 32px;
}

.canvas-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*opacity: 0;*/
    /*transform: translateY(10px);*/
}

.canvas-grid-item__image {
    width: 195px;
    height: 195px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    background-position: center;
    background-size: 150%;
}

.canvas-grid-item__title {
    color: var(--wp--preset--color--custom-foreground, #354E57);
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 30px;
    line-height: 1.1;
    text-align: center;
    margin: 0 !important;
}

.canvas-grid-item__icon {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease-out;
}

.canvas-grid-item:hover .canvas-grid-item__icon {
    transform: translateY(3px);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    background-color: #F7F5F1;
    border-radius: 20px;
    max-width: 80vw;
    width: max-content;
    overflow: scroll;
    padding: 50px 40px;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.modal-container::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.modal.open {
    display: block;
}

.modal-bg {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: 10;
    cursor: pointer;
}

.modal-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 40px;
}

.canvas-modal-image {
    max-width: 70vw;
    width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 17px;
    overflow: hidden;
}

.canvas-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.canvas-modal-main {
    position: relative;
    max-width: 70vw;
    width: 350px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.canvas-modal-title {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.canvas-modal-subtitle {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
}

.canvas-modal-content {
    /*font-family: var(--wp--preset--font-family--montserrat);*/
    font-size: 14px;
    font-weight: 300;
}

.canvas-modal-content ul {
    margin: 0;
    padding-left: 20px;
}

.canvas-modal-content ul li {
    list-style: none;
    position: relative;
}

.canvas-modal-content ul li:before {
    content: "";
    position: absolute;
    top: 7px;
    left: -15px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.canvas-modal-label {
    position: absolute;
    top: 50%;
    right: -70px;
    font-size: 12px;
    font-weight: 300;
    border-width: 1px;
    border-style: solid;
    padding: 4px 12px;
    transform: translateY(-50%) rotate(-90deg);
}

.canvas-modal-download {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.canvas-modal-download__btn {
    font-size: 10px;
    font-weight: 300;
    border-width: 1px;
    border-style: solid;
    padding: 2px 4px;
    transition: background-color .2s ease, color .2s ease;
}

.toolbox-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto !important;
}

.toolbox-slider-card {
    /*height: 400px;*/
    border-radius: 21px;
    padding: 20px;
}

.toolbox-slider-card__top {
    height: 160px;
}

.toolbox-slider-card__label {
    display: flex;
    flex-direction: column;
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.toolbox-slider-card__label span {
    font-size: 40px;
}

.toolbox-slider-card__content {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 12px;
    font-weight: 300;
}

.toolbox-slider-card__content ul {
    padding-left: 20px !important;
}

.toolbox-slider-card__image,
.toolbox-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 17px;
    overflow: hidden;
}

.toolbox-slider-card__link {
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 24px;
    transition: background-color .2s ease;
}

.toolbox-slider-card__link:hover {
    background-color: #FFF3E4;
}

.toolbox-slider-card__image img,
.toolbox-card-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.swiper-button-prev {
    left: -40px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    color: black !important;
    font-size: 24px !important;
}

.swiper-button-next {
    right: -40px !important;
}

.toolbox-card-image {
    height: 200px;
}

.toolbox-card-image figure {
    width: 100%;
    height: 100%;
}


.toolbox-card ul {
    list-style: none;
    padding-left: 0 !important;
}

.toolbox-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.toolbox-card li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #66B9C8;
    border-radius: 50%;
}

.toolbox-card-1 li:before {
    background-color: #BA8E9A;
}

.toolbox-card-2 li:before {
    background-color: #354E57;
}

.toolbox-card-3 li:before {
    background-color: #A0CBCD;
}

.toolbox-card-4 li:before {
    background-color: #67932C;
}

.toolbox-card-5 li:before {
    background-color: #354E57;
}

.home-meet-list {
    list-style: none;
}

.home-meet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.home-meet-list li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #66B9C8;
    border-radius: 50%;
}

/*  STORY */
.story-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45vw !important;
    aspect-ratio: 4 / 3;
}

.story-image figure {
    margin: 0 !important;
    max-width: 100% !important;
}

.story-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* TEAM */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-grid-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 600px;
}

.team-grid-item.odd {
    align-self: flex-end;
}

.team-grid-item__content {
    font-family: var(--wp--preset--font-family--josefin-sans);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid-item__content p {
    margin: 0 !important;
}

.team-grid-item__btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 40px;
    border-radius: 14px;
    color: white;
    font-size: 14px !important;
}

.team-modal-container {
    top: 10%;
    max-height: 80vh;
    transform: translate(-50%, 0);
}

.team-modal-image {
    align-self: flex-start;
    width: 338px;
    height: 363px;
    border-radius: 17px;
    overflow: hidden;
}

.team-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-modal-main {
    max-width: 440px;
}

.team-modal-label {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 14px;
    font-weight: 300;
    width: max-content;
    padding: 4px 8px;
    margin-bottom: 40px;
}

.team-modal-title {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 40px;
    font-weight: 700;
    margin: 0 !important;
}

.team-modal-content {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

.team-modal-content p {
    margin-top: 0 !important;
    margin-bottom: 12px;
}

/* ACTIVITIES */
.activities-section-1 {
    position: relative;
}

.activities-image {
    position: absolute;
    z-index: -1;
}

.activities-image-1 {
    right: 0;
    bottom: -20vw;
    width: 45vw !important;
    aspect-ratio: 1 / 1;
}

.activities-image-2 {
    left: 0;
    top: -35vw;
    width: 45vw !important;
    aspect-ratio: 1 / 1;
}

.activities-image-3 {
    right: 0;
    top: -15vw;
    width: 45vw !important;
    aspect-ratio: 1 / 1;
}

.activities-ul {
    width: 240px;
    list-style: none;
    padding-left: 0 !important;
}

.activities-ul li {
    position: relative;
    padding-left: 16px;
}

.activities-ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #BA8E9A;
    border-radius: 50%;
}

/*.activities-heading-stroke {*/
/*    -webkit-text-stroke: 1px #354E57;*/
/*    -webkit-text-fill-color: transparent;*/
/*}*/

.activities-row {
    flex-wrap: wrap !important;
}

.activities-card {
    width: 260px !important;
}

.activities-card-top {
    height: 150px;
}

.activities-card ul {
    list-style: none;
    padding-left: 0;
}

.activities-card li {
    position: relative;
    padding-left: 12px;
}

.activities-card li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #66B9C8;
    border-radius: 50%;
}

.activities-card-image {
    overflow: hidden;
}

.activities-card-image figure {
    width: 100%;
    height: 100%;
    margin: 0 !important;
}

.activities-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-toast-image {
    position: relative;
}

.blog-toast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-toast-image .icon {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.caloe-steps-card {
    position: relative;
}

.caloe-steps-card .caloe-steps-arrow {
    position: absolute;
    width: 100%;
}

.caloe-steps-card .caloe-steps-download__arrow {
    transition: transform .4s ease-out;
}

.caloe-steps-card:hover .caloe-steps-download__arrow {
    transform: translateX(5px);
}

.caloe-steps-card .caloe-steps-arrow.caloe-steps-arrow-1,
.caloe-steps-card .caloe-steps-arrow.caloe-steps-arrow-3 {
    top: -60px;
    left: 50%;
}

.caloe-steps-card .caloe-steps-arrow.caloe-steps-arrow-2,
.caloe-steps-card .caloe-steps-arrow.caloe-steps-arrow-4 {
    bottom: -70px;
    left: 33%;
}

.caloe-step-2 svg path {
    fill: #D55C74;
}

.caloe-step-3 svg path {
    fill: #DD96B7;
}

.caloe-step-4 svg path {
    fill: #B8BFAB;
}

.caloe-step-5 svg path {
    fill: #76A23A;
}

.caloe-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    grid-gap: 32px;
    align-self: end; */
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-end;
}

.caloe-grid-item {
    width: 240px;
    height: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    border-radius: 24px;
    padding: 16px 16px 48px;
    background-color: #FCF5ED;
    transition: background-color 0.4s ease-out;
    /*opacity: 0;*/
    /*transform: translateY(10px);*/
}

.caloe-grid-item:hover {
    background-color: #FFF3E4;
}

.caloe-grid-item__image {
    width: 195px;
    height: 195px;
    border-radius: 50%;
    overflow: hidden;
    /* margin-bottom: 16px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat; */
}

.caloe-grid-item__image img {
    width: 100%;
    height: 100%;
}

.caloe-grid-item__title {
    color: var(--wp--preset--color--custom-foreground, #354E57);
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 28px;
    line-height: 1.1;
    text-align: center;
    margin: 0 !important;
}

.caloe-download-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.caloe-grid-item:hover .caloe-grid-item__icon {
    transform: translateY(3px);
}

ul.caloe-list {
    list-style: none;
    padding-left: 0 !important;
    margin-top: 0 !important;
}

ul.caloe-list li {
    position: relative;
    margin-bottom: 8px;
}

ul.caloe-list li::before {
    position: absolute;
    left: -24px;
    top: 0.1em;
    /* make sure the image fits well */
}

ul.caloe-list.caloe-list-1 li::before {
    content: url('/wp-content/themes/co-wonders/assets/images/icon-list-bullet.svg');
    /* or use an emoji/character */
}

ul.caloe-list.caloe-list-2 li::before {
    content: url('/wp-content/themes/co-wonders/assets/images/icon-list-bullet-black.svg');
    /* or use an emoji/character */
}

ul.caloe-list.caloe-list-1 li:nth-child(even)::before {
    transform: rotate(45deg);
}

ul.caloe-list.caloe-list-2 li:nth-child(2)::before {
    transform: rotate(-70deg);
}

ul.caloe-list.caloe-list-2 li:nth-child(3)::before {
    transform: rotate(-105deg);
}

ul.caloe-list.caloe-list-2 li:nth-child(4)::before {
    transform: rotate(-45deg);
}

/* Nuraghi */

.nuraghi-text-ul {
    list-style: none;
    padding-left: 0 !important;
}

.nuraghi-text-ul li {
    position: relative;
    color: #231F20;
    margin-bottom: 12px;
}

.nuraghi-text-ul li strong {
    font-weight: 700;
}

.nuraghi-text-ul li::before {
    content: url('/wp-content/themes/co-wonders/assets/images/icon-list-bullet-green.svg');
    position: absolute;
    left: -24px;
    top: 0;
}

.nuraghi-text-ul li:nth-child(2)::before {
    transform: rotate(-45deg);
}

.nuraghi-text-ul li:nth-child(3)::before {
    transform: rotate(-90deg);
}

.nuraghi-text-ul li:nth-child(4)::before {
    transform: rotate(-135deg);
}

.nuraghi-text-ul li:nth-child(5)::before {
    transform: rotate(-180deg);
}

.nuraghi-text-ul li:nth-child(6)::before {
    transform: rotate(-225deg);
}

.nuraghi-grid-item {
    width: 100%;
    display: flex;
    position: relative;
}

.nuraghi-grid-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.nuraghi-grid-item_content,
.nuraghi-grid-item_video {
    width: 50%;
}

.nuraghi-grid-item_video {
    position: relative;
    height: 50vw;
}

.nuraghi-grid-item_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nuraghi-grid-item_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 32px 0;
}

.nuraghi-grid-item_content__title {
    max-width: 430px;
    color: var(--wp--preset--color--custom-foreground-dark, #231f20);
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0;
}

.nuraghi-grid-item_content__text {
    color: var(--wp--preset--color--custom-foreground, #231F20);
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 14px;
    text-align: center;
    max-width: 460px;
    margin-bottom: 60px;
}

.nuraghi-grid-item_content__text strong {
    font-weight: 700;
}

.nuraghi-grid-item_content__circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #B9CEB1;
    margin: 16px auto;
}

.nuraghi-grid-item_card {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border: 1px solid #574954;
    border-radius: 24px;
    padding: 16px 32px 48px;
    background-color: #FCF5ED;
    transition: background-color 0.4s ease-out;
}

.nuraghi-grid-item_card:hover {
    background-color: #FFF3E4;
}

.nuraghi-grid-item_card__image {
    width: 195px;
    height: 195px;
    border-radius: 50%;
    overflow: hidden;
}

.nuraghi-grid-item_card__image img {
    width: 100%;
    height: 100%;
}

.nuraghi-grid-item:nth-child(1) .nuraghi-grid-item_card__title,
.nuraghi-grid-item:nth-child(2) .nuraghi-grid-item_card__title {
    font-size: 28px;
}

.nuraghi-grid-item_card__title {
    color: var(--wp--preset--color--custom-foreground, #354E57);
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 20px;
    line-height: 1.1;
    text-align: center;
    margin: 0 !important;
}

.nuraghi-grid-item_card__btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.nuraghi-grid-item_card__btn-arrow {
    width: 13px;
    height: 21px;
}

.nuraghi-grid-item_card__btn-icon {
    width: 41px;
    height: 50px;
}

.nuraghi-custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 10;
}

.nuraghi-funders-image .kt-inside-inner-col {
    position: relative;
}

.nuraghi-funders-logo {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

@media screen and (max-width: 1400px) {
    .nuraghi-grid-item_content__text {
        max-width: 400px;
    }
}

@media screen and (max-width: 1300px) {
    .nuraghi-grid-item:nth-child(even) .nuraghi-grid-item_card {
        left: 46%;
    }

    .nuraghi-grid-item:nth-child(odd) .nuraghi-grid-item_card {
        left: 54%;
    }
}


@media screen and (max-width: 1140px) {
    .activities-row .activities-card-stack {
        order: 4;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        flex-basis: unset !important;
        gap: 2em var(--wp--preset--spacing--50) !important;
    }

    .activities-row .activities-card-stack .activities-card {
        margin-top: 0;
    }

    .nuraghi-grid-item {
        flex-direction: column !important;
        height: auto;
    }

    .nuraghi-grid-item:nth-child(even) {
        flex-direction: column !important;
    }

    .nuraghi-grid-item_content,
    .nuraghi-grid-item_video {
        width: 100%;
    }

    .nuraghi-grid-item_video {
        height: 100vw;
    }

    .nuraghi-grid-item_card {
        position: static;
        top: unset;
        left: unset !important;
        transform: translate(0, 0);
        margin: 40px auto 120px;
        z-index: 10;
        max-width: 320px;
        order: 3;
    }
}


@media screen and (max-width: 980px) {
    .team-modal-wrapper {
        flex-direction: column;
    }

    .swiper-button-prev {
        left: -25px !important;
    }

    .swiper-button-next {
        right: -25px !important;
    }
}


@media screen and (max-width: 767px) {
    .reverse .kt-row-column-wrap {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .story-right {
        padding-bottom: 8rem !important;
    }

    .story-image {
        position: unset !important;
        right: unset !important;
        bottom: unset !important;
        width: 100% !important;
        aspect-ratio: 4 / 3;
    }

    .activities-row {
        justify-content: center !important;
    }

    .activities-image {
        display: none;
    }

    .activities-contact {
        padding-left: 0 !important;
    }

    .caloe-steps-card .caloe-steps-arrow {
        display: none;
    }

    .caloe-grid {
        justify-content: center;
    }

    .nuraghi-grid-item_content__title {
        font-size: 28px;
    }

    .nuraghi-grid-item_content__text {
        margin-bottom: 20px;
    }

    .nuraghi-funders-logo {
        position: absolute;
        top: 0;
        left: 0;
        right: unset;
        transform: translate(0, -50%);
    }

    .nuraghi-funders-logo img {
        width: 190px;
        height: 190px;
    }

    .nuraghi-funders-image__team img {
        width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .modal-container {
        top: 5vw;
        left: 0;
        transform: translate(0, 0);
        padding: 0;
        width: 100vw;
        max-width: unset;
        max-height: 100vh;
        height: 90vh;
        overflow-x: hidden;
    }

    /*.canvas-modal-container {*/
    /*    top: 0;*/
    /*    height: 100vh;*/
    /*}*/

    .team-modal-wrapper {
        padding-top: 40px !important;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }

    .modal-wrapper {
        flex-direction: column;
        padding: 24px;
    }

    .team-modal-wrapper {
        padding: 40px 24px 24px !important;
    }

    .canvas-modal-main {
        width: 300px;
        height: auto;
    }

    .canvas-modal-download {
        bottom: -40px;
    }

    .canvas-modal-label {
        right: -50px;
    }

    .team-grid {
        gap: 80px;
    }

    .team-grid-item__content,
    .team-modal-title {
        font-size: 24px;
    }
}

@media (min-width: 782px) {
    .wp-block-columns.activities-row {
        flex-wrap: wrap !important;
    }
}