@charset "UTF-8";

.modal-open {
	overflow: hidden;
}
.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}
.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
	transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
	transition: none;
	}
}
.modal.show .modal-dialog {
	transform: none;
}
.modal.modal-static .modal-dialog {
	transform: scale(1.02);
}

.modal-dialog-scrollable {
	display: flex;
	max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
	max-height: calc(100vh - 1rem);
	overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
	flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1rem);
	height: min-content;
	content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
	max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
	content: none;
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0px;
	outline: 0;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.show {
	opacity: 0.5;
}

.modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #454242;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #454242;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.modal-footer > * {
	margin: 0.25rem;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}

	.modal-dialog-scrollable {
		max-height: calc(100% - 3.5rem);
	}
	.modal-dialog-scrollable .modal-content {
		max-height: calc(100vh - 3.5rem);
	}

	.modal-dialog-centered {
		min-height: calc(100% - 3.5rem);
	}
	.modal-dialog-centered::before {
		height: calc(100vh - 3.5rem);
		height: min-content;
	}

	.modal-sm {
		max-width: 300px;
	}

	.modal-md {
		max-width: 500px;
	}
}
@media (min-width: 992px) {
	.modal-lg,
	.modal-xl {
		max-width: 800px;
	}

	.modal-md {
		max-width: 600px;
	}
}
@media (min-width: 1200px) {
	.modal-xl {
	max-width: 1140px;
	}
}

.modal__content__wrap {
	z-index: 99999999;
}
.modal__content__wrap .modal-header {
	background-color: #f7f7f6;
	border: none;
}
.modal__content__wrap .modal-header .modal-title {
	font-size: 16px;
	font-weight: 400;
	color: #343a40;
}
.modal__content__wrap .modal__content {
	width: 100%;
}
.modal__content__wrap .modal__content h1,
.modal__content__wrap .modal__content h2,
.modal__content__wrap .modal__content h3,
.modal__content__wrap .modal__content h4,
.modal__content__wrap .modal__content h5 {
	margin: 1.5rem 0 .5rem 0
}
.modal__content__wrap .modal__content .modal_content_title {
	text-align: center;
}
.modal__content__wrap .modal__content .modal_content_title h3 {
	font-size: 16px;
	font-weight: 400;
}
.modal__content__wrap .modal__content .modal_content_title p {
	max-width: 300px;
	margin: auto auto 50px auto;
}
.modal__content__wrap .modal__content .post_data_blue_card {
	display: flex;
	justify-content: space-between;
}
.modal__content__wrap .modal__content .post_data_blue_card a {
	background-color: #083888;
	color: #ffffff;
	width: 180px;
	height: 150px;
	display: block;
	text-align: center;
	padding: 20px 10px;
}
.modal__content__wrap .modal__content .post_data_blue_card a:hover {
	background-color: #006cb0;
}
.modal__content__wrap .modal__content .post_data_blue_card a h3 {
	font-size: 14px;
	margin-top: 15px;
}
.modal__content__wrap .modal__content .post_data_blue_card a p {
	font-size: 10px;
	line-height: 15px;
	color: #FFF;
	margin: unset;
}
.modal__content__wrap .modal__content .modal__form .modal__form__head {
	text-align: center;
}
.modal__error__head {
	text-align: center;
	height:fit-content;
}
.modal__content__wrap .modal__content .modal__form .modal__form__head h3 {
	font-size: 14px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content {
	border-top: 1px solid rgba(112, 112, 112, 0.25);
	padding: 15px 0;
}

.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group label {
	font-weight: 400;
	color: #343a40;
	text-align: right;
	padding-right: 10px;
	font-weight: bold;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .custom-select {
	width: 90%;
	border-color: #9d9d9d;
	border-radius: 4px;
	height: 40px;
	background-color: #f7f7f6;
	color: #343a40;
	font-size: 12px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form-control {
	width: 90%;
	border-color: #9d9d9d;
	border-radius: 4px;
	height: 40px;
	background-color: #f7f7f6;
	color: #343a40;
	font-size: 12px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group textarea.form-control {
	height: 120px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_submit {
	width: 140px;
	height: 40px;
	padding: 0px 0px;	
	letter-spacing: .05em;
	margin-top: 5px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf {
	width: 45%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf label {
	width: 22%;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf .custom-select {
	width: 78%;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf.form_hulf_3 label {
	width: 10%;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf.form_hulf_3 .form-control {
	width: 62%;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf.form_hulf_3 .btn-outline-secondary {
	border-color: #9d9d9d;
	border-radius: 4px;
	height: 40px;
	background-color: #f7f7f6;
	color: #9d9d9d;
	font-size: 12px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .upload_files_box {
	width: 90%;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .upload_files_box label {
	width: auto;
	text-align: left;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .upload_files_box .custom-file-label {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: 40px;
	width:550px;
	overflow:auto;		
	padding: 6px 0 0 140px;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #ffffff;
	border: none;
	border-radius: 0px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .upload_files_box .custom-file-label::after {
	left: 0;
	right: auto;
	height: 40px;
	padding: 10px 20px;
	line-height: 1.5;
	color: #2b2a2d;
	content: "CHOOSE FILES";
	background-color: #e9ecef;
	border-left: inherit;
	border-radius: 0;
	border: 1px solid #9d9d9d;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .upload_files_box .upload_guide {
	display: block;
	font-size: 8px;
	line-height: 12px;
	margin-top: 15px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group.relate_others {
	border-top: 1px solid rgba(112, 112, 112, 0.25);
	padding-top: 25px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group.relate_others h3 {
	font-size: 14px;
	color: #343a40;
	font-weight: 400;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group.relate_others label {
	width: auto;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .search_by_tags .form-control {
	width: 100%;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .tag_list {
	margin-top: 20px;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .tag_list .tag_list_items {
	margin-bottom: 15px;
	display: flex;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .tag_list .tag_list_items span {
	font-size: 12px;
	color: #343a40;
	font-weight: 400;
}
.modal__content__wrap .modal__content .modal__form .modal__form__content .tag_list .tag_list_items span {
	display: inline-block;
	color: #ffffff;
	margin: 2px;
	font-size: 12px;
	padding: 4px 15px;
	cursor: pointer;
}
.modal__content__wrap .recently_uploaded
{
	margin-top:30px;
}
.chevron-right {
	border: none;
	cursor: pointer;
	background-color: transparent;
	width: 30px; 
	height: 0px; 
	padding: 0;
	display:block;
  }
  .chevron-down {
	border: none;
	cursor: pointer;
	background-color: transparent;
	width: 30px; 
	height: 0px; 
	padding: 0;
	display:block;
  }  
  .chevron-right::before
  {
	  content: "";
	  display: block;
	  margin: auto;
	  width: 0; 
	  height: 0; 
	  border-bottom: 10px solid transparent; 
	  border-top: 10px solid transparent;
	  border-left: 10px solid black; 	  
  }  
  .chevron-down::before
  {
	  content: "";
	  display: block;
	  margin: auto;
	  width: 0; 
	  height: 0; 
	  border-left: 10px solid transparent; 
	  border-right: 10px solid transparent; 
	  border-top: 10px solid black; 
  } 
.inventory_files_display_label 
{
	width:62% !important;
}
.inventory_file_display
{
	width:100% !important;
	background: whitesmoke !important;
}
.inventory_file_path	
{
	text-align: left !important;
	font-size:14px;
}
.inventory_file_date	
{
	font-size:14px;
}
.mysql_log_query {
	padding: 5px;
	border: 1px solid black;
	cursor: pointer;
}
.mysql_log_error_backtrace {
	padding: 5px;
	border: 1px solid black;
	font-size: 10px;
	background-color: whitesmoke;
}
.harvestlog_description {
	padding: 5px;
	border: 1px solid black;
	cursor: pointer;
}
.harvestlog_backtrace {
	padding: 5px;
	border: 1px solid black;
	font-size: 10px;
	background-color: whitesmoke;
}
.modal__content button{
	font-size: 12px;
	background: #083888;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: .1em;
	padding: 10px 10px;
	width: 100%;
	text-transform: uppercase;
}

.modal__content button.sub{
	font-size:smaller;
	background: #ccc; 
}
.modal__content button:hover {
	background: #4368A4;
}
.modal__content .modal-button-confirm {
	display: inline-block;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 15px;
	text-align: center;
	margin: 5px 8px
}
.modal__content .modal-button-confirm:hover {
	background: #dedede !important;
}
.modal__content .modal-button-confirm-yes {
	background: #03b4dc;
	color: #ffffff;
}
.modal__content .modal-button-confirm-no {
	margin-right: 10px;
	background: none;
	border: 1px solid #c6c5c5;
	color: #555;
}


.modal__content h5 {
	font-size: 16px;
	color: #2b2a2b;
	font-weight: 300;
}
.modal__content p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4rem;
	margin: 1rem 0;
}
.modal__content a {
	text-decoration: underline;
}
.modal-content ul,
.modal-content ol{
	list-style: unset;
	margin: 0;
	padding: 0;
	padding-left:25px;
	margin:10px 0
}
.modal-content li{
	font-size:16px;
	line-height:1.8rem
}
.modal-content img{
	margin:10px;
}

.modal__content table{
	background:#FFF;
	text-align:left;
	width:100%;
	margin: 0 0 15px 0;
}
.modal__content th{
	background:#F5F5F5;
	padding:8px 4px;
	border:1px solid #BBB;
	white-space:nowrap
}
.modal__content td{
	padding:4px
}

.ui-draggable-handle {
	cursor: move;
}

.modal__content .modal-table-edit-data {
	border: none;
}

.modal__content .modal-table-edit-data input[type=text],
.modal__content .modal-table-edit-data select,
.modal__content .modal-table-edit-data textarea{
	width:350px;
	padding:2px;
}

.modal__content .modal-table-edit-data input[type=text]:required,
.modal__content .modal-table-edit-data select:required,
.modal__content .modal-table-edit-data textarea:required{
	background: #FFD61A;
}

@media all and (max-width: 991px) {
	.modal__content__wrap .modal__content .post_data_blue_card {
		flex-wrap: wrap;
	}
	.modal__content__wrap .modal__content .post_data_blue_card a {
		width: 100%;
		margin-bottom: 30px;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__head {
		text-align: center;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__head h3 {
		font-size: 14px;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group label {
		width: 100%;
		text-align: left;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .custom-select {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form-control {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf label {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf .custom-select {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf.form_hulf_3 label {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf.form_hulf_3 .form-control {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .form_hulf.form_hulf_3 .btn {
		margin-top: 20px;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .form-group .upload_files_box {
		width: 100%;
	}
	.modal__content__wrap .modal__content .modal__form .modal__form__content .search_by_tags .form-control {
		width: 100%;
	}
}

#ExtensionLoginLinksDiv{
	text-align:center;
}
#ExtensionLoginLinksDiv a{
	background-color: #083888;
	font-weight: 600;
	color: #ffffff;
	line-height:35px;
	border-radius: 4px;
	border: 1px solid #9d9d9d;
	padding: 0.375rem 0.75rem;
	text-decoration: none;
}
#ExtensionLoginLinksDiv a:hover{
	background-color: #4368A4;
}


#InsertNewsForm #TaggedRecipientsInput{
	width:100%
}
#InsertNewsForm #TaggedRecipientsSearchResult{
	width:100%;
	padding:5px;
	display:none;
	margin-top:-1px;
	overflow:scroll;
	border:1px solid rgb(204, 204, 204);
	background-color:white
}

#InsertNewsForm table td:first-child{
	text-align:right;
	padding-right:5px
}

#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions{
	border:none;
	width:380px;
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions tr.TitleRow{
	background:#FFF
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions tr.TitleRow td{
	text-align:center;
	padding:8px 0;
	font-size: 16px;
	color: #2b2a2b;
	margin-bottom: 0;
	font-weight: 300;
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions tr.SubtitleRow td{
	background: #ebebeb;
	padding: 7px;
	font-size: 12px;
	text-align: center;
	color: #2b2a2b;
	text-transform: uppercase;
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions tr.HelpDescriptionRow td{padding:5px;text-align:center;font-weight:bold}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions tr.InactiveRow td{
	color:#CCC;
	font-style:italic
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions tr.InvisibleRow{
	display:none
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions tr td.td-checkbox{
	border-right: 2px solid #ebeaea;
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions td{
	padding:.5em
}
#ParcelInformationPdfMessageDiv table.ParcelInformationPdfOptions td label{
	margin: 0
}
#ParcelInformationPdfMessageDiv #UserTypePdf{
	font-family: monospace
}
#ParcelInformationPdfMessageDiv input[type="checkbox"]{
	width:18pt;
	height:18px
}
#ParcelInformationPdfMessageDiv #UserMessageDiv{
	text-align:left;
	border:2px solid #000;
	background:#FFF;
	cursor:default;
	padding:5px 10px;
	margin:10px 0
}
#CreatePdfButton{
	padding: .5rem 1rem;
}

#ParcelPdfDiv table.parcel-information-pdf-options{
	border:none;
	width:100%;
	font-size:12px;
}
#ParcelPdfDiv table.parcel-information-pdf-options tr.title-row{
	background:#FFF
}
#ParcelPdfDiv table.parcel-information-pdf-options tr.subtitle-row td{
	text-align:center;
	padding:8px 0;
	font-size: 16px;
	color: #2b2a2b;
	margin-bottom: 0;
	font-weight: 300;
}
#ParcelPdfDiv table.parcel-information-pdf-options tr.subtitle-row td{
	background: #f3f3f3;
	padding: 3px;
	text-align: center;
	color: #2b2a2b;
	text-transform: uppercase;
	font-size: 12px;
}
#ParcelPdfDiv table.parcel-information-pdf-options tr.help-description td{
	padding:5px;
	text-align:center;
	font-weight:bold
}
#ParcelPdfDiv table.parcel-information-pdf-options tr.inactive td{
	color:#CCC;
	font-style:italic
}
#ParcelPdfDiv table.parcel-information-pdf-options tr.invisible{
	display:none
}
#ParcelPdfDiv table.parcel-information-pdf-options td{
	padding:.3rem
}
#ParcelPdfDiv table.parcel-information-pdf-options td label{
	margin: 0
}
#ParcelPdfDiv input[type="checkbox"]{
	width:18pt;
	height:18px
}
#ParcelPdfDiv #UserMessageDiv{
	text-align:left;
	border:2px solid #000;
	background:#FFF;
	cursor:default;
	padding:5px 10px;
	margin:10px 0
}

#FeedbackForm .fb-menu-div {
	padding: 10px 0;
	position: relative;
}
#FeedbackForm .fb-menu-div ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
}
#FeedbackForm .fb-menu-div li {
	flex: 1;
	padding: 12px 0 !important;
	margin: 0;
	display: flex;
	align-items: center;
	border-bottom: 4px solid #F4F4F4;
	position: relative;
	z-index: 999999;
	width: 100%;
	height: 100%;
}
#FeedbackForm .fb-menu-div li:after {
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 5px;
	background: #03B4DC;
	content: "";
	opacity: 0;
	visibility: hidden;
}
#FeedbackForm .fb-menu-div ul li.active:after {
	opacity: 1;
	visibility: visible;
}
#FeedbackForm .fb-menu-item {
	margin: 0;
	position: relative;
}
#FeedbackForm .fb-menu-item label {
	margin: 0;
}
#FeedbackForm .fb-menu-item input {
	position: absolute;
	z-index: 9999999;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
#FeedbackForm .fb-menu-item .container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#FeedbackForm .fb-menu-item h5 {
	margin: 0;
	font-size: 16px;
	color: #2b2a2b;
	font-weight: 400;
	margin-left: 10px;
}
#FeedbackForm .fb-menu-item input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
#FeedbackForm .fb-menu-item .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: #ffffff;
	border-radius: 50%;
	border: 1px solid #707070;
}
#FeedbackForm .fb-menu-item input:checked ~ .checkmark {
	background-color: #707070;
}
#FeedbackForm .fb-menu-item .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
#FeedbackForm .fb-menu-item input:checked ~ .checkmark:after {
	display: block;
}
#FeedbackForm .fb-menu-item .checkmark::after {
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #707070;
	border: 1px solid #ffffff;
}
#FeedbackForm .fb-input-div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}
#FeedbackForm .fb-input-div h4 {
	margin: 0;
	margin: 0;
	margin-left: 0px;
	margin-left: 0px;
	font-size: 16px;
	color: #2b2a2b;
	font-weight: 400;
	margin-right: 15px;
}
#FeedbackForm .fb-input-div textarea {
	flex: 1;
	height: 200px;
	border: none;
	resize: none;
	background: #F7F7F6;
	border: 1px solid #EDEDED;
	border-radius: 5px;
	padding: 5px;
}
#FeedbackForm .fb-submit-div {
	padding-bottom: 50px;
	text-align: right;
}
@media all and (max-width: 767px) {
	#FeedbackForm .fb-menu-div ul {
		display: block;
	}
	#FeedbackForm .fb-menu-div li {
		display: block;
	}
	#FeedbackForm .fb-input-div {
		display: block;
		text-align: center;
	}
	#FeedbackForm .fb-input-div h4 {
		margin: 0;
		margin-bottom: 15px;
	}
	#FeedbackForm .fb-input-div textarea {
		width: 100%;
	}
	#FeedbackForm .fb-submit-div {
		text-align: center;
	}
}

.HoverPopupLink{
	font-weight: bold;
	color: #FFF;
	background: #dcdbdb;
	border-radius: 15px;
	text-decoration: none;
	padding: 2px 3px;
	font-size: 14px;
	margin: 0 .25rem;
	cursor: pointer;
}
.HoverPopupLink:hover{
	background: #ebebeb;
}


.modal-xl .video-modal-iframe {
	width: 1106px;
	height: 622.125px;
}
@media all and (max-width: 1199px) {
	.modal-xl .video-modal-iframe {
		width: 766px;
		height: 430.875px;
	}
}
@media all and (max-width: 991px) {
	.modal-xl .video-modal-iframe {
		width: 466px;
		height: 262.125px;
	}
}
