@font-face {
    font-family: "AvenirNext";
    src: url('/static/fonts/AvenirNext-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNext";
    src: url('/static/fonts/AvenirNext-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNext-DemiBold";
    src: url('/static/fonts/AvenirNext-DemiBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

:root {
    --midnight-blue: #091133;;
}

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #fff;
    font-family: "AvenirNext", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    font-size: 15px;
}

[v-cloak] {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 32px 0;
    font-weight: bold;
}

h1 {
    font-size: 32px;
}

.h-alt {
    margin: 0 0 16px 0;
}

.margin-0 {
    margin: 0;
}

.margin-left {
    margin-left: 8px;
}

.margin-right {
    margin-right: 8px;
}

.relative {
    position: relative;
}

.float-right {
    float: right;
}

ul {
    padding-left: 0;
    list-style-type: none;
}

ul.list-disc {
    padding-left: 18px;
    list-style-type: disc;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    margin: 0;
}

/* generic */
.flex {
    display: flex;
    gap: 16px;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.link {
    text-decoration: underline;
}

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

.main {
    position: relative;
    transition: margin .3s;
}

.main-right-first {
    height: 280px;
    position: relative;
    color: #fff;
    display: none;
}

.main-right-first-content {
    margin: 0;
    position: absolute;
    top: 120px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
}

.main-right-first-content p {
    position: relative;
}

.main-right-first-icon {
    position: absolute;
    left: -48px;
    top: -5px;
}

.main-left-second {
    position: relative;
    height: 300px;
}

.image {
    display: block;
    width: 100%;
    height: 100%;
}

.signup-container {
    float: left;
    width: 100%;
}

.signup-container h1 {
    font-size: 32px;
}

.signup-img {
    border-radius: 30px;
    max-height: 380px;
    min-height: 380px;
    object-position: top;
}

.signup-token {
    border: 1px solid #ddd;
    width: 140px;
    padding: 16px 0 16px 0;
    font-size: 36px;
    outline: none;
    text-align: center;
    transition: background-color .3s;
    margin: 0 4px 0 4px;
}

.signup-token:focus {
    background-color: #f9f9f9;
}

.message {
    background-color: #fcf8e3;
    margin: 0 auto;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.gradient {
    background: linear-gradient(111.12deg, #40DB87 3.12%, #52F29B 104.52%);
    color: #fff;
    border: none;
}

.text-dots {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.text-wrap {
    white-space: pre-wrap;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-italic {
    font-style: italic;
}

.text-white {
    color: #fff;
}

.text-white a {
    color: #fff;
}

.text-small {
    font-size: 12px;
}

.text-upper {
    text-transform: uppercase;
}

.white {
    background-color: #fff;
}

.gray {
    background-color: #f1f1f1;
    background: #f1f1f1;
}

.light-blue {
    background-color: #EFF0FA;
}

.green {
    background-color: #40DB88;
}

.purple {
    background-color: #8C6CE8;
}

.midnight-blue {
    background-color: var(--midnight-blue);
}


.overlay {
    z-index: 5; /* hide absolute */
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    transition: all .3s;
    overflow-y: auto;
}

.overlay-closer {
    z-index: 1;
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
    transition: transform .3s ease;
}

.overlay-closer:hover {
    transform: scale(1.1);
}

.overlay-inner {
    background: #fff;
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
    width: 90%;
    border-radius: 30px;
}

.overlay-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.overlay-inner a {
    text-decoration: underline;
}

.overlay-bubble {
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: -50px;
    color: #fff;
    line-height: 100px;
    font-size: 24px;
}

.overlay-bubble > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.overlay-bubble > svg {
    margin-top: 28px;
}

.overlay-enter {
    opacity: 0;
}
  
.overlay-leave-active {
    opacity: 0;
}

.video-left {
    float: left;
    width: 100%;
}

.video-right {
    display: none;
}

.video-text-wrapper {
    background-color: #40DB88;
    color: #fff;
    transform: padding;
    min-height: 700px;
    height: calc(100vh - 220px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: calc(100vh - 220px);
}

.video-image {
    width: 100%;
    position:absolute;
    top:0;
    left: 0;
    object-fit: cover;
    min-height: 700px;
    height: calc(100vh - 220px);
}

.video-right > video{
    height: calc(100vh - 220px);
    position: relative;
    width: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: center;
}

@keyframes splashFadeInOut {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.splash-fade {
    opacity: 0;
    animation-name: splashFadeInOut;
    animation-timing-function: ease-in-out;
    animation-duration: 6s;
}

.splash-1 {
    animation-delay: 3s;
}

.splash-2 {
    animation-delay: 6s;
}

.splash-3 {
    animation-delay: 9s;
}

.splash-4 {
    animation-delay: 12s;
} 

.splash-5 {
    animation-delay: 15s;
}

.splash-6 {
    animation-delay: 18s;
}

/* .splash-7 {
    animation-delay: 21s;
} */

/* table */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    padding-bottom: 8px;
}

.table-bordered {
    border-collapse: collapse;
}

.table-bordered td {
    padding: 8px 0 8px 0;
}

.table-bordered tr {
    border-bottom: 1px solid #E5E5E5;
}

.table-bordered tr:last-child {
    border-bottom: none;
}

/* form */
.form-inline {
    display: inline-block;
}

.form-label {
    text-align: left;
    display: block;
    margin-top: 16px;
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color .3s;
}

.form-input-max-width {
    max-width: 480px;
}

.form-input:hover {
    border-color: #888;
}

.form-textarea {
    width: 100%;
    height: 240px;
    resize: none;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color .3s;
}

.form-textarea:hover {
    border-color: #888;
}

.form-radio-hidden {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    padding: 0;
}

.form-radio-hidden-label {
    font-family: "AvenirNext-DemiBold" !important;
    display: inline-block;
    border: 2px solid #000;
    padding: 8px 32px;
    font: inherit;
    font-weight: bold;
    text-align: center;
    border-radius: 20px;
    transition: background-color .3s;
    text-align: center;
    cursor: pointer;
    user-select: none;
    margin-bottom: 16px;
}

.form-radio-hidden:checked+label {
    background-color: #000;
    color: #fff;
}

.form-tip {
    color: #626262;
    font-size: 12px;
    margin-top: 4px;
    text-align: left;
}

.form-error {
    border-color: #ff9d9d;
}

.form-error:hover {
    border-color: #ff9d9d;
}

img.form-error {
    box-shadow: 0px 0px 20px #ff9d9d;
}

/* overwrite choises */
.choices__inner {
    background-color: #fff;
    border-radius: 8px;
    min-height: 40px;
    border: 1px solid #ddd;
}

.choices__inner-alt {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    min-height: 40px;
    border: 1px solid #fff;
    padding: 7.5px 7.5px 3.75px;
    font-size: 14px;
    overflow: hidden;
    text-align: left;
}

.choices__list {
    text-align: left;
}

.choices__input {
    background-color: #fff;
    font-size: 16px;
    padding: 0;
}

.choices__list--multiple .choices__item {
    background-color: #000;
    border: 1px solid #000;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #000;
    border: 1px solid #000;
}

.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
    border-left: 1px solid #fff;
}

.choices {
    margin-bottom: 0;
}

/* select */
.filter-select {
    display: block;
    font: inherit;
    font-size: 16px;
	color: #000;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%;
	margin: 0;
    height: 44px;
	border: 2px solid #ddd;
	border-radius: 8px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75593 7.79363C6.35716 8.25409 5.64284 8.25409 5.24407 7.79363L0.504769 2.32116C-0.0561072 1.67351 0.403946 0.666503 1.2607 0.666503L10.7393 0.666502C11.5961 0.666502 12.0561 1.67351 11.4952 2.32116L6.75593 7.79363Z' fill='%236F6F6F'/%3E%3C/svg%3E"),
        linear-gradient(to bottom, #ffffff 0%,#fff 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    cursor: pointer;
    outline: none;
    transition: border-color .3s;
}

.filter-select::-ms-expand {
	display: none;
}

.filter-select:hover {
	border-color: #0A5B30;
}

.filter-select:focus {
	outline: none;
}

.filter-select option {
    color: #000;
	font-weight:normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .filter-select, :root:lang(ar) .filter-select, :root:lang(iw) .filter-select {
	background-position: left .7em top 50%, 0 0;
	padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
.filter-select:disabled, .filter-select[aria-disabled=true] {
	color: graytext;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), #fff;
}
.filter-select:disabled:hover, .filter-select[aria-disabled=true] {
	border-color: #aaa;
}

.filter-select-highlight {
    color: #fff;
    border-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75593 7.79363C6.35716 8.25409 5.64284 8.25409 5.24407 7.79363L0.504769 2.32116C-0.0561072 1.67351 0.403946 0.666503 1.2607 0.666503L10.7393 0.666502C11.5961 0.666502 12.0561 1.67351 11.4952 2.32116L6.75593 7.79363Z' fill='%23FFFFFF'/%3E%3C/svg%3E"),
        linear-gradient(111.12deg, #40DB87 3.12%, #52F29B 104.52%);
}

.text-light {
    color: #828282;
}

.text-dark-green {
    color: #0A5B30;
}

.text-purple {
    color: #351B81;
}

.text-red {
    color: #FF4A4A;
}

.text-strong {
    font-weight: bold;
}

.list-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 680px) {
    .list-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .list-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.list-index {
    position: sticky;
    top: 60px;
    background-color: #40DB88;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
    margin-top: 32px;
}

@media (min-width: 680px) {
    .list-index {
        top: 100px;
    }
}

.list-index-item {
    padding: 24px 8px 24px 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: ease .3s;
}


@media (min-width: 680px) {
    .list-index-item {
        font-size: 24px;
    }
}

.list-index-item:hover {
    transform: scale(1.5);
}

.group:after {
    content: "";
    display: table;
    clear: both;
}

.group-fifty {
    float: left;
    width: 50%;
}

.group-fifty:first-child {	
    padding-right: 16px;	
}	

.group-fifty:last-child {	
    padding-left: 16px;	
}

.group-column-third {
    float: left;
    width: 33.33%;
    text-align: center;
}

.group-column-third:first-child {
    text-align: left;
}

.group-column-third:last-child {
    text-align: right;
}

.group-column {
    float: left;
    width: 100%;
    position: relative;
}

.group-half {
    float: left;
    width: 50%;
}

/* navigation */
.nav-bar {
    background-color: #fff;
    position: sticky;
    top: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.nav-logo {
    height: 60px;
    display: block;
    background-image: url("/static/images/app/upformatch-logo-dark.png");
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: 16px 50%;
    transition: height .3s;
}

.nav-action {
    float: right;
    padding: 12px 16px 10px 16px;
}

.nav-action-bar1, .nav-action-bar2, .nav-action-bar3 {
    width: 35px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.nav-action-open .nav-action-bar1 {
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

.nav-action-open .nav-action-bar2 {
    opacity: 0;
}
  
.nav-action-open .nav-action-bar3 {
    transform: rotate(45deg) translate(-5px, -5px) ;
}

.nav-menu {
    display: none;
}

.nav-menu-open {
    display: grid;
    padding-bottom: 16px;
    justify-items: center;
}

.nav-link {
    display: block;
    padding: 16px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.nav-link-active > .nav-link-border {
    padding-bottom: 2px;
    border-bottom: 2px solid #000;
}

.nav-link:hover > .nav-link-border {
    padding-bottom: 2px;
    border-bottom: 2px solid #000;
}

.nav-profile-circle {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
}

.nav-profile {
    display: block;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
}

.nav-profile-active {
    border-color: #000;
}

.nav-lang {
    margin-top: 29px;
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
}

.nav-bar-public-alt .nav-lang {
    color: #fff;
}

/* index / nav-bar-public */
.nav-bar-public {
    background: #fff;
    transition: background .3s;
}

.nav-bar-public-alt {
    background: #40DB88;
    box-shadow: none;
    color: #fff;
}

.nav-bar-public-alt a {
    color: #fff;
}

.nav-bar-public-alt .nav-link:hover > .nav-link-border {
    border-color: #fff;
}

.nav-bar-public-alt .nav-action-bar1 {
    background-color: #fff;
}

.nav-bar-public-alt .nav-action-bar2 {
    background-color: #fff;
}

.nav-bar-public-alt .nav-action-bar3 {
    background-color: #fff;
}

.nav-bar-public-alt .nav-logo {
    background-image: url("/static/images/app/upformatch-logo-white.png");
}
/* nav bar open */ 
.nav-bar-public-alt.nav-bar-open {
    background-color: #fff;
}

.nav-bar-public-alt.nav-bar-open .nav-link:hover > .nav-link-border {
    border-color: #000;
}

.nav-bar-public-alt.nav-bar-open .nav-logo {
    background-image: url("/static/images/app/upformatch-logo-dark.png");
}

.nav-bar-public-alt.nav-bar-open .nav-action-bar1 {
    background-color: #000;
}

.nav-bar-public-alt.nav-bar-open .nav-action-bar2 {
    background-color: #000;
}

.nav-bar-public-alt.nav-bar-open .nav-action-bar3 {
    background-color: #000;
}

.nav-bar-public-alt.nav-bar-open .nav-link {
    color: #000;
}

.nav-bar-public-alt .nav-link-active > .nav-link-border {
    border-color: #fff;
}

/* home */

.invite-status {
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding-left: 26px;
    float: left;
    width: 50%;
    max-width: 250px;
}

/* landing */

.landing {
    display: grid;
    align-items: center;
    margin: 0 auto;
    column-gap: 96px;
    row-gap: 48px;
    max-width: 1248px;
    padding: 32px 16px 32px 16px;
    overflow: hidden;
}


@media (min-width: 1024px) {
    .landing {
        row-gap: 192px;
        overflow: unset;
        grid-template-columns: 1fr 1fr;
        padding: 64px 16px 64px 16px;
    }    
}

.landing-item {
    position: relative;
}

.pad{
    padding: 50px 0px;
}

.landing-item:nth-child(2) {
    grid-row: 1;
}

.landing-item:nth-child(6) {
    grid-row: 5;
}

@media (min-width: 1024px) {
    .landing-item:nth-child(2) {
        grid-row: unset;
    }
    
    .landing-item:nth-child(6) {
        grid-row: unset;
    }
}

.landing-team {
    position: absolute;
    top: -48px;
    left: -64px;
    height: calc(100% + 48px);
    z-index: -1
}

.landing-cup {
    position: absolute;
    top: -48px;
    right: 0;
    height: calc(100% + 48px);
    z-index: -1
}

@media (min-width: 1440px) {
    .landing-cup {
        right: -64px;
    }
}

.landing-row {
    margin-top: 32px;
}

.landing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-btn {
    margin-top: 48px;
}

/* index */


.index-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 50px
}

@media (max-width: 600px) {
    .index-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0px 10px
    }
}


.index-lang {
    background: none;
    border: none;
    font: inherit;
    color: #fff;
    cursor: pointer;
}



/* Ambassador */

.index-ambassador > h2{
    text-align: center;
    margin: 50px 0px;
}

.index-ambassador img{
    width: 300px;
    max-width: 100%;
    object-fit: contain;
}

.index-ambassador{
    margin: auto;
    position: relative;
    width: 80%;
    padding-top: 10px;
    padding-bottom: 100px;
}

.index-ambassador-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.index-ambassador-quote{
    width: 500px;
    min-width: 200px;
}


@media (max-width: 680px) {
    .index-ambassador{
        width: 90%;
    }
}

.text-slate-gray{
    color: #5D6970
}

.text-white{
    color: white
}

/* Ambassador end */


 .index-quote-videos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
 }

 .index-quote-video {
    padding-top: 48px;
    display: grid;
    justify-items: center;
 }

 .index-quote-video-frame {
    width: 330px;
    height: 180px;
    border-radius: 24px;
 }

 @media (min-width: 680px) {
    .index-quote-video-frame {
        width: 560px;
        height: 315px;
    }
}

@media (min-width: 1024px) {
    .index-quote-video-frame {
        width: 660px;
        height: 371px;
    }
}

.index-quote {
    margin: 0 auto;
    display: grid;
    align-items: start;
    gap: 24px;
    padding: 48px 16px;
}

.index-quote-item {
    display: grid;
    row-gap: 12px;
}

.index-quote-mark {
    margin: 0;
    padding: 0;
    font-style: italic;
    font-weight: 600;
}

.index-quote-text {
    display: grid;
}

@media (min-width: 680px) {
    .index-quote {
        font-size: 18px;
        max-width: 960px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .index-quote-mark {
        font-size: 28px;
    }

    .index-quote-text {
        font-size: 20px;
    }
}

/* view */
.view-center {
    text-align: center;
}

.view-row {
    margin-top: 16px;
}

.view-row-alt {
    margin-top: 32px;
}

.view-pad {
    transition: padding .3s;
}

.view-pad-top {
    padding-top: 16px;
}

.view-pad-top-alt {
    padding-top: 32px;
}

.view-pad-16 {
    padding: 16px;
}

.view-pad-32 {
    padding: 32px;
}

.view-pad-right {
    transition: padding .3s;
}

.view-pad-left {
    transition: padding .3s;
}

.view-container {
    position: relative;
    padding: 32px 16px 32px 16px;
}

.view-container-alt {
    padding: 32px 0 32px 16px;
}

.view-image-wrapper {
    position: relative;
    width: 124px;
    height: 123px;
}

.view-image {
    position: absolute;
    left: 0;
    width: 124px;
    height: 123px;
    background-color: #E0E0E0;
    border-radius: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.view-image-label {
    font-family: "AvenirNext-DemiBold" !important;
    position: absolute;
    top: 50px;
    left: 166px;
    width: 210px;
    height: 38px;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    color: #000;
    border: 2px solid #000;
    line-height: 38px;
    background-color: #fff;
    transition: background .3s;
    font-weight: bold;
    padding: 0 8px 0 8px;
}

.view-image-label:hover {
    color: #fff;
    background-color: #000;
}

.view-image-label-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.view-image-label-white:hover {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.view-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.view-btn {
    font-family: "AvenirNext-DemiBold" !important;
    background: transparent;
    display: inline-block;
    border: 2px solid #000;
    padding: 8px 16px;
    font: inherit;
    text-align: center;
    border-radius: 20px;
    transition: ease .3s;
    cursor: pointer;
    outline: none;
}

.view-btn-compact {
    margin: 8px 8px 0 0;
    padding: 8px 24px;
}

a.view-btn {
    text-decoration: none;
}

.view-btn:hover {
    transform: scale(1.05);
}

.view-btn:active {
    /* background-color: #000; */
    color: #fff;
}

.view-btn:disabled {
    cursor: not-allowed;
    transform: scale(1);
}

.view-btn-sel {
    background: linear-gradient(121.72deg, #40DB87 3.12%, #52F29B 104.52%);
    color: #fff;
    border-color: transparent;
}

.view-btn-alt {
    font-family: "AvenirNext-DemiBold" !important;
    display: inline-block;
    border: none;
    padding: 10px 64px;
    font: inherit;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(111.12deg, #40DB87 3.12%, #52F29B 104.52%);
    color: #fff;
    border: none;
    cursor: pointer;
    outline: none;
    transition: ease .3s;
}

.view-btn-alt:hover {
    transform: scale(1.05);
}

.view-btn-alt:active {
    transform: scale(1);
}

.view-btn-alt:disabled:hover {
    cursor: not-allowed;
    background: linear-gradient(111.12deg, #40DB87 3.12%, #52F29B 104.52%);
    transform: scale(1);
}

.view-btn-gray {
    background: #ddd;
    color: #888;
}

.view-btn-gray:disabled:hover {
    background: #ddd;
    color: #888;
}

.view-btn-green {
    color: #fff;
    border-color: #40DB87;
    background-color: #40DB87;
}

.view-btn-green:disabled {
    background-color: #b3f1cf;
    border-color: #b3f1cf;
    transform: none;
    cursor: default;
}

.view-btn-midnight-blue {
    color: #fff;
    border-color: var(--midnight-blue);
    background-color: var(--midnight-blue);
}

.view-btn-red {
    color: #fff;
    background-color: #FF4A4A;
    border-color: #FF4A4A;
}

.view-btn-red:disabled {
    background-color: #ff9d9d;
    border-color: #ff9d9d;
    transform: none;
    cursor: default;
}

.view-btn-white {
    border-color: #fff;
    color: #fff;
}

.view-btn-white:active {
    background-color: #fff;
    color: #28A964;
}

.view-btn-white-fill {
    border-color: #fff;
    background-color: #fff;
    color: #40DB88;
}


.view-btn-white-sel {
    color: #28A964;
    background-color: #fff;
}

.view-btn-purple {
    color: #fff;
    background-color: #8C6CE8;
    border-color: #8C6CE8;
}

.view-btn-90 {
    padding: 8px;
    width: 90%;
}

.view-btn-full {
    width: 100%;
    max-width: 460px;
}

.view-btn-container {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

/* match new */
.match-selection {
    display: grid;
    gap: 48px;
    justify-content: center;
    margin-top: 48px;
}

@media (min-width: 720px) {
    .match-selection {
        display: flex;
    }
}

.match-card {
    background: #fff;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    overflow: hidden;
    width: 340px;
    transition: transform .3s ease;
}

.match-card:hover {
    transform: scale(1.05);
}



.match-img {
    width: 100%;
    border-radius: 30px;
}

.match-text {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 24px;
    gap: 12px;
}

/* switch */

.switch {
    background-color:rgba(0, 0, 0, 0.2);
    color: #7b7b7b;
    border-radius: 8px;
    width: 164px;
    margin: 16px auto 0 auto;
}

.switch-alt {
    margin-bottom: 24px;
}

.switch-button {
    float: left;
    color: #fff;
    border: none;
    font: inherit;
    border-radius: 8px;
    padding: 4px 0 4px 0;
    outline: none;
    cursor: pointer;
    margin: 1px;
    width: 80px;
    text-align: center;
}

.switch-button:hover {
    color: #000;
}

.switch-active {
    color: #000;
    background-color: #fff;
}

.price-checkmark {
    display: flex;
    align-items: center;
}

.price-checkmark svg {
    padding-right: 8px;
}

.flex-container {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

/* price-container */
.price-flex {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.price-item {
    position: relative;
    flex-grow: 1;
    width: 40%;
    border-radius: 30px;
    transition: box-shadow .3s;
}

.price-item-label {
    cursor: pointer;
}

.price-item-label-selected {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.35);
}

.price-info {
    width: 25%;
    margin-bottom: 16px;
}

.price-img {
    height: 116px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.price-container {
    border-radius: 30px;
    overflow: hidden;
}

.price-container-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 1px;
    background: rgba(140, 108, 232, 0.4);
    border-radius: 30px;
    z-index: 1;
    transition: opacity .3s;
}

.price-item-label-selected > .price-container-overlay {
    opacity: 0;
}

.price-container-top {
    min-height: 230px;
}

.price-container-white {
    background-color: #fff;
}

.price-container-green {
    background-color: #40DB88;
}

.price-container-brown {
    background-color: #A86B5E;
}

.price-container-gray {
    background-color: #9EBDC7;
}

.price-container-yellow {
    background-color: #FFBF42;
}

.price-amount {
    display: flex;
    justify-content: center
}

.price-offer {
    position: relative;
    padding-right: 8px;
    color: #9C9C9C;
}

.price-amount svg {
    position: absolute;
    height: 80%;
    top: 3px;
    left: -7px;
}

.price-star {
    position: relative;
    display: inline-block;
    color: #CA4900;
    font-weight: bold;
    font-size: 14px;
    padding-top: 8px;
    padding-left: 32px;
}

.price-star img {
    position: absolute;
    top: 2px;
    left: 0px;
}

.price-line {
    margin-top: 64px;
    margin-bottom: 64px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.price-line1 {
    width: 40%;
    height: 42px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-bottom-left-radius: 30px;
}

.price-line2 {
    width: 30px;
    height: 21px;
    margin-bottom: -18px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    border-top-right-radius: 30px;
    margin-right: -1px;
}

.price-line3 {
    width: 30px;
    height: 21px;
    margin-bottom: -18px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-top-left-radius: 30px;
    margin-left: -2px;
}

.price-line4 {
    width: 40%;
    height: 42px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-bottom-right-radius: 30px;
}

.price-dl {
    width: 500px;
    color: #fff;
}

.price-dt {
    float: left;
    width: 220px;
    overflow: hidden;
    white-space: nowrap;
}

.price-dt:after { content: " .................................................................................." }

/* subscriptions */
.subscription {
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow .3s;
    border-radius: 30px;
    color: #000;
    grid-template-columns: 200px 1fr;
    max-width: 800px;
    align-items: center;
}

.subscription-text {
    padding: 16px;
}

/* container */
.container {
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow .3s;
    border-radius: 30px;
}

.page-container {
    position: relative;
    min-height: calc(100vh - 60px);
}

.page-wider {
    max-width: 960px;
    margin: 0 auto;
    /* padding-bottom: 84px; */
}

.page {
    max-width: 660px;
    margin: 0 auto;
    padding-bottom: 84px; /* step-page */
}

/* TODO: what width is good? */
.page-smaller {
    max-width: 580px;
    margin: 0 auto;
}

.step {
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 32px;
    font-weight: bold;
    box-shadow: 0px 0 4px rgba(255, 47, 97, 0.5);
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .3s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

.step-page-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    user-select: none;
}

.step-page-padding{
    padding-bottom: 60px;
}

.step-container {
    max-width: 660px;
    margin: 0 auto;
    height: 60px;
    color: #fff;
}

.step-page {
    float: left;
    width: 33%;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.step-page h3 {
    margin: 0;
}

.step-arrow {
    transition: transform .3s ease;
    cursor: pointer;
}

.step-arrow:hover {
    transform: scale(1.1);
}

.calendar-component {
    user-select: none;
}

.calendar-arrow {
    margin-top: 4px;
    cursor: pointer;
    transition: transform .3s ease;
}

.calendar-arrow:hover {
    transform: scale(1.1);
}

.calendar {
    border: 1px solid #fff;
    text-align: center;
    padding: 16px 8px;
    cursor: pointer;
    color: #fff;
    transition: background-color .3s;
}

.calendar-week {
    color: #fff;
}

.calendar:hover {
    background-color: #fff;
    color: #28A964;
}

.calendar-selected {
    color: #28A964;
    background-color: #fff;
}

.calendar-input {
    padding-right: 16px;
    text-align: left;
}

.calendar-session-btn {
    margin-top: 20px;
}

.list-container {
    position: relative;
    padding: 0 0 32px 0;
    overflow: hidden;
}

.list-container h1 {
    padding-left: 16px;
}

.list-item {
    background-color: #fff;
    display: block;
    position: relative;
    padding: 16px 8px 16px 112px;
    margin: 8px 0 0 0px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: box-shadow .3s;
}

.list-item:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.list-text {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

.list-time {
    background-image: url('/static/images/app/watch.svg');
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding-left: 16px;
}

.list-image {
    position: absolute;
    top: 10px;
    left: 16px;
    width: 72px;
    height: 72px;
    background-color: #ddd;
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}

.overlay-status {
    margin-top: -16px;
}

.overlay-status-icon {
    float: left;
}

.overlay-status-text {
    display: block;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    float: left;
    padding-left: 8px;
}

.list-status {
    position: absolute;
    top: 22px;
    right: 0;
    width: 154px;
    color: #000;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
}

.list-status-green {
    color: #40DB88;
}

.list-status-gray {
    color: #6c6c6c;
}

.list-status-red {
    color: #FF4A4A;
}

.slide-fade-enter-active {
    transition: all .3s ease;
}
  
.slide-fade-leave-active {
    display: none;
}
  
.slide-fade-enter, .slide-fade-leave-to {
    transform: translateX(10px);
    opacity: 0;
}

.card-column {
    padding-top: 16px;
}

.card {
    margin: 0;
    display: block;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.card:hover .card-pic {
    transform: scale(1.1);
}

.card-profile {
    background-color: #fff;
    border-radius: 30px;
    height: 200px;
    overflow: hidden;
}

.card-profile-min {
    height: 120px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.card-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
    border-radius: 30px;
}

.card-profile-min > .card-pic {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.card-content {
    padding: 16px 0 16px 0;
}

/* map */
.gmap {
    background-color: #ddd;
    max-width: 928px;
    margin: 0 auto;
    height: 280px;
    margin-top: 16px;
    border-radius: 30px;
}

/* filter */
.filter-container {
    display: flex;
    gap: 12px;
}

.filter {
    position: relative;
    height: 70px;
    z-index: 2;
}

.filter-item {
    float: left;
    width: 20%;
}

.filter-value {
    margin-right: 16px;
}

/* footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 128px 16px 128px 16px;
    line-height: 24px;
}

.footer-full {
    display: none;
}

.footer-flex {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.footer-link {
    padding-top: 8px;
}

.footer-logo {
    height: 80px;
    margin-top: 100px;
    margin-bottom: 32px;
    display: block;
}

.footer-pep {
    height: 30px;
    display: block;
}

.footer a {
    display: block;
    color: #fff;
}

.footer a:hover {
    text-decoration: underline;
}

.border-white {
    border-color: #fff;
}

/* ads */

.ads-btn {
    cursor: pointer;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #C4C4C4;
    margin: 16px 2px 16px 2px;
}

.ads-btn-active {
    background-color: #000;
}

.ad-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 1s ease, opacity 1s ease;
    overflow: hidden;
    border-radius: 30px;
    background-color: #000;
}

.ad-slide-content {
    height: 400px;
    display: flex;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
}

.ad-slide-content-center {
    height: 400px;
    display: flex;
    text-align: left;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.ad-left {
    opacity: 0;
    transform: translateX(-102%);
}

.ad-right {
    opacity: 0;
    transform: translateX(102%);
}

.ad-text {
    font-size: 19px;
    max-width: 400px;
    padding: 16px;
}

.ad-sportlov-image {
    display: none;
}

/* volleytv */

.ad-volleytv-content {
    display: block;
    height: 400px;
    background-image: url('/static/images/ads/volleytv/volleytv-mobile.jpg');
    background-position: center;
    outline: none;
    text-decoration: none;
}

@media (min-width: 1080px) {
    .ad-volleytv-content {
        background-image: url('/static/images/ads/volleytv/volleytv-wide.jpg');
    }
}

/* svenskhockeytv */

.ad-svenskhockeytv-content {
    height: 400px;
    align-items: center;
    background-color: #082F56;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ad-svenskhockeytv-image {
    background: linear-gradient(to right, #082F56 1%,transparent 10%), url(/static/images/ads/svenskhockeytv/background.png);
    background-position: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
}

.ad-svenskhockeytv-text {
    z-index: 1;
    position: relative;
    width: 700px;
    height: 80%;
}

.ad-svenskhockeytv-text > h2{
    font-family: system-ui;
    font-size: 35px;
    font-weight: 900;
    font-stretch: semi-expanded;
    margin: 30px
}

.ad-svenskhockeytv-text > p{
    font-size: 25px;
    font-weight: lighter;
}

.ad-svenskhockeytv-text a{
    background-color: #0f5aea;
    border: none;
    font-weight: lighter;
    font-family: arial !important;
    font-size: 20px;
    letter-spacing: 1.1px;
    z-index: 0;
}

.ad-svenskhockeytv-mobil {
    position: relative;
    height: 85%;
}

.ad-svenskhockeytv-logo{
    position: absolute;
    left: 50px;
    bottom: 30px;
}

@media screen and (max-width: 1024px) {
    .ad-svenskhockeytv-text > h2{
        font-size: 27px;
        margin: 15px
    }

    .ad-svenskhockeytv-text {
        height: 70%;
        /* margin-top: 40px; */
    }

    .ad-svenskhockeytv-text > p{
        font-size: 20px;
        font-weight: lighter;
    }

    .ad-svenskhockeytv-mobil {
      display: none;
    }

    .ad-svenskhockeytv-image {
        left: 0%;
        transform: none;
        width: 200%;
    }
    .ad-svenskhockeytv-text a {
        margin: 2px
    }
  }

/* futurica */

.ad-futurica-image {
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    display: none;
}

.ad-futurica-badge {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: none;
}

.ad-futurica-text {
    z-index: 1;
    max-width: 600px;
    padding: 0 16px 0 16px;
    font-size: 17px;
}

.ad-futurica-text-info {
    display: none;
    padding-top: 16px;
}

@media (min-width: 680px) {
    .ad-futurica-badge {
        display: unset;
    }

    .ad-futurica-image {
        display: unset;
    }

    .ad-futurica-text {
        padding: 0 32px 0 32px;
    }

    .ad-futurica-text-info {
        display: block;
    }
}

/* cup no 1 */

.ad-cupone-image {
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    display: none;
}

.ad-cupone-text {
    z-index: 1;
    max-width: 600px;
    padding: 0 16px 0 16px;
    font-size: 17px;
}

.ad-cupone-text-info {
    display: none;
    padding-top: 16px;
}

@media (min-width: 680px) {
    .ad-cupone-image {
        display: unset;
    }

    .ad-cupone-text {
        padding: 0 32px 0 32px;
    }

    .ad-cupone-text-info {
        display: block;
    }
}

/* katrineholm */
.ad-katrineholm-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ad-katrineholm-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    align-items: center;
}

.ad-katrineholm-text {
    display: grid;
    gap: 25px;
    justify-items: center;
}

.ad-katrineholm-badge {
    height: 140px;
}

.ad-katrineholm-all-green{
    color: #24FF00;
    border-color: #24FF00 !important;
}


/* orebrocupen */

.ad-orebrocupen-content {
    height: 400px;
    display: grid;
    gap: 16px;
    justify-items: center;
    align-content: center;
    background-image: url('/static/images/ads/orebrocupen/orebrocupen-bg.jpg');
    background-size: cover;
}

.ad-orebrocupen-text {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

/* upforsports */

.ad-upforsports-logo {
    display: none;
}

.ad-upforsports-content {
    height: 400px;
    display: flex;
    text-align: left;
    justify-content: center;
    align-items: center;
    gap: 48px;
    background: linear-gradient(93.41deg, #FF3561 -9.85%, #FFD05B 111.81%);
}

.ad-upforsports-text {
    position: relative;
    max-width: 500px;
    padding: 0 16px 0 16px;
    font-size: 18px;
}

.ad-upforsports-badge {
    position: absolute;
    bottom: 0;
    right: 16px;
}

/* up for match */

.ad-upformatch-logo {
    display: none;
}

@media (min-width: 1024px) {
    .ad-upformatch-logo {
        display: unset;
    }    
}

.ad-upformatch-content {
    height: 400px;
    display: grid;
    grid-template-columns: 1fr;
    background-color: #2FD27A;
}

@media (min-width: 1024px) {
    .ad-upformatch-content {
        grid-template-columns: 480px 1fr;
    }    
}

.ad-upformatch-cup {
    background-color: #8C6CE8;
}

.ad-upformatch-text {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 32px;
    padding: 16px;
    font-size: 18px;
}


/* aroscupen */
.ad-aroscupen-image {
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    display: none;
}
.ad-aroscupen-badge {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: none;
}
.ad-aroscupen-text {
    z-index: 1;
    max-width: 650px;
    padding: 0 16px 0 16px;
    font-size: 16px;
}
.ad-aroscupen-text-info {
    display: none;
    padding-top: 16px;
}
@media (min-width: 680px) {
    .ad-aroscupen-badge {
        display: unset;
    }
    .ad-aroscupen-image {
        display: unset;
    }
    .ad-aroscupen-text {
        padding: 0 32px 0 32px;
    }
    .ad-aroscupen-text-info {
        display: block;
    }
}

/* finder */

.finder-wrapper {
    justify-content: center;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;;
}

.finder {
    z-index: 1;
    position: fixed;
    bottom: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    text-align: left;
    padding: 8px 16px;
    gap: 24px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    transition: bottom .3s ease;
}

@media (max-width: 680px) {
   .finder{
    display: none;
   }
}


.finder-wrapper-visible {
    opacity: 1;
    visibility: visible;
}

.finder-visible {
    bottom: 32px;
}

.finder-visible-alt {
    bottom: 64px;
}

.finder-svg {
    width: 60px;
    height: 60px;
}

.finder-icon {
    height: 60px;
}

/* desktop */
@media (min-width: 680px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 40px;
    }

    .ad-sportlov-image {
        display: unset;
    }

    /* nav bar open */ 
    .nav-bar-public-alt.nav-bar-open {
        background: transparent;
    }

    .nav-bar-public-alt.nav-bar-open .nav-link:hover > .nav-link-border {
        border-color: #fff;
    }

    .nav-bar-public-alt.nav-bar-open .nav-logo {
        background-image: url("/static/images/app/upforsports-light.png");
    }

    .nav-bar-public-alt.nav-bar-open .nav-action-bar1 {
        background-color: #fff;
    }

    .nav-bar-public-alt.nav-bar-open .nav-action-bar2 {
        background-color: #fff;
    }

    .nav-bar-public-alt.nav-bar-open .nav-action-bar3 {
        background-color: #fff;
    }

    .nav-bar-public-alt.nav-bar-open .nav-link {
        color: #fff;
    }

    .nav-logo {
        width: 80px;
        float: left;
    }

    .nav-action {
        display: none;
    }

    .nav-menu {
        float: right;
        display: flex;
        align-items: center;
    }

    .nav-link {
        font-size: 14px;
        height: 60px;
        line-height: 60px;
        padding: 0 10px 0 0;
    }

    .nav-profile-circle {
        margin: 0 10px 0 0;
    }

    .footer-full {
        display: block;
    }
    
    .footer-compact {
        display: none;
    }

    .footer-logo {
        margin-top: 8px;
    }

    .view-btn {
        padding: 8px 32px;
    }

    .margin-left {
        margin-left: 16px;
    }
    
    .margin-right {
        margin-right: 16px;
    }

    .main-right-first {
        display: unset;
        position: sticky;
        top: 60px;
        float: left;
        width: 50%;
        height: calc(100vh - 60px);
    }

    .main-right-second {
        width: 50%;
        margin-left: 50%;
        min-height: calc(100vh - 60px);
    }

    .main-left-first {
        width: 55%;
        min-height: 500px;
    }

    .main-left-second {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 45%;
    }

    .list-container {
        padding: 0 16px 200px 16px;
    }

    .list-container h1 {
        padding: 0;
    }

    .list-text {
        font-size: 14px;
    }

    .list-item {
        padding: 24px 16px 24px 132px;
        margin: 16px 0 0 0;
        border-radius: 24px;
    }

    .list-image {
        position: absolute;
        top: 12px;
        left: 16px;
        width: 96px;
        height: 96px;
        background-color: #ddd;
    }

    .list-status {
        top: 34px;
        width: 200px;
        font-size: 16px;
    }

    .card-column {
        float: left;
        width: 33.33%;
        padding-top: 16px;
        padding-right: 16px;
    }

    .card-column:nth-child(3n) {
        padding-right: 0;
    }

    .card-profile {
        height: 280px;
    }

    .card-profile-min {
        height: 200px;
    }

    .switch {
        position: absolute;
        top: 8px;
        right: 0; 
        margin: 4px auto 0 auto;
    }

    .switch-alt {
        top: 24px;
        right: 16px;
    }

    .signup-container {
        width: 50%;
    }

    .subscription {
        display: grid;
    }
}

@media (min-width: 1024px) {
    .overlay-inner {
        top: 64px;
        width: 800px;
    }

    .nav-logo {
        height: 100px;
        width: 120px;
        background-size: 100px;
    }

    .nav-link {
        height: 100px;
        line-height: 100px;
        padding: 0 16px 0 16px;
    }

    .nav-profile-circle {
        margin: 0 16px 0 16px;
    }

    .nav-btn {
        font-family: "AvenirNext-DemiBold" !important;
        background-color: #fff;
        color: #000;
        border: 2px solid #000;
        height: 40px;
        line-height: 38px;
        border-radius: 20px;
        margin-top: 29px;
        margin-left: 16px;
        margin-right: 16px;
        transition: ease .3s;
    }

    .nav-btn:hover {
        transform: scale(1.05);
    }

    .nav-btn:hover .nav-link-border {
        border: none;
    }

    .nav-btn .nav-link-border {
        color: #000;
        border: none;
    }

    .nav-btn-transparent {
        background: transparent;
        border-color: #fff;
    }

    .nav-btn-transparent .nav-link-border {
        color: #fff;
    }

    .view-btn {
        padding: 8px 64px;
    }

    .video-left {
        float: left;
        width: 50%;
    }
    
    .video-right {
        display: unset;
        float: left;
        width: 50%;
    }

    .page-container {
        min-height: calc(100vh - 100px);
    }

    .main-right-first {
        top: 100px;
        height: calc(100vh - 100px);
    }

    .main-right-second {
        min-height: calc(100vh - 100px);
    }

    /* TODO: not pretty */
    .group-column:nth-child(odd) .list-item {
        margin-right: 32px;
    }

    .group-column:nth-child(even) .list-item {
        margin-left: 32px;
    }

    .list-item {
        margin-left: 40px;
        padding-left: 88px;
    }

    .list-image {
        margin-left: -56px;
        top: 8px;
        height: 108px;
        width: 108px;
    }

    .group-column {
        float: left;
        width: 50%;
    }

    .signup-container {
        width: 33.33%;
    }

    .price-flex {
        gap: 32px;
    }

    .price-item {
        flex-grow: 1;
        width: 20%;
    }

    .ad-upforsports-logo {
        display: unset;
    }
}

@media (min-width: 1440px) {
    .view-pad {
        padding: 0 128px 0 128px;
    }

    .view-pad-right {
        padding: 0 128px 0 0;
    }

    .view-pad-left {
        padding: 0 0 0 128px;
    }

    .main {
        margin: 0 128px 0 128px;
    }
}

/* loader */
@keyframes bouncing-loader {
    to {
      opacity: 0.1;
      transform: translate3d(0, -1rem, 0);
    }
}

.bouncing-loader {
    display: flex;
    justify-content: center;
}

.bouncing-loader > div {
    width: 1rem;
    height: 1rem;
    margin: 3rem 0.2rem;
    background: #40DB88;
    border-radius: 50%;
    animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
    animation-delay: 0.2s;
    background: #8C6CE8;
}

.bouncing-loader > div:nth-child(3) {
    animation-delay: 0.4s;
    background: #000;
}

/* cookie */

.cookie-consent {
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.15);
    display: none;
    justify-items: center;
    z-index: 7;
}

.cookie-consent-content {
    display: grid;
    align-items: start;
    max-width: 1080px;
    padding: 32px 16px;
    gap: 16px;
}

@media (min-width: 1024px) {
    .cookie-consent-content {
        padding: 64px 16px;
        grid-template-columns: 1fr 2fr;
    }    
}

.cookie-consent-content-1 {
    display: grid;
    grid-template-columns: 48px 2fr;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    gap: 16px;
}

.cookie-consent-content-2 {
    display: grid;
    gap: 16px;
}


.cookie-answer {
    display: grid;
    gap: 16px;
}

@media (min-width: 680px) {
    .cookie-answer {
        display: flex;
    }    
}

.cookie-btn {
    font-family: "AvenirNext-DemiBold" !important;
    font: inherit;
    background: transparent;
    display: inline-block;
    border: 2px solid #7b7b7b;
    padding: 8px 24px;
    text-align: center;
    border-radius: 20px;
    transition: ease .3s;
    cursor: pointer;
    outline: none;
    background-color: #fff;
    color: #7b7b7b;
}

.cookie-btn-accept {
    color: #fff;
    padding: 8px 32px;
    background: #40DB88;
    border-color: #40DB88;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

/* logo catalog */

.logo-overlay {
    z-index: 4;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
    display: grid;
    align-items: center;
    justify-items: center;
}

.logo-modal {
    margin: 16px;
    max-width: 680px;
    border-radius: 16px;
    background-color: #fff;
    margin-top: 24px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: grid;
    gap: 16px;
    padding: 16px;
    justify-items: center;
}

@media (min-width: 680px) {
    .logo-container {
        padding: 32px;
    }
}

.logo-subject {
    display: flex;
    width: 100%;
    align-items: center;
}

.logo-later {
    cursor: pointer;
    transition: transform .3s ease;
}

.logo-later:hover {
    transform: scale(1.1);
}

.logo-h {
    width: 100%;
    margin-bottom: 0;
    font-size: 24px;
}

@media (min-width: 680px) {
    .logo-h {
        font-size: 32px;
    }
}

.logo-area {
    background-color: #EFEFEF;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 16px;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;

}

@media (min-width: 680px) {
    .logo-area {
        gap: 16px;
        max-height: 400px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.logo-image {
    position: relative;
    border-radius: 16px;
    width: 100%;
    cursor: pointer;
    transition: box-shadow .3s ease;
    aspect-ratio: 1;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.logo-image:hover {
    box-shadow: 0 0 0 4px #4DEC96;
}

.logo-image-selected {
    box-shadow: 0 0 0 4px #4DEC96;
}

.logo-image-img {
    display: block;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    background-color: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: center;
    padding: 12px 0 12px 0;
    font-weight: bold;
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 130px;
    white-space: nowrap;
    margin: 0 auto;
}

@media (min-width: 680px) {
    .logo-text {
        font-size: 15px;
        max-width: 160px;
    }
}

.logo-image-svg {
    position: absolute;
    right: 8px;
    bottom: 52px;
    height: 24px;
    width: 24px;
    z-index: 1;
}

@media (min-width: 680px) {
    .logo-image-svg {
        right: 12px;
        bottom: 52px;
    }
}

.logo-btn {
    font-family: "AvenirNext-DemiBold" !important;
    display: inline-block;
    width: 100%;
    border: none;
    padding: 10px;
    font: inherit;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    cursor: pointer;
    outline: none;
    transition: ease .3s;
}

.logo-btn:hover {
    transform: scale(1.05);
}

.country-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

@media (min-width: 680px) {
    .country-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* btn */

.view-btn-container-item {
    width: 100%;
    padding: 8px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 10px;
}