.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.booking-admin-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.booking-admin-wrapper>div {
    min-width:100%;
}

.booking-admin-form .form-wrapper label {
    display: block;
    margin-bottom: 0;
}

.booking-admin-form .form-wrapper input,.booking-admin-form .form-wrapper select {
    margin-bottom: 10px;
}

.booking-admin-form .form-wrapper{
    display: flex;
    flex-direction: column;
}
.booking-input {
    width: 100%;
    min-height: 30px;
    background-color: #eee!important;
    border: none!important;
    padding: 0;
    text-indent: 5px;
}
textarea.booking-input{
    min-height: 90px;
    padding:5px;
    width:calc(100% - 10px);
}

.booking-admin-arenas ul {
    list-style-type: none;
    padding: 10px;
    background-color: #eee;
}

.arena-filter {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.arena-filter button {
	background-color: #fff;
	border: 2px solid #345c00;
	color: #345c00;
	border-radius: 10px;
	min-height: 30px;
	min-width: 60px;
	padding: 10px 15px;
	cursor: pointer;
    transition:0.3s;
}

.arena-filter button:hover,.arena-filter button:focus {
    background-color: #f2f2f2;
}

.arena-filter button.active{
    background-color: #345c00;
    color:#fff;
}

.arena-filter button.active:hover,.arena-filter button.active:focus {
    background-color: #5c7c32;
}

.calendar-navigation-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-navigation {
    display: flex;
}

.calendar-navigation-wrap .booking-navigation a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.calendar-navigation-wrap .booking-navigation a:hover, .calendar-navigation-wrap .booking-navigation a:focus {
    background-color: #f2f2f2;
}

.calendar-wrap .calendar-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.calendar-wrap .calendar-row>* {
    width: 14.3%;
}

.calendar-month {
    display: none;
}

.calendar-month.active {
    display: block;
}

.calendar-row.heading-row p {
    margin: 0;
    text-align: center;
}

.calendar-row .single-day {
    text-align: center;
    text-decoration: none;
    color: #000;
}

.calendar-row .single-day.no-book {
    color: #999;
}
.calendar-row .single-day.past-date {
    opacity: 0.4;
}

.calendar-row span {
    height: 30px;
    width: 30px;
    border-radius: 15px;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.calendar-row .single-day.has-booking span {
    background-color: #f2f2f2;
    color: #345c00;
}

.calendar-row .single-day span:hover,.calendar-row .single-day span:focus {
    background-color: #f2f2f2;
    color: #345c00;
}

.calendar-wrap {
    box-shadow: 0px 0px 6px -2px #333;
    padding: 12px;
    border-radius: 10px;
    margin: 0px 4px 4px 0px;
}

a.cancel-booking {cursor: pointer;background-color: #f33;padding: 2px 5px;border-radius: 5px;color: #fff;text-decoration: none;transition: 0.3s;font-size: 14px;margin-right: 10px;}

a.cancel-booking:hover {
    background-color: #991e1e;
}

.woocommerce-account .woocommerce-MyAccount-content {
    overflow: visible;
}

#success-error-message.hidden {
    right: -500px;
    opacity: 0;
}

#success-error-message {
    position: fixed;
    bottom: 50px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    right: 25px;
    background-color: #e06666;
    transition: right 0.6s;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #c00;
    color: #fff;
    opacity: 1;
    z-index: 131;
}

#success-error-message.success {
    background-color: #93c47d;
    border-color: #6aa84f;
}

.booking-modal {
    position: fixed;
    display:flex;
    top: 180px;
    opacity: 0;
    z-index: -3;
    transition: opacity 0.3s, top 0.4s ease;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 6px -2px #333;
    max-width: 100vw!important;
    max-width: calc(100vw - 30px)!important;
    width: 700px!important;
    max-height: 600px;
    left: 15px;
    right: 15px;
    bottom: 50px;
    margin: auto;
}
.booking-modal-wrapper {
    padding: 30px;
    width:100%;
}
.booking-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width:100%!important;
    height: 100%;
    background-color: #0004;
    opacity: 0;
    z-index: -3;
    cursor: pointer;
}

.active-modal.booking-modal{
    opacity: 1;
    z-index: 130;
    top: 80px;
    max-height:unset;
}
.booking-modal-open .booking-modal-backdrop {
    opacity: 1;
    z-index: 120;
}

.booking-modal-wrapper h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 10px;
}
.booking-modal-wrapper h3 .close {
    color: #ccc;
    transition:0.2s;
}
.booking-modal-wrapper h3 .close:hover {
    color: #aaa;
}

