.main-form {
    width: 100%;
    padding: 0px 10px 10px 10px;
}

.form-input-text {
    font-family: "Source Sans Pro", sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
	font-weight: bold;
    background: #e1e9ee;
    border: none;
    font-size: 14px;
    height: 34px;
    width: 100%;
    flex-grow: 1;
    color: #283E4A;
    padding-left: 10px;
    margin-bottom: 5px;
}
.form-select {
    font-family: "Source Sans Pro", sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
	font-weight: bold;
    background: #e1e9ee;
    border: none;
    font-size: 14px;
    height: 34px;
    width: 100%;
    flex-grow: 1;
    color: #283E4A;
    padding-left: 10px;
    margin-bottom: 5px;
}
.form-textarea {
    font-family: "Source Sans Pro", sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: bold;
    background: #e1e9ee;
    border: none;
    font-size: 14px;
    height: 75px;
    width: 100%;
    flex-grow: 1;
    color: #283E4A;
    padding: 10px;
    margin-bottom: 5px;
}

.form-row {
	height: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	/*justify-content: center;*/
}
.form-row:hover {
    text-decoration: none;
}
.form-row-spaced {
	margin-top: 10px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-content: space-around;
}
.form-row-gap {
	margin-top: 10px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px
}
.form-checkbox-container {
	display: flex;
	align-items: center;
}
.form-checkbox {
	background-color: #e1e9ee !important;
    accent-color: #e1e9ee !important;
    background: #e1e9ee !important;
    height: 20px;
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.form-label {
	height: 100%;
	font-weight: bold;
	cursor: pointer;
    color: #696c6f;
}
.form-label-text {
    margin-bottom: 10px;
}

.form-button {
	background: #313133;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid #313133;
    border-radius: 2px;
    height: 35px;
    width: 100%;
    padding: 0 16px;
    /*margin-top: 10px;*/
    cursor: pointer;
}
.form-button:hover {
	background: #3E3E3F;
	text-decoration: none;
}


.upload-file-container {
	width: 100%;
	/*height: 100px;*/
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.upload-button-container {
    width: 85px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #313133;
    cursor: pointer;
    font-weight: bold;
    margin-right: 5px;
}
.upload-button-container:hover {
    background: #3E3E3F;
}
.upload-button-icon {
    font-size: 18px;
}

.upload-thumbnail-container {
    position: relative;
	max-width: 70px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin-right: 5px;
}
.upload-thumbnail{
	width: 85px;
    height: 70px;
	cursor: pointer;
}
.upload-text {
	position: absolute;
	top: 45px;
}