/*--------------------------------
Body Color
--------------------------------*/
body {
	background-color: black;
	background-image: linear-gradient(rgb(2, 7, 20), rgb(2, 70, 70));
}

/*--------------------------------
Drop Zone Uploader
--------------------------------*/
#drop_zone {
	margin: auto;
	border: 2px dashed #cececa;
	width: 100%;
	height: 100px;
	background-color: rgba(36, 35, 41, 0.8);
	padding: 20px;
	border-radius: 5px;
	color: white;/*rgb(204, 204, 204);*/
	font-size: 16px;
	text-align: center;
}

/*--------------------------------
Button Style
--------------------------------
}*/

.button {
	border: 1px solid black;
	border-color: black;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	display: inline;
	font-size: 20px;
	margin: 2px 2px;
	cursor: pointer;
	border-radius: 12px;
	background-color: rgb(153, 202, 202);
    color: rgb(2, 7, 20);
}
.button:hover {
    background-color: rgb(2, 7, 20);
    color: rgb(153, 202, 202);
}


.buttonDragZone {
	border: 3px;
	color: white;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
}

.progressUpload {
  display: block;
  width: 0%;
  height: 20px;
  border: none;
  background-color: #DFDF00;
  color: white;
  padding: 1px 1px;
  font-size: 1px;
  cursor: pointer;
  text-align: center;
}
/*--------------------------------
Disclaimer zone
--------------------------------*/
.disclaimerZone {
	margin: auto;
	background-color: rgba(255, 187, 187, 0.8); /* Green */
	border: none;
	color: rgb(0, 0, 0);
	text-decoration: none;
	font-size: 11px;
	width: 100%;
	height: 20px;
	border-radius: 5px;
	padding: 1px 1px;
	text-align: center;
	vertical-align: middle;
}

.statusZone {
	margin: auto;
	background-color: rgb(36, 35, 41); /* Green */
	border: none;
	color: #cececa;
	text-decoration: none;
	font-size: 16px;
	width: 100%;
	border-radius: 5px;
	padding: 10px 10px;
	text-align: center;
}

.infoZone {
	margin: auto;
	border: none;
	color: #cececa;
	text-decoration: none;
	font-size: 11px;
	width: 100%;
	border-radius: 5px;
	padding: 1px 1px;
	text-align: center;
}

/*--------------------------------
Hide & show element
--------------------------------*/
.show {
	display: block;
}

/*--------------------------------
textarea
--------------------------------*/
.textarea {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #ddd;
}

.textarea2 {
	resize: none;
	padding: 1em;
}

/*--------------------------------
text
--------------------------------*/
.phone, .email, .name, .description {
	margin-bottom: 4px;
}

.genText{
	text-align: justify;
	width: 400px; /* Your element needs a fixed width */
	display: flex;
	justify-content: space-between;
	font-size:12px;
	font-weight: bold;
	color:blue;
}

.grid-container {
	display: grid;
	align-content: space-evenly;
	grid-template-columns: auto auto auto auto;
	grid-gap: 10px;
	background-color: #fdfdfd00;
  }

  .grid-dupla {
	float: left;
	width: 25%;
	height: 12; 
  }

  
  .grid-container > div {
	background-color: rgba(255, 255, 255, 0);
	text-align: center;
	padding: 10px 0;
	font-size: 12px;
  }

/*--------------------------------
form styleAnkyras
--------------------------------*/
.form-control {
	display: block;
	width: 100%;
	height: 32px;
	padding: 6px 6px;
	margin: 1px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/*--------------------------------
tab styleAnkyras
--------------------------------*/
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
}

/* 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;
}

/* Style the tab content */
.tabcontent {
	display: none;
	border-top: none;
	width: 100%;
	height: 80%
}

.switch {
		position: relative;
		display: inline-block;
		width: 60px;
		height: 34px;
}

.switch input {
		opacity: 0;
		width: 0;
		height: 0;
}

.slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #ccc;
		-webkit-transition: .4s;
		transition: .4s;
}

.slider:before {
		position: absolute;
		content: "";
		height: 26px;
		width: 26px;
		left: 4px;
		bottom: 4px;
		background-color: white;
		-webkit-transition: .4s;
		transition: .4s;
}

