/* Heliconia CSS for wordpress plugin*/
/* Root */
:root {
    --heli_orange: #fab607;
}
.heli_orange {
    color: var(--heli_orange);
}
/* GENERAL */
.justifyLeft, .justifyLeftToBlock {
    display: flex;
    position: relative;
    justify-content: flex-start;
}
.spaceBetween {
    display: flex;
    position: relative;
    justify-content: space-between;
}
.justifyCenter {
    display: flex;
    position: relative;
    justify-content: center;
}
.top {
    align-items: flex-start;
}
.center {
    align-items: center;
}
.wrap {
    flex-wrap: wrap;
}
.gap {
    gap: 1em;
}
.gapBig {
    gap: 2em;
}
.gapSmall {
    gap: .5em;
}
.flex {
    flex: 1;
}
.sp {
    height: 1em;
}
.small {
    font-size: 90%;
}
.alignCenter {
    text-align: center;
}
.heli_seperator {
    border: 1px solid var(--heli_orange);
    height: 20px;
}

/* VIDEO LIST */
#heli_videoSelectCntr, #heli_partnerSelectCntr {
    font-family: 'Roboto', sans-serif;
    display: block;
    position: relative;
    color: #FFF;
}
.heli_selector {
    background-color: transparent;
    margin: 0;
    padding: .5em 0;
    margin-right: 1em;
    border-width: 0;
    outline-width: 0;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255,255,255,.5);
    box-sizing: border-box;
}
.heli_selector:hover {
    color: var(--heli_orange);
}
.heli_selector_active {
    border-bottom: .25em solid var(--heli_orange);
    color: #FFF;
}
.heli_header_selector {
    background-color: transparent;
    margin: 0;
    border-width: 0;
    outline-width: 0;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255,255,255,.25);
    box-sizing: border-box;
}
.heli_header_selector:hover {
    color: var(--heli_orange);
}
.heli_header_selector_active {
    color: #FFF;
}
#heli_mainVideoCntr {
    margin-bottom: 2em;
}
#heli_mainVideoCntr img {
    display: block;
    position: relative;
    width: calc(100% *(2/3));
    border-radius: .25em;
}
#heli_videoListCntr {
    display: block;
    position: relative;
    width: 100%;
}
#heli_videoListCntr .item {
    display: block;
    position: relative;
    width: calc(100%/6);
    box-sizing: border-box;
    padding: .25em;
    border-radius: .25em;
    cursor: pointer;
}
#heli_videoListCntr .item:hover {
    background-color: rgba(255,255,255,.2);
}
#heli_videoListCntr .item div {
    margin-bottom: 1em;
}
#heli_videoListCntr .item img {
    display: block;
    position: relative;
    border-radius: .25em;
    width: 100%;
}

/* PARTNER LIST */
#heli_partnerListCntr {
    display: block;
    position: relative;
    overflow-x: scroll;
    white-space: nowrap;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
#heli_partnerListCntr::-webkit-scrollbar {
    display: none;
}
#heli_partnerListCntr .item {
    display: inline-block;
    position: relative;
    width: 20em;
    box-sizing: border-box;
    padding: .25em;
    border-radius: .25em;
}
#heli_partnerListCntr .item div {
    margin-bottom: 1em;
}
#heli_partnerListCntr .item img {
    display: block;
    position: relative;
    border-radius: .25em;
    width: 100%;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .justifyLeft {
        flex-wrap: wrap;
    }    
    .justifyLeftToBlock {
        display: block;
    }
    #heli_videoListCntr .item {
        width: calc((100%/2) - .5em);
    }
    #heli_mainVideoCntr img {
        width: 100%;
        margin-bottom: 1em;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 350px) {
    #heli_videoListCntr .item {
        width: 100%;
    }
}