ul.modal-arenas {
    display: flex;
    row-gap: 10px;
    column-gap: 15px;
    list-style-type: none;
    padding-left: 0;
    flex-wrap: wrap;
}

ul.modal-arenas li {background-color: #fff;border: 2px solid #345c00;color: #345c00;border-radius: 10px;min-height: 20px;min-width: 40px;padding: 7px 10px;cursor: pointer;transition: 0.3s;text-align: center;font-size: 15px;}

ul.modal-arenas li.active {
    background-color: #345c00;
    color: #fff;
}
p.booking.unselected-arena {
    display: none;
}

.booking-input-radio {
    background-color: #fff;
    border: 2px solid #345c00;
    color: #345c00;
    border-radius: 10px;
    min-height: 30px;
    min-width: 60px;
    padding: 3px 5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    font-size:14px;
    justify-content: center;
    align-items: center;
}
.booking-input-radio:hover,.booking-input-radio.active{
    background-color:#345c00;
    color:#fff;
}
.booking-input-radio.disabled{
    pointer-events:none;
    opacity:0.5;
}

.booking-radio-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hidden{
    display:none!important;
}

.loader {
    width: 40px;
    height: 40px;    margin: 30px auto;
}

.loader:after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 4px solid;
    border-color: #ccc transparent #ccc transparent;
    animation: loader-ring 2s linear infinite;
}

@keyframes loader-ring{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-wrapper.loader .button, .hide-button .button {
    display: none;
}

ul.booking-list {list-style-type: none;padding-left: 0;/* display: flex; *//* flex-direction: column; */}

ul.booking-list>li {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    justify-content: flex-end;
    box-shadow: 0px 0px 6px -2px #333;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 10px;
    margin-right: 5px;
    margin-left: 5px;
}

ul.booking-list li span,ul.booking-list li a {
    margin-right: auto;
}

.event-form-wrapper {
    overflow-y: auto;
    max-height: 80%;
    max-height: calc(100% - 120px);
}

.form-wrapper.can-duplicate {
    background-color: #ccc;
    padding: 5px;
    margin-top: 10px;
    border-radius: 4px;
}


.duplicate-controls {
    font-size: 26px;
    line-height: 26px;
    margin-top: 5px;
    text-align: right;
}
.duplicate-controls span{
    cursor:pointer;
}
.duplicate-controls span:hover{
    color: #aaa;
}

.duplicate-controls .remove {
    margin-left: 5px;
}

.booking-checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom:10px;
}

.booking-checkbox-wrapper label {
    width: 100%;
}

.account-attribute-form-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.account-attribute-form-wrapper > div {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}



.attribute-form span {
    width: 30px;
    padding-left: 5px;
    height: 30px;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    /*margin-left:auto;*/
}
form.attribute-form p {
    margin: 0;
}
.attribute-form .input-group p {
    margin-right: auto;
}

.attribute-form .input-group {
    display: flex;
    column-gap: 10px;
}

.attribute-form span.plus:before,.attribute-form span.plus:after,.attribute-form span.minus:before {
    content: '';
    position: absolute;
    display: block;
    background-color: #000;
    border-radius: 2px;
    height: 4px;
    width: 22px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}

.attribute-form span.plus:after {
    height: 22px;
    width: 4px;
}

.attribute-form span:hover:before,.attribute-form span:hover:after {
    background-color: #666;
}
.attribute-form .booking-input.new-attribute,.attribute-form .booking-input.reg-ticket {
    width: 50%;
}

.event-calendar .calendar-row .single-day > span {
    width: 100%;
    text-align: left;
    padding: 2px 5px;
}

.event-calendar .calendar-row .single-day .single-event {
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    height: 30px;
}

.event-calendar .calendar-row {
    align-items: stretch;
}

.event-calendar .calendar-row .single-day span.event-highlight {
    height: 30px;
    width: 10px;
    display: block;
    border-radius: 0;
}

.event-calendar .calendar-row .single-day .single-event p {
    margin: 0;
    height: 30px;
    white-space: nowrap;
    width: 90%;
    width: calc(100% - 15px);
    background-color: #ddd;
    text-align: left;
    padding: 0 5px;
    line-height: 30px;
    overflow: hidden;
}

.event-calendar .calendar-row .single-day span:hover,.event-calendar .calendar-row .single-day span:focus {
    background-color: transparent;
    color: inherit;
}

