#map {
	height: 400px;
	width: 95%;
}

/* image files */

*,::after,::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card-image {
    width: auto;
    height: auto;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;
    background: #fafbff;
}

.card-image .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.card-image p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #878a9a;
}

.card-image button {
    outline: 0;
    border: 0;
        -webkit-appearence: none;
	background: #5256ad;
	color: #fff;
	border-radius: 4px;
	transition: 0.3s;
	cursor: pointer;
	font-weight: 400;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	font-size: 0.8rem;
	padding: 8px 13px;
}

.card-image button:hover {
	opacity: 0.8;
}

.card-image button:active {
	transform: translateY(5px);
}

.card-image .drag-area {
	width: 100%;
	height: 200px;
	border-radius: 5px;
	border: 2px dashed #d5d5e1;
	color: #c8c9dd;
	font-size: 0.9rem;
	font-weight: 500;
	position: relative;
	background: #f5f5f9;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
	-webkit-user-select: none;
	margin-top: 10px;
}

.card-image .drag-area .visible {
	font-size: 18px;
}
.card-image .select {
  color: #49b2e3;
	margin-left: 5px;
	cursor: pointer;
	transition: 0.4s;
}

.card-image .select:hover {
	opacity: 0.6;
}

.card-image .container {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	max-height: 200px;
	overflow-y: auto;
	margin-top: 10px;
}

.card-image .container .image {
	width: calc(26% - 25px);
	margin-right: 15px;
	height: auto;
	position: relative;
	margin-bottom: 8px;
}

.card-image .container .image img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.card-image .container .image span {
	position: absolute;
	top: -2px;
	right: 9px;
	font-size: 20px;
	cursor: pointer;
}

/* dragover class will used in drag and drop system */
.card-image .drag-area.dragover {
	background: rgba(0, 0, 0, 0.4);
}

.card-image .drag-area.dragover .on-drop {
	display: inline;
	font-size: 28px;
}

.card-image input,
.card-image .drag-area .on-drop,
.card-image .drag-area.dragover .visible {
	display: none;
}
/* image files */



/*
Construction page
 */




  #construction-body {
	height: 100%;
	background-repeat: no-repeat;
	background-color: rgb(65, 52, 52);
	background-size: 100% 100%;
  }
 
  .p-subtitle {
	font-size: 12px;
  }
  #animation-container{
	margin: auto;
	width: 50%;
	max-width: 600px;
  }
  .image-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width:220px;
	height:auto;;
  }

  .center {
	text-align: center;
  }
  
  @media (max-width: 576px) {
	.line{
	  border-style: solid;
	  border-color: white;
	  border-bottom-width: 2px;
	  margin: 0 2em 0 2rem;
	}
	.image-logo {
	  padding-bottom: 3em;
	  padding-right: 0;
	}
  }
  @media (min-width: 576px) {
	.with-border{
	  border-right-style: solid;
	  border-color: white;
	  border-right-width: 2px;
	}
  }
  
