.order-form{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.danger-notice{
    color: #5E8D1A;
    font-family: Montserrat, sans-serif;
    font-style: italic;
    width: 450px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.coupon-info{
    color: #5E8D1A;
    font-family: Montserrat, sans-serif;
    text-align: center;
    width: 100%;
}

.ticket-form br{
    margin-bottom: 20px;
}
.ticket-icon{
    width: 39px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.support.ticket-form{
    background: #5E8D1A;
    border: none;
}
.support.ticket-form .ticket-form-title{
    color: white;
}
.support.ticket-form .ticket-form-description{
    color: white;
}
.support.ticket-form hr{
    border: 0.7px solid #fafafa;
    width: 300px;
    margin-bottom: 0;
}
.ticket-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    width: 550px;
    padding: 15px;
    background: #FAFAFA;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}
.ticket-form hr{
    margin-top: 30px;
    border: 0.7px solid #DADADA;
    width: 300px;
    margin-bottom: 0;
}
.ticket-form-text-box{
    display: flex;
    flex-direction: column;
}
.ticket-form-title{
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    color: black;
    font-size: 25px;
    margin: 0;
    font-weight: 400;
}
.ticket-form-description{
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    margin: 0;
    color: #8D8D8D;
    font-size: 16px;
    font-weight: 300;
    max-width: 300px;
}
.support .ticket-form-delete-button{
    background: white;
    color: #5E8D1A;
}

.ticket-form-delete-button{
    margin-top: 15px;
    box-sizing: border-box;
    color: white;
    background: #81BE1B;
    padding: 15px;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 160px;
    font-size: 13px;
    margin-bottom: 20px;
}
.form-group{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    width: 450px;
    flex-wrap: wrap;
}
.form-group.has-error .control-label{
    color: #b21f2d;
}
.form-group .options{
    margin-left: 10px;
}
.form-group .options label{
    font-family: Montserrat, sans-serif;
}
.form-group .control-label{
    min-width: 150px;
    padding: 10px;
    background: #EBEBEB;
    border: 1px solid #D8D8D8;
    box-sizing: border-box;
    border-radius: 4px 0px 0px 4px;
    font-family: Montserrat, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #978A8A;
    font-size: 12px;
}
.form-group .checkbox-list label{
    margin-bottom: 10px;
    padding: 5px;
    background: #EBEBEB;
    border: 1px solid #D8D8D8;
    box-sizing: border-box;
    border-radius: 4px 0px 0px 4px;
    font-family: Montserrat, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #978A8A;
    font-size: 12px;
}
.form-group .checkbox-list label input{
    margin-bottom: 20px;
}
.form-group .form-control{
    margin-left: -3px;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    box-sizing: border-box;
    border-radius: 0px 5px 4px 0px;
    flex: 1 1;
}
.form-group .help-block{
    flex-basis: 100%;
    font-family: Montserrat, sans-serif;
    color: #5E8D1A;
    text-align: right;
    border-radius: 5px;
}

.support .help-block{
    color: white;
}

.btn-register{
    font-family: Montserrat, sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    padding: 20px;
    color: black;
    background: #F2F2F2;
    border-radius: 20px;
    flex: 1;
}

@media screen and (max-height: 1000px) {
    .cart-items{
        max-height: 600px;
        overflow: -moz-scrollbars-vertical;
        overflow-y: scroll;
    }
}

@media screen and (max-height: 700px) {
    .cart-items{
        max-height: 350px;
    }
}

@media screen and (max-height: 600px) {
    .cart-items{
        max-height: 300px;
    }
}

@media screen and (max-width: 600px) {
    .ticket-form{
        max-width: 100vw;
    }
    .form-group, .form-group select{
        width: 90vw;
    }
    .cart-items{
        max-height: 450px;
        overflow: -moz-scrollbars-vertical;
        overflow-y: scroll;
    }
    .danger-notice{
        color: #5E8D1A;
        font-family: Montserrat, sans-serif;
        font-style: italic;
        max-width: 90vw;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 400px) {
    .form-group .control-label{
        border-radius: 0;
        min-width: 150px;
        font-size: 12px;
    }
    .form-group .form-control{
        margin-left: 0;
        z-index: 10;
        margin-top: -3px;
        flex: none;
    }
    .form-group input.form-control{
        width: 100%;
    }
}