#loyalmeet-app {
    max-width: 990px;
    margin: 15px auto;
    padding: 0 10px
}

#loyalmeet-app h3 {
    font-size: 1.5rem;
    text-transform: capitalize
}

#time-zone-select-container {
    margin: 10px 0;
    text-align: center
}

#time-zone-select-container select {
    max-width: 100%;
    padding: 5px;
    border: 1px solid rgb(200, 200, 200);
    border-radius: .25rem;
    box-shadow: 0 0 5px 0 rgb(0, 0, 0, .075);
}

#time-zone-select-container select:focus {
    outline: 0
}

@media (max-width: 990px) {

    #time-zone-select-container {
        padding: 0 10px;
        text-align: left
    }
}

#step-choose {
    display: flex;
    gap: 15px
}

#step-choose #step-calendar {
    width: 35%
}

#step-choose #step-times {
    width: 65%
}

@media (max-width: 990px) {

    #step-choose {
        flex-wrap: wrap;
        padding: 0 10px
    }

    #step-choose #step-times,
    #step-choose #step-calendar {
        width: 100%
    }
}

#loyalmeet-app #lm-timeslots {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

#loyalmeet-app #lm-timeslots .lm-time-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: rgb(250, 250, 250);
    border: 1px solid rgb(225, 225, 225);
    border-radius: 300px;
    cursor: pointer
}

#loyalmeet-app #lm-timeslots .lm-time-btn:hover {
    background: rgb(245, 245, 245)
}

#loyalmeet-app #lm-timeslots .lm-time-btn.active-time {
    background: rgb(125, 185, 0);
    color: rgb(255, 255, 255);
    border-color: rgb(125, 185, 0)
}

#step-confirm {
    margin: 15px 0 0
}

#step-confirm .detail-field {
    margin: 0 0 10px
}

#step-confirm .detail-field label {
    display: block;
    margin: 0 0 2.5px;
    font-weight: 600
}

#step-confirm .detail-field textarea,
#step-confirm .detail-field .field-input {
    width: 100%;
    padding: 5px;
    border: 1px solid rgb(200, 200, 200);
    border-radius: .25rem;
    box-shadow: 0 0 5px 0 rgb(0, 0, 0, .075)
}

#step-confirm .detail-field textarea:focus,
#step-confirm .detail-field .field-input:focus {
    border-color: rgb(20, 15, 40);
    outline: 0
}

#step-confirm .detail-field textarea {
    height: 100px;
    resize: none
}

#step-confirm button.confirm-button {
    padding: 10px 30px;
    background: rgb(125, 185, 0);
    color: rgb(255, 255, 255);
    border: 0;
    border-radius: 300px
}

#step-confirm button.confirm-button:hover {
    opacity: .90
}

#step-confirm #step-confirm-form {
    width: flex;
    gap: 10px
}

#step-confirm #step-confirm-form #step-confirm-form-left {
    width: 50%
}

#step-confirm #step-confirm-form #step-confirm-form-right {
    width: 50%
}

@media (max-width: 990px) {

    #step-confirm {
        padding: 0 10px
    }

    #step-confirm #step-confirm-form {
        flex-wrap: wrap
    }

    #step-confirm #step-confirm-form #step-confirm-form-left,
    #step-confirm #step-confirm-form #step-confirm-form-right {
        width: 100%
    }
}