.set-tickets-details {
    display: flex;
}

.light-text {
    margin: 2px 0 20px 0;
    font-size: 0.9rem;
}

.ticket-reminder {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    background-color: rgb(255, 255, 178);
    margin: 2rem 11% 0 11%;
    border-radius: 10px;
}
/* Date Picker Style */
#datepicker {
    width: 100%;
}

.date-picker-cont {
    width: 70%;
}

.important-notes {
    width: 70%;
    max-width: 65%;
    padding-top: 0;
}

.date-picker-dialog {
    border: 1px solid rgb(203, 203, 203);
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 1rem;
}

.date-picker-dialog h3,
.date-picker-dialog p {
    color: #2c3a50;
    text-align: center;
}

.date-picker-dialog h3 {
    font-size: 1.5rem;
}

.date-picker {
    padding: 20px;
    margin-top: 10px;
}

.date-picker-footer {
    text-align: center;
    padding: 12px 0;
    background-color: #e70004;
    width: 100%;
    font-weight: 500;
    color: white;
}

.date-picker-footer p {
    color: white;
    margin-bottom: 0;
}

/* Ticket Notes and Details */
.ticket-notes {
    margin-top: 30px;
}

.ticket-notes > * {
    margin-top: 20px;
    color: #405371;
}

.ticket-notes h4 {
    margin-top: 30px;
    font-weight: 600;
}

.ticket-price {
    padding-top: 10px;
}

/* Input Ticket Quanity  */
.ticket-qty {
    margin-left: auto;
}

.ticket-qty .qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 38px;	
    border: 1px solid #dae1e7;
    cursor: pointer;
    font-size: 1.7rem;
}

.ticket-qty input {
    width: 39px;
    height: 38px;
    border: 1px solid #dae1e7;
    border-right: 0;
    border-left: 0;;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 500;
    -moz-appearance: 'textfield';
    margin: 0;
    font-size: 1rem;
    text-align: center;
    transition: 0.1s;
}

.ticket-qty input.dark-bg {
    background-color: #e70004;
    color: white;
    transition: 0.1s;
}
span.qty-btn.minus {
    border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}

span.qty-btn.add { border-top-right-radius:3px;
border-bottom-right-radius:3px;}
.align-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.date-picker-text{
    position: absolute;
    z-index: 9999;
    text-align: center;
    width: 100%;
    top: 12%;
    font-size: 1rem!important;
}
.mbsc-calendar-header {
    margin-bottom: 0px;
    margin-top: 0!important;
}
.mbsc-calendar-controls {
    height: 50px!important;    
    margin: 0!important;
    background: #43516d!important;
}
.mbsc-calendar-header.mbsc-ios:after {
    content: "When will you visit?";
    width: 100%;
    text-align: center;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .ticket-reminder {
        margin: 1rem;
        width: calc(100% - 2rem - 30px);
    }

    .set-tickets-details {
        flex-direction: column;
        padding: 0 20px;
    }

    .date-picker-cont {
        width: 100%;
    }

    .date-picker-dialog {
        margin-right: 0;
    }

    .date-picker-dialog p {
        text-align: center;
    }

    .tickets-quantity-cont {
        margin-top: 20px;
        width: 100%;
    }

    .buy-tickets-dialog {
        width: 100%;
    }

    .important-notes {
        width: 100%;
        max-width: none;
        padding: 0 11%;
    }
}