/* Select Number of Days */
.select-number-days {
    text-align: center;
    color: #405371;
    padding-bottom: 10px;
}

    .select-number-days div > h4 {
        margin-bottom: 20px;
        color: #3f5270;
        width: 100%;
        display: block;
        text-align: center;
        font-size: 22px;
        margin-top: 20px;
    }

    .select-number-days div > p {
        margin-bottom: 30px;
        color: #2c3a50;
        width: 100%;
        display: block;
        text-align: left;
    }

.ticket-select {
    cursor: pointer;
    border: 2px solid rgb(225, 225, 225);
    width: 100%;
    transition: 0.2s;
}

    .ticket-select:hover {
        transform: scale(1.03);
        transition: 0.2s;
    }

    .ticket-select:not(.one-click-ticket) {
        border: 2px solid #405371;
    }

.ticket-select-price {
    text-align: right;
}

.avail-tickets .ticket-select-price {
    margin-left: auto;
    align-items: flex-end;
    justify-content: flex-end;
}

.avail-tickets .ticket-select-details {
    width: 100%;
}

.avail-tickets .ticket-sub-header {
    align-self: flex-start;
    text-align: left;
}

.avail-tickets h4 {
    margin-left: 25px;
    margin-right: 25px;
}

.ticket-select:hover,
.ticket-select.selected {
    border: 2px solid #2c3a50;
    transition: 0.3s;
}

.ticket-select-img {
    margin: 10px 20px 10px 30px;
    width: 150px;
    max-width: 150px;
    min-width: 150px;
    justify-content: center;
    align-items: center;
}
    /*
.ticket-select-img {
  width: 15%;
  max-width: 15%;
  min-width: 15%;
} */

    .ticket-select-img img {
        align-self: center;
        width: 110px;
    }

.one-park-options {
    width: calc(100% - 40px);
}