.event-calendar .calendar-row .single-day {
    background-color: #eee;
    position: relative;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.event-calendar .calendar-row .single-day span{
    cursor: default;
}

.event-calendar .calendar-row .single-day:before,.event-calendar .calendar-row .single-day:after {
    content: '';
    height: 100%;
    width: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
}

.event-calendar .calendar-row .single-day:after {
    right: 0;
}

.event-title-wrap {
    background-color: #eee;
    padding: 30px;
    text-align: center;
}

.event-meta-box,.event-info-tab,.event-schedule-tab,.events-tabs{
    max-width:1200px;
    margin:0 auto;
    padding:10px 30px;
}
.event-meta-box,.event-info-tab,.event-schedule-tab{
    background-color: #eee;
    box-shadow: 2px 2px 9px -3px #333;
}

.event-meta-box {
    /*color: #fff;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    font-style:oblique;
    margin-top:30px;
    margin-bottom:30px;
    font-size: 16px;
}

.event-meta-box img {
    /*filter: brightness(0) invert(1);*/
    width: 25px;
    height:25px;
}



.event-meta-box div {
    width: 100%;
    display: flex;
    align-items:center;
    column-gap: 15px;
    padding-left:7.5px;
    padding-right:7.5px;
}

/*.event-schedule-tab {
    display: none;
}*/

ul.events-tabs, ul.schedule-tabs {list-style-type: none;display: flex;}

ul.events-tabs li, ul.schedule-tabs li {padding-left: 10px;padding-right: 10px;}
ul.arena-tabs {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    column-gap: 10px;
}
.section-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.section-navigation span {
    cursor: pointer;
    transition: 0.3s;
    border-radius: 15px;
    width: 30px;
    /* height: 30px; */
    /* line-height: 30px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-navigation span:hover {
    background-color: #f2f2f2;
}

.form-wrapper.one-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-wrapper.one-line select,.form-wrapper.one-line input{
    margin-bottom:5px;
}
.form-wrapper.can-duplicate.one-line .duplicate-controls {
    width: 100%;
}
.terms-wrapper > div {
    background-color: #f2f2f2;
    padding: 10px;
    max-height: 200px;
    border-radius: 5px;
    overflow-y: auto;
}
.terms-wrapper label{
    display: block;
    border-top: 1px solid;
    padding-top: 10px;
}

.dropdown-section{
    display:none;
}

.toggle-dropdown-section,.dropdown-section .hide {
    margin-bottom: 0;
    text-decoration: underline;
    cursor: pointer;
}

.toggle-dropdown-section,.dropdown-section {
    font-size: 16px;
}

.dropdown-section {
    background-color: #ccc;
    padding: 5px;
    border-radius: 5px;
}

.running-order-class,.removed-pairings {
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border:2px solid #f2f2f2;
    transition: 0.3s;
}
.running-order-class{
    margin-bottom:30px;
}

.running-order-class .booking-input {
    background-color: #fff;
}

.running-order-class .running-order-pairing-row, .removed-pairings .running-order-pairing-row {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid;
    padding: 5px 0;
}

.running-order-class .running-order-pairing-row span,.removed-pairings .running-order-pairing-row span {
    margin: 0 10px;
}
.running-order-class .running-order-pairing-row .ro-move {
    margin-left: 0;
    cursor: grab;
}
.running-order-class .running-order-pairing-row .ro-duration,.removed-pairings .running-order-pairing-row .ro-add{
    margin-left: auto;
}
.running-order-class .running-order-pairing-row .ro-remove, .removed-pairings .running-order-pairing-row .ro-add,.running-order-class .running-order-pairing-row .ro-change-section {
    cursor: pointer;
}
.running-order-class .running-order-pairing-row .ro-add,.running-order-class .running-order-pairing-row .ro-class,.running-order-class .running-order-pairing-row .ro-section {
    display: none;
}
.running-order-class-wrapper .removed-pairings .ro-remove,.running-order-class-wrapper .removed-pairings .ro-start-time,.running-order-class-wrapper .removed-pairings .ro-duration,.running-order-class-wrapper .removed-pairings .ro-move,.running-order-class-wrapper .removed-pairings .ro-change-section,.break .ro-change-section {
    display: none;
}
.running-order-class-wrapper .break .ro-duration{
    padding-right:34px;
}

.running-order-class .running-order-class-meta p {
    margin-top: 0;
    border-bottom: 1px solid #AAA;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.running-order-class .running-order-pairing-row:last-of-type,.removed-pairings .running-order-pairing-row:last-of-type {
    border: none;
}

.running-order-class .running-order-class-meta input {
    width: 210px;
}

.running-order-class.overlap-error {
    border-color: #f00;
}

.ui-state-highlight { height: 40px; line-height: 1.2em;background-color:#fff}
.schedule-class {
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.schedule-class-meta {
    padding: 5px 10px;
    background-color: #333;
    color: #fff;
}

.schedule-class-meta p {
    margin: 5px 0;
}

.schedule-pairings span {font-style: oblique;margin-right:10px;border-left:1px solid;padding-left:10px;}

.schedule-pairings li {
    border-bottom: 1px solid;
    padding: 10px;
    position: relative;
}
.schedule-pairings li:last-of-type{
    border:none;
}

ol.schedule-pairings {
    padding-left: 0;
    margin-top: 0;
    margin-bottom:0;
    list-style-type:none;
}
.display-class-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.display-class-wrapper .display-class {
    background-color: #fff;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 0 10px;
    width: 100%;
}
.centered-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.qr-modal ul {
    padding-left: 0;
}
.qr-modal li{
    display:flex;
}

.qr-modal ul li span {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

p.qr-scan {
    font-size: 40px;
    text-align: center;
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 30px 15px;
}

#addon-confirmation,.section-change {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(2px);
}

#addon-confirmation.active-popup,.section-change.active-popup {
    display: flex;
}

#addon-confirmation div,.section-change div {
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0px 0px 6px -2px #333;
}

#addon-confirmation p {
    margin-top: 0;
    color: #f00;
    font-weight: bold;
}
.section-change p{
    margin-top:0;
    font-weight: bold;
}

.filter-arenas {
    display: flex;
    align-items: flex-end;
    text-align: left;
}

.filter-arenas ul {
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-direction: revert;
    column-gap: 10px;
    margin-top: 0;
}

.filter-arenas p {
    margin-right: 20px;
}

p.help {
    position: absolute;
    left: 15px;
    bottom: 0;
}

p.help span {
    border: 2px solid;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    font-size: 21px;
    transition: 0.3s;
}

p.help span:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.modal-footer .help-content{
    display:none;
}
.active-help.help-content {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items:center;
    justify-content:center;
    backdrop-filter: blur(2px);
}
.help-content div{
    background-color:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0px 0px 6px -2px #333;
    margin-left: 8px;
    margin-right: 8px;
}

p.help-description {
    border: none;
}

.help-content .help-title {
    border-top: 1px solid;
    padding-top:10px;
}
p.help-intro {
    display: flex;
    justify-content: space-between;
}

p.help-intro span {
    font-size: 40px;
    line-height: 20px;
}

.help-content img {
    max-width: 100%;
}

.print-tabs {
    display: flex;
    column-gap: 10px;
    cursor:pointer;
}
.print-addons ul {
    border-bottom: 1px solid;
    padding-bottom: 15px;
}

.print-addons ul:last-of-type {
    border: none;
}

.addon-name {
    font-style: oblique;
    font-size: 20px;
    margin-bottom: 4px;
    padding-left: 2px;
}
.print-fees table, .print-running table {
    width: 100%;
    border-spacing: 0;
}
.print-fees table td, .print-running table td{
    border:1px solid;
}

@media(min-width:768px){
    .event-form-wrapper {
        max-height: 80%;
        max-height: calc(100% - 90px);
    }
    .booking-checkbox-wrapper {
        gap:15px;
    }
    .booking-checkbox-wrapper label {
        width: 33.33%;
        width:calc(33.33% - 15px);
        background-color:#f2f2f2;
        padding-top:5px;
        padding-bottom:5px;border-radius:4px;
    }
    /*.account-attribute-form-wrapper{
        flex-wrap:nowrap;
    }*/
    .event-meta-box div{
        width:45%;
        width:calc(50% - 15px);
    }
    .form-wrapper.one-line select,.form-wrapper.one-line input {
        width: 24%;
    }
    
    .form-wrapper.one-line.break-form input {
        width: 25%;
        width: calc(25% - 30px);
    }
    .form-wrapper.one-line.break-form select, .form-wrapper.one-line.break-form input {
        width: 32%;
    }
    .display-class-wrapper .display-class{
        width: 45%;
        width: calc(50% - 40px);
    }
}
@media(min-width:992px) {
    .booking-admin-wrapper .booking-admin-arenas {
        min-width: 150px;
    }
    .booking-admin-wrapper .booking-admin-form {
        order: -1;
        min-width:unset
    }
    .event-meta-box div{
        width:30%;
        width:calc(33% - 15px);
    }
    .display-class-wrapper .display-class{
        width: 29%;
        width: calc(33% - 40px);
    }
}
@media(min-width:1200px){
    .display-class-wrapper .display-class{
        width: 21%;
        width: calc(25% - 40px);
    }
}
@media print {
    .hide-print{
        display:none!important;
    }
}