/* custom styles s4 */
.tournament-info  {

}
.tournament-info p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}

.page-info  {

}
.page-info p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}

header.sticky.sticky-active  nav.fixed-header {
    background-color: rgba(30,30,30, 0.85) !important;
}

input[type=checkbox], input[type=radio] {
    padding: 3px 4px;
}
input[type=radio] {
    margin-right: 10px;
}
input[type=checkbox] {
    margin-right: 0px;
}


/* cookie consent */
.cookie-consent-popup {
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    background-color: rgba(0,0,0, 0.9);
}

.cookie-consent-popup.open {
    display: block;
    opacity: 1;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
}

.cookie-consent-top-wrapper {
    text-align: center;
}
.cookie-consent-message {
    padding: 10px 50px;
    color: #FFF;
}
.cookie-consent-message .cookie-consent-link {
    display: block;
    color: #FFFF00;
    text-decoration: underline;
}

.cookie-consent-controls {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
    padding-top: 15px;
    text-align: center;
}

.cookie-consent-controls label {
    margin-right: 20px;
}

.cookie-consent-controls.open {
    margin: 0 0 30px 0;
    max-height: 600px;
}

.cookie-consent-details {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
    text-align: center;

}

.cookie-consent-details.open {
    max-height: 600px;

}

.cookie-consent-details table {
    margin-left: auto;
    margin-right: auto;
}
.cookie-consent-details table td {
    padding: 10px;
    color: #ffffff;
}


@keyframes show {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes hide {
    from {opacity: 1;}
    to {opacity: 0;}
}

.cookie-consent-popup button {
    padding: 6px 10px;
    color: #333;

}

/* fix tabs in tournaments */
.tab-style-08 ul .nav-item {
    padding: 0;
    background-color: transparent;
    border-right: 1px solid var(--light-medium-gray);
    flex-grow: 1;
    flex-basis: fit-content;
}