input:checked + .slider {
		background-color: rgb(255, 179, 1);
}

input:focus + .slider {
		box-shadow: 0 0 1px rgb(255, 179, 1);
}

input:checked + .slider:before {
		-webkit-transform: translateX(26px);
		-ms-transform: translateX(26px);
		transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
		border-radius: 34px;
}

.slider.round:before {
		border-radius: 50%;
}

/* box  */
.box {
  background-color: rgb(255, 179, 1);
  border-radius: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-color: rgb(0, 0, 0);
  padding: 0px;
  margin: 0px;
}.box:hover{
	background-color: rgba(255, 179, 1, 0.686);
}.box:focus{
	background-color: rgba(255, 179, 1, 0.686);
}

.selectedbox{
	background-color: rgba(255, 255, 255, 0.74);
	border-radius: 25px;
	width: 100%;
	height: 100%;
	border: 5px solid;
	border-color: rgba(255, 255, 255, 0.74);
	padding: 5px;
	margin: 20px;
}

.blackBox-Vertical {
	background-color: black;
	width: auto;
	height:  auto;
	display: flex;
	flex-direction: column;
}

.blackBox-Horizontal {
	background-color: black;
	width: auto;
	height:  auto;
	display: flex;
	flex-direction: row;
}

.whiteBox-Vertical {
	background-color: rgb(255, 255, 255);
	width: auto;
	height:  auto;
	display: flex;
	flex-direction: column;
}

.whiteBox-Horizontal {
	background-color: rgb(255, 255, 255);
 	width: auto;
	height:  auto;
	display: flex;
	flex-direction: row;
}

.goldBox-Vertical {
	background-color: rgb(255, 255, 255);
	border-radius: 10px;
	width: auto;
	height:  auto;
	display: flex;
	flex-direction: column;
}

.goldBox-Horizontal {
	background-color: rgba(0, 0, 0, 0.144);
 	width: auto;
	height:  auto;
	display: flex;
	flex-direction: row;
}


.menuParent {
  width: 100%;
  display: flex;
  justify-content: center;
}
.menuChild {
  padding: 10px 10px;
  border: 5px solid rgb(255, 255, 255);
  font-size:12px;
  padding:5px;
  color:black
}
/* Scrollbar styles */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	border: 1px solid rgb(255, 255, 255);
	border-radius: 2px;
}

::-webkit-scrollbar-thumb {
	background: #e7e7e7;
	border-radius: 2px;
	border-color: rgb(255, 255, 255);
}

::-webkit-scrollbar-thumb:hover {
	background: #e7e7e7;
	border-color: rgb(255, 255, 255);
	border-width: 1px;
}

.select::selected{
	border-radius: 0px;
	border-color: black;
	border-width: 1px;
}

.select:disabled{
	border-radius: 0px;
	border-color: rgb(255, 179, 1);
	border-width: 1px;
}

/* loading animation*/
.spinner {
	-webkit-animation: rotator 1.4s linear infinite;
			animation: rotator 1.4s linear infinite;
  }
  
  
  @-webkit-keyframes rotator {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(270deg);
	}
  }

  @keyframes rotator {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(270deg); }
  }
  
  .path {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	transform-origin: center;
	-webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
			animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
  }
  


  
  @keyframes colors {
	0% { stroke: rgb(3, 97, 97) }
	25% { stroke: #f2f2f2; }
	50% { stroke: rgb(255, 166, 0)}
	75% { stroke: #f2f2f2; }
	100% { stroke: rgb(3, 97, 97) }
  }

  @-webkit-keyframes dash {
	0% {
	  stroke-dashoffset: 187;
	}
	50% {
	  stroke-dashoffset: 46.75;
	  transform: rotate(135deg);
	}
	100% {
	  stroke-dashoffset: 187;
	  transform: rotate(450deg);
	}
  }
  @keyframes dash {
	0% {
	  stroke-dashoffset: 187;
	}
	50% {
	  stroke-dashoffset: 46.75;
	  transform: rotate(135deg);
	}
	100% {
	  stroke-dashoffset: 187;
	  transform: rotate(450deg);
	}
}