.park-option {
    border: 1px solid rgb(192, 188, 188);
    border-radius: 10px;
    padding: 7px 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

    .park-option.selected,
    .park-option:hover {
        background-color: #405371;
    }

        .park-option.selected .bullet,
        .park-option:hover .bullet {
            background-color: turquoise;
        }

        .park-option.selected *:not(.price),
        .park-option:hover *:not(.price) {
            color: white;
        }

    .park-option .bullet {
        height: 15px;
        width: 15px;
        height: 15px;
        width: 15px;
        border: 1px solid rgb(137, 137, 137);
        border-radius: 100px;
        margin-right: 20px;
    }

    .park-option .ticket-select-price {
        margin-left: auto;
        padding-right: 0;
    }

        .park-option .ticket-select-price h3 {
            margin-bottom: 0;
        }

.ticket-select.option .ticket-select-price {
    margin-left: auto;
    padding-right: 0;
    display: flex;
    align-items: flex-end;
    margin-right: 40px;
}

    .ticket-select.option .ticket-select-price img {
        width: 50%;
        min-width: 200px;
    }

.days {
    justify-content: center;
    padding: 20px 120px 40px 120px;
}

.day-cont {
    margin-right: 15px;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 13px 20px 13px 20px;
    background-color: rgb(238, 238, 238);
    cursor: pointer;
    transition: 0.2s;
}

    .day:hover {
        transform: translate(0, -5px) scale(1.05);
        transition: 0.2s;
    }

.day-cont .caption {
    font-size: 11px;
    margin-top: 7px;
    color: rgb(36, 36, 36);
}

.day-cont .caption-price {
    font-size: 13px;
    line-height: 13px;
    font-weight: 600;
    color: #0cb1ff;
}

.day-cont.disabled {
    pointer-events: none;
    opacity: 0.3;
    padding-bottom: 52px;
}

.day h3 {
    line-height: 25px;
    font-size: 26px;
    color: #2c3a50;
}

.select-number-days .day p {
    font-size: 13px;
    text-transform: uppercase;
    color: #2c3a50;
    margin-bottom: 0;
    margin-top: 2px;
}

.select-number-days > .col {
    border-bottom: 2px solid #405371;
}

.day.active {
    background-color: #0cb1ff;
}

    .day.active p,
    .day.active h3 {
        color: white;
    }

/* Select the Ticket Type */
.select-ticket-type {
    padding-bottom: 0;
}

    .select-ticket-type h4 {
        text-align: center;
        color: #405371;
    }


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slider-container {
    margin-bottom: 20px;
    padding-left: 120px;
}

    .slider-container > span {
        font-size: 20px;
        margin-right: 20px;
        font-weight: 600;
    }

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider::after {
    content: "NO";
    color: white;
    margin-right: 7px;
    font-size: 12px;
    font-weight: 600;
}

input:checked + .slider {
    background-color: #56c625;
}

input:focus + .slider {
    box-shadow: 0 0 1px #56c625;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/* Warning Section */
.warning > * {
    margin-bottom: 10px;
}

.warning i {
    font-size: 2rem;
}

.warning .button-blue {
    margin-top: 10px;
    border-radius: 5px;
    background-color: #2c3a50;
    font-size: 1.1rem;
    padding: 12px 17px;
    font-weight: 500;
    letter-spacing: 0.05px;
}

.warning p,
.warning h3 {
    color: #2c3a50;
    max-width: 1000px;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .select-number-days {
        padding: 20px;
        align-items: flex-start !important;
    }

        .select-number-days p {
            margin-bottom: 10px;
        }

        .select-number-days .col {
            width: 100%;
        }

    .days.x-center {
        overflow: auto;
        max-width: 100%;
        justify-content: flex-start;
        padding: 20px 0 20px 0;
        border-bottom: 0;
    }

    .slider-container {
        justify-content: center;
        width: 100%;
        padding-left: 0;
    }

    .avail-tickets .ticket-select-price {
        margin-left: 0;
        align-items: center;
        justify-content: center;
    }

    .ticket-select {
        flex-direction: column;
        width: 90%;
        max-height: none;
    }

    .ticket-select-img {
        margin: 0 5px;
        width: 30%;
        max-width: 30%;
        min-width: 30%;
    }

        .ticket-select-img img {
            width: 100%;
            height: auto;
        }

    .ticket-select > .x-center {
        flex-direction: row;
        align-items: center;
        margin: 10px 20px;
        padding: 10px 0;
        max-width: none;
    }

    .ticket-select
    .ticket-select .ticket-select-img {
        max-height: 210px;
    }

    .ticket-select.option:not(.one-click-ticket) > div.ticket-select-price {
        display: none;
    }

    .ticket-select.option:not(.one-click-ticket) > .x-center {
        padding: 5px;
        margin: 5px;
    }

    .ticket-select.option.one-click-ticket .ticket-select-price {
        border-top: 1px solid rgb(181, 181, 181);
        align-items: center;
        margin: 5px 0;
        padding-top: 15px;
    }

    .ticket-select-details {
        padding: 0 10px;
    }

    .ticket-select-price {
        padding: 5px 0 10px 0;
    }

    .ticket-select .park-option {
        font-size: 0.9rem;
        padding: 10px;
        line-height: 1.05rem;
    }

    .park-option .bullet {
        height: 10px;
        width: 10px;
        min-height: 10px;
        min-width: 10px;
        margin-right: 10px;
    }

    .park-option .ticket-select-price {
        align-items: flex-end;
        width: 30%;
        padding: 0;
    }

        .park-option .ticket-select-price .price {
            font-size: 1rem;
        }

        .park-option .ticket-select-price h3 {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

    .park-option-title {
        margin-right: 10px;
    }

    .warning {
        padding: 0 10%;
    }
}

.ticket-banner {
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: center;
}
.ticket-banner img.img-hide-desktop {
    max-width: 100%;
    height: 100%;
}
.spl-tickets .ticket-select-details {
    padding: 0 30px;
    width: 90%;
}

.spl-tickets, .section-bg-color {
    background: #EDF4FF;
  }
  .spl-tickets .ticket-select:not(.one-click-ticket) {
    border: 0px solid #405371;
    background: #fff;
  }
  .spl-tickets .ticket-select:hover, .spl-tickets .ticket-select.selected {
    border: 0px solid #2c3a50;
    transition: none;
  }
  .spl-tickets .button-blue.xs {
    padding: 7px 20px !important;
    max-width: 140px;
}
.spl-tickets .ticket-select-price h3 {
    padding-right: 16px;
}
.spl-tickets .ticket-select-price {
   margin-top: 14px;
}
.spl-tickets .ticket-park-details h2, 
.spl-tickets .ticket-select-details h2 {
    padding-top: 12px;
    margin-bottom:0px;
}
.spl-tickets .ticket-select:hover {
    transform: none;
    transition: none;
}
.spl-tickets .ticket-select-price{
    flex-direction: row;
    width: -webkit-fill-available;
    padding: 0 30px;
}
.spl-tickets .ticket-select-details{
    color:#848484;
}
.spl-tickets .ticket-select-det-cont{
    flex-direction: column;
}
.section-title-logo {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.section-title-logo img{
    display: none;
}
.note{
    margin-bottom: 20px;
    padding-left: 120px;
    font-size: 16px;
    margin-right: 20px;
    font-weight: 600;
    color:#405371;
}
.spl-tickets .mobile-title h2{
    display: block;
    color: #405371;
}
.spl-tickets .ticket-select-details p small{
    color:#848484;
}
.spl-tickets h4 {
    margin-bottom: 20px;
    color: #3f5270;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
}
.break{
    display: none;
}
.spl-tickets section {
    margin-bottom: 0px;
}
@media (max-width: 600px){
    .spl-tickets .ticket-select-price {
        margin-top: 8px;
     }
    .section-title-logo img{
        width: 110px;
        display: block;
    }
    .note {
        justify-content: center;
        width: 100%;
        padding-left: 26px;
    }
    .spl-tickets .ticket-detail-mobile, .spl-tickets .mobile-title{
        display: block;
    }
    .spl-tickets .ticket-select-price {
        flex-direction: row;
    }
    .ticket-select-det-cont {
        width: 88%;
    }
    .break{
        display: block;
    }
    .select-number-days p {
        text-align: center !important;
        padding-left: 0;
    }
}
@media (max-width: 1200px){
    .spl-tickets .ticket-select-cont{
        flex-direction: column;
    }
    .spl-tickets .ticket-detail-desktop{
        display: none;
    }
    .spl-tickets div:first-child.ticket-select {
        margin-right: 0px;
    }
    .spl-tickets div:nth-child(2).ticket-select{
        margin-left: 0px;
    }
    .spl-tickets .ticket-detail-mobile{        
        padding-left: 26px;
    }
  }
@media (min-width: 1200px){
    .spl-tickets .ticket-select-cont {
        flex-direction: row;
    }
    .spl-tickets .ticket-detail-mobile, .spl-tickets .mobile-title{
        display: none;
    }
    
    .spl-tickets div:first-child.ticket-select {
        margin-right: 5px;
    }
    .spl-tickets div:nth-child(2).ticket-select{
        margin-left: 5px;
    }
}
@media (max-width: 1100px){
	.splevtimg-show-desktop {
		display:none ;
	}
    .splevtimg-hide-desktop {
		display: block;
	}
}
@media (min-width:1100px){
	.splevtimg-show-desktop {
		display: block;
	}
    .splevtimg-hide-desktop {
		display: none;
	}
}

