html {
  min-height: 100vh;height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
}

body{
	margin:0;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background-color:#fff;
	overflow: auto;
	color:#120900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.login-container {
    min-height: 100vh;       /* full viewport height */
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
}

.login-content {
    /* optional styling */
    width: 100%;
    max-width: 400px;
}

.content-head {
	text-align:center;
}
.content-head img {	
	width: 280px;
	margin-bottom:20px;
}

.content-head .language {
	text-align:right;
}	

.content-footer {
	padding-top:20px;
}

.form-control {
	width:100%;
}

.gsi-material-button {
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    height: 40px;
    padding: 0;
    position: relative;
    transition: background-color .2s, box-shadow .2s;
    user-select: none;
}

.gsi-material-button:hover {
    background-color: #f7f8f8;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.gsi-material-button:active {
    background-color: #eeeeee;
}

.gsi-material-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 100%;
}

.gsi-material-button-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.gsi-material-button-icon svg {
    width: 18px;
    height: 18px;
}

.gsi-material-button-contents {
    color: #3c4043;
    font-weight: 500;
    letter-spacing: 0.25px;
    white-space: nowrap;
}

.gsi-material-button-state {
    position: absolute;
    inset: 0;
    border-radius: 4px;
}


.cnt {
  width: 1080px;
  margin: auto;
  position: relative;
}

.topbar_wrapper {
	display:flex;
	justify-content: space-between;
	padding:10px 0;
}

.topbar_wrapper .topbar_logos img { 
	width:220px;
}

.cnt.min-height {
	min-height:400px;
	padding:30px 0;
}

label {
    cursor: pointer;
    font-weight: normal;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}

input[type='checkbox'] {
    display: inline;
    cursor: pointer;
}

h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom:20px;
}

input[type="text"].form_error {
    border-color:red;
}

input[type="checkbox"].form_error {
    outline: 1px solid red;
    outline-offset: 2px;
}

/* alerts */


.alert {
	margin-top: 18px;
  padding: 8px 35px 8px 14px;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.alert-heading {
  color: inherit;
}

.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}

.alert-success {
	/*margin-top: 18px;*/
  padding: 8px 35px 8px 14px;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #468847;
}

.alert-success .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}

.alert-danger,
.alert-error {
	/*margin-top: 18px;*/
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #f2dede;
  border: 1px solid #eed3d7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #b94a48;
    top: unset;
  right: unset;
}

.choose-wrap {
  position: relative;
  display: inline-block;
}

.file_info {
	text-align:center;
}

/* Button */
#btnChooseFiles {
  background: #142f4c;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#btnChooseFiles:hover {
  background: #142f4c;
}

/* Dropdown panel */
.choose-menu {
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 300px;
  background: #142f4c;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  padding: 8px 0;
  display: none;
  z-index: 9999;
  overflow: hidden;
}

/* Items */
.choose-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s ease;
}

.choose-menu a:hover {
  background: rgba(255,255,255,0.12);
}

.choose-menu a .icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.dropzone {
  position: relative !important;
  background: #efeef3 !important;
  border-radius: 5px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 3px dashed #bec0da !important;
  padding: 70px;
}

#file_uploads_images h2 {
	padding-bottom: 0;
}

ul#sortable {
	list-style-type: none;
  margin: 0;
  padding: 0;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
ul#sortable li {
	display:inline-block;
	padding: 0 5px 5px 0;
	cursor: move;
}

ul#notsortable {
	list-style-type: none;
  margin: 0;
  padding: 0;
}
ul#notsortable li {
	display:block;
	padding-bottom: 10px;
	cursor: move;
}

ul#sortable li .description { 
	overflow:hidden;
}

@media screen and (max-width:1080px){

	.cnt {
		width: calc(100% - 30px);
	  margin: 0 15px;
	}

}