* {
    box-sizing: border-box;
}

body {
    color: #333333;
    line-height: 1.5;
    font-size: 15px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h2,
h3 {
    font-weight: 500;
}

input,
select {
    max-width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border .12s ease-in-out;
}

.form-control {
    /*border: none;*/
    /*border-bottom: 1px solid #ced4da;*/
}

.form-control {
    display: block;
    width: 100%;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #f5f4f4;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus,
.form-control:active,
.form-control:visited {
    box-shadow: none;
    outline: none;
}

.form-option-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-option-container {
    border: 1px solid #dddddd;
    padding: 2%;
    display: flex;
    width: 100%;
    max-width: 1000px;
    flex-direction: row;
}

.left-side-container {
    display: flex;
    flex: 5;
    flex-flow: wrap;
}

.department-container {
    width: 30%;
    margin: 0 auto 2% auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
}

.department-container img {
    /*width: 100%;
    max-width: 100px;*/
}

.department-container>a h5 {
    color: #1f4f6c;
    font-size: 16px;
    text-align: center;
}

.right-side-container {
    display: flex;
    flex: 2;
    padding: 5%;
    align-items: center;
    justify-content: center;
    border-left: 2px solid #1f4f6c;
}

.right-side-container>h3 {
    font-weight: 600;
    font-size: 18px;
}

.right-side-container>h3>span {
    font-weight: 500;
}

.ticket-type {
    display: none;
}


/*********** Modal ***************/

.modal {
    display: none;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background: #fff;
    border: 1px solid #ddd;
    /*padding: 2%;*/
    border-radius: 5px;
    width: 100%;
    max-width: 450px;
}

.modal-header,
.modal-body,
.modal-footer {
    padding: 15px;
}

.modal-header {
    border-bottom: 1px solid #dddd;
    display: flex;
    flex-flow: wrap;
}

.closeIcon {
    cursor: pointer;
    padding: 2px 9px;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.closeModal {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.form-group {
    padding-bottom: 10px;
}

.submit-btn {
    background-color: #4c8ee5;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    /*min-width: 60px;*/
    /*right: 4.5rem;*/
    box-shadow: none;
    border: none;
    border-radius: 4px;
}

.modal-header h3 {
    font-weight: 600;
}

.submit-btn-container {
    justify-content: center;
    display: flex;
    margin-top: 2%;
}

.image_div {
    display: flex;
    justify-content: center;
}

@media(max-width: 767px) {
    .form-option-container {
        flex-direction: column;
    }
    .right-side-container {
        padding: 2%;
        margin-top: 2%;
        border-left: none;
        border-top: 2px solid #1f4f6c;
    }
}