/*
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

body {
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
  margin: 0px;
  padding: 0px;
}
*/
/* remove arrows on input number types */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


.flex-outer,
.flex-inner {
  list-style-type: none;
  padding: 0;
}

.flex-outer {
  max-width: 720px;
}

.flex-outer li,
.flex-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.flex-inner {
  padding: 0 8px;
  justify-content: flex-start;  
}

.flex-outer > li:not(:last-child) {
  margin-bottom: 20px;
}

.flex-outer li label,
.flex-outer li p {
  padding: 8px;
  font-weight: 600;
  /*
  letter-spacing: .09em;
   text-transform: uppercase; */
  color: #000000;
  font-size:15px;
}


.flex-outer > li > label,
.flex-outer li p {
  flex: 1 0 280px;
  max-width: 150px;
}


.flex-outer > li > label + *,
.flex-inner {
  flex: 1 0 230px;
    justify-content: flex-start;  
}


.flex-outer li p {
  margin: 0;
}

.flex-outer li input:not([type='checkbox']),
.flex-outer li textarea {
  padding: 10px;
}

.flex-outer li button {
  margin-left: auto;
  padding: 8px 16px;
  background: #1E90C9;
  color: #f2f2f2;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.flex-inner li {
  width: 100px;
}

input[type=email], input[type=text], input[type=number], input[type=password], input[type=reset], input[type=search], input[type=tel] {
    color: #666;
    padding: 0.64em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
}	

input[type=checkbox] {
    color: #666;
    padding: 10px;
	margin: 10px;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
	display: flex;
	align-items: flex-start;
}	
	
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-right-style: none;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
  /*border-top: 1px solid green;*/
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  

  height: 93%;
  max-width: 100%;  
  max-height: 100%;
}	

.tabcontent2 {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;

    /* height: 90%;*/
	/*max-height: 920px;  */
	max-height: 100%; 
}	

/* Style type 2 */

textarea {
     font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
}
 
 .main-content {
   padding: 20px;
 }
 
 @media (max-width: 768px) {
   .main-content {
     padding: 20px 8px;
   }
 }
 

/* form specific formatting */
 .form-group {
   display: flex;
   flex-direction: row;
   margin-bottom: 0px;
   /*padding-top: 10px;*/
 }
 
  .form-group-btns-right {
   display: flex;
   flex-direction: row;
   padding-top: 12px;
   justify-content: flex-end;
 }
 
 .form-group label {
   flex: none;
   display: block;
   width: 130px;
   font-weight: 600;
   font-size: 14px;
   padding-top: 8px;
   padding-left: 8px;
   padding-right: 8px;
 }
 .form-group label.right-inline {
   text-align: right;  
   padding-right: 8px;
   padding-left: 10px;
   padding-top: 10px;
   width: auto;
 }
 
 .form-group .input-control {
    color: #666;
    background-color: #fafafa;
    flex: 1 1 auto;
    display: block;
    /*margin-bottom: 10px;*/
    margin-right: 8px;
    padding: 8px 3px;
    /* margin-top: -4px;*/
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px; 
	/*width: 450px;*/
	max-width: 650px;
	font-size: 14px;
   
 }
 
 
 .readonly
 {
	background-color: #eaeaea; 
 }
 
 .form-group input[type=date] {
	max-width: 110px;   
	padding-left: 10px;	
 }

.form-group-right {
     text-align: right; 
     margin-top: 15px;	
     margin-bottom: 20px;		 
     padding-left: 20px;   
   }   
 
 @media (max-width: 768px) {
   .form-group {
     flex-direction: column;
   }
   .form-group .input-control {
     margin-top: 2px;
   }
   .form-group label.right-inline {
     text-align: left;  
     padding-right: 0;
     padding-left: 0;   
   }
   
 }

.imgpreview{
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px;  
	width: 200px;
	min-height: 150px;
}



.tabcon{
  height: 270px;
  /*height: 100%;*/
  width: 100%;
  /*
	border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 1px; 
    padding:5px;	
*/	
}

.tabcon2{
  height: 370px;
  width: 100%;
  /*
	border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 1px; 
    padding:5px;	
*/	
}

.tabconfull{
  height: 770px;
  width: 100%;	
}

.form-popup {
  display: none;
  position: fixed;
  top: 200;
  left: 200;
  /*right: 15px;*/
  border: 3px solid lightgrey	;
  z-index: 9;
  min-width: 700px;
}

.form-cntr{
  max-width: 760px;	
  background-color: whitesmoke;
}	

table {
  width: 100%;
  /*height: 100%;*/
    overflow-y: scroll;  	  
}

.fixed {
  table-layout: fixed;
}


table,
td,
th {
  border-collapse: collapse;  
}

th,
td {
  padding-left: 5px;
  padding-right: 2px;
  padding-top: 2px;
  padding-bottom: 2px;
  border: solid 1px;
  border-color: #eaeaea;
  border-radius: 2px;  
  text-align: left;
}

th{
  font-weight: 600;
   font-size: 15px;
}

td{
  font-weight: normal;
   font-size: 13px;
   background-color: #fafafa;
}

td img {
  padding-left: 10px;
}

/*
	.flex-outer span {
		margin-top: 10px;
		margin-left: 10px;
		font-size: 14px;
		color: red;
	}
*/

#submit-err{
color: red;
}

.errtext{
color: red;
margin-left: 5px;
}


/* Button */

.btns {
    margin-left: auto;
    padding: 8px 16px;
    background: #1E90C9;
	border: none;
    color: #f2f2f2;
	text-transform: capitalize;
    letter-spacing: .09em;
	border-radius: 5px;
}


.sub_button {
	display: flex;
    flex-wrap: wrap;
	/*margin-top: 15px;*/
	margin-top: 5px;
	margin-left: 20px;
    padding: 5px 16px;
    background: #1E90C9;
	border: none;
    color: #f2f2f2;
    text-transform: uppercase;
    letter-spacing: .09em;
	border-radius: 4px;
}

.sub_button.inactive {
    background: #D3D3D3;
	border: none;
}

.btns.inactive {
    background: #D3D3D3;
	border: none;
}

/* SELECT */
/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
	display: block; /*hide original SELECT element: */
    padding: 8px 16px;
	border: 1px solid #eaeaea;	
}

.select-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.my-float{
	margin-top:12px;
	padding-left:12px;
}

.my-row-icon{
	margin-top:3px;
	padding-left:3px;
	padding-right:3px;
	padding-top:3px;
	padding-bottom:3px;
	color: black;
}
/* }*/

.loader {
  position: absolute;
  left: 450px;
  top: 15px;	
  display: none;
  z-index: 99999;	
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  width: 35px;
  height: 35px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

.mbrloader {
  position: absolute;
  left: 830px;
  top: 160px;	
  display: none;
  z-index: 99999;	
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  width: 35px;
  height: 35px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.myGallery {
  display: flex;
  flex-wrap: wrap;
}

.myGallery img {
  padding-top: 7px;
  padding-left: 7px;
  float: left;
}

.myGallery h1,
p {
  text-align: center;
}

.myGallery {
  font-size: 1rem;
}

.usrImgCntr {
  position: relative;	
  margin-right: 10px;
  margin-bottom: 10px;
}

.usrImgOverlay{
  opacity: 0;
  transition: .3s ease;
  position: absolute;
  padding: 0px;  
  right: 8px;
}



.right {
  right: 8px;
}

.left {
  left: 8px;
}

.usrImgOverlay .fa{
  color: #1E90C9;
}

.draggable {
  background-color: white;
  cursor: move;
}

.draggable.dragging {
  opacity: .5;
}

	.dropbtn {
	  background-color: #4CAF50;
	  color: white;
	  padding: 16px;
	  font-size: 16px;
	  border: none;
	  cursor: pointer;
	}

	.dropdown-content {
	  display: none;
	  position: absolute;
	  font-size: 12px;
	  background-color: #f9f9f9;
	  min-width: 140px;
	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  z-index: 1;
	  right:0;
	}

	.dropdown-content a {
	  color: black;
	  padding: 12px 16px;
	  text-decoration: none;
	  display: block;
	}

	.dropdown-content a:hover {background-color: #f1f1f1}
	.dropdown:hover .dropdown-content {display: block;}
	.dropdown:hover .dropbtn {background-color: #3e8e41;}

.container {
  padding-top: 12px;
  padding-right: 12px;
  padding-left: 12px;
  padding-bottom: 5px;
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.drag-area {
  height: 180px;
  border: 2px dashed #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0px auto;
}

.drag-area .icon {
  font-size: 50px;
  color: #1683ff;
  text-align: center;
}

.drag-area .header {
  font-size: 14px;
  font-weight: 500;
  color: #34495e;
}

.drag-area .support {
  font-size: 12px;
  color: gray;
  margin: 10px 0 15px 0;
}

.drag-area .button {
  font-size: 18px;
  font-weight: 500;
  color: #1683ff;
  cursor: pointer;
}

.drag-area.active {
  border: 2px solid #1E90C9;
}

.drag-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky {
  position: sticky;
  width: 100%;
  bottom: 5px;
  border: 0.5px solid #8AC007;
} 

.formContainerRow {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
}

.galleryformContainer {
    border-radius: 20px;
	flex-wrap: wrap;
}

div.gallery {
  position: relative;
  margin: 5px;
  padding: 4px;
  border: 1px solid #ccc;
  float: left;
  width: 200px;
  border-radius: 5px;
}

div.gallery:hover {
  border: 1px solid #777;
  cursor: move;
}

div.gallery.over {
  border: 3px dotted #666;
}

div.gallery img {
  max-width:190px;
  max-height:240px;
  border-radius: 2%;
}

div.imgbtns {
	padding: 5px;
	float: right;
	margin-right: 10px;
	color: #1E90C9;
}
  
.edit_hover a{
  visibility:hidden;
}
.edit_hover:hover a {
 visibility:visible;
 cursor: pointer;
}  
  
.circle-icon {
    background: #FFFFFF;
    padding:6px;
    border-radius: 50%;
	opacity: 1;
}  

.galdrag-area {
  height: 100%;
  border: 2px dashed #eaeaea;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 3px;
  margin-bottom: 0px;
  margin-right: 3px;
}

.galdrag-area .icon {
  font-size: 40px;
  color: #1683ff;
}

.galdrag-area.active {
  border: 2px solid #1E90C9;
}

.galdrag-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maxwidth {
	max-width: 450px;
}