/** INDEX
====================================================================

* 1. REQUIRES
* 2. GENERAL
* 3. LAYOUT
* 4. HEADINGS
* 5. GRID / ELEMENTS STYLE

**/

/* 1. VARIABLES
==================================================================== */

/* Variables */

@import url(../components/variables.css);

/* Orden alfabético */

@import url(../components/cards/card-basic.css);
@import url(../components/cards/card-box.css);
@import url(../components/cards/card-hover.css);
@import url(../components/cards/card-pro.css);
@import url(../components/cards/card-pro.css);
@import url(../components/cards/card-products.css);
@import url(../components/favorites.css);
@import url(../components/form.css);
@import url(../components/hero.css);
@import url(../components/layouts/sponsors/sponsors-common.css);
@import url(../components/lists/list-tickets.css);
@import url(../components/lists/list-sessions.css);
@import url(../components/notifications/notifications.css);
@import url(../components/modal.css);
@import url(../components/splide-slider.css);
@import url(../components/utilities.css);

/* Sessions stage */
@import url(../components/session_stage/chat.css);
@import url(../components/session_stage/qa.css);
@import url(../components/session_stage/polls.css);
@import url(../components/session_stage/reactions.css);
@import url(../components/session_stage/stage.css);

/* 2. GENERAL
==================================================================== */

.body{
    padding-top:0;
}

.virtual-section {
    padding: 24px 0;
}

.virtual-section .container {
    max-width: 1004px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media screen and (min-width: 998px) {
    .virtual-section {
        padding: 70px 0;
    }
}


/* 3. LAYOUT 
==================================================================== */

.container {
    max-width: var(--breakpoint-lg);
    margin: 0 auto;
    padding: 0 20px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.column {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 3rem;
}

.column-main {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}
.column-sixth {
    width: 50%;
}

@media screen and (min-width: 640px) {

    .column-tenth {
        width: 20%;
    }
    .column-sixth {
        width: 25%;
    }
    .column-quarter {
        width: 50%;
    }
    .column-third {
        width: 50%;
    }

    .column-half {
        width: 50%;
    }
    .column-two-thirds{
        width: 50%;
    }
    .column-fifth {
        width: 25%;
    }
    .column-main {
        width: 75%;
    }
    .column-four-fifths{
        width: 75%;
    }
}

@media screen and (min-width: 998px) {
    body {
        padding-top: 110px;
    }

    .column-tenth {
        width: 16.6%;
    }
    .column-sixth {
        width: 20%;
    }
    .column-fifth {
        width: 25%;
    }
    .column-quarter {
        width: 25%;
    }
    .column-third {
        width: 33.33%;
    }
    .column-half {
        width: 50%;
    }
    .column-two-thirds{
        width: 66.66%;
    }
    .column-main {
        width: 75%;
    }
    .column-four-fifths{
        width: 75%;
    }
}

@media screen and (min-width: 1380px) {
    body {
        padding-top: 110px;
    }
    .column-tenth {
        width: 10%;
    }
    .column-sixth {
        width: 16.6%;
    }
    .column-fifth {
        width: 20%;
    }
    .column-quarter {
        width: 25%;
    }
    .column-third {
        width: 33.33%;
    }
    .column-half {
        width: 50%;
    }
    .column-two-thirds{
        width: 66.66%;
    }
    .column-main {
        width: 75%;
    }
    .column-four-fifths{
        width: 80%;
    }
}


/* 4. HEADINGS / TITULARES 
==================================================================== */

.layout-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.layout-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border-radius: 4px;
}

.layout-title__white {
    color: #fff;
}

.layout-title__white::after {
    background: #fff;
}


/* 5. GRID / ELEMENTS STYLE 
==================================================================== */


/* Column left box Vale la pena crear clases especificas para el left box a nivel input i select */

.left-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0 0 3px rgb(0 0 0 / 20%);
}

.left-box--h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 0.05em solid #dfdfdf;
}

.left-box--h4 {
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sticky-container {
    position: sticky;
    top: 130px;
}


/* END Column left box */
