@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');
/* Main style */
* {
  font-family: 'Open Sans', sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: url("../img/background.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.wrapper-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  transition: all .5s;
}

.card {
  background: rgba(255,255,255,0.595) !important;
  box-shadow: 0 4px 8px 0 rgb(0,0,0,0.3) !important;
  border-radius: 5px!important;
  border: none !important;
}

.wrapper-main {
  width: 100%;
  height: auto;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 5px;
}

.desc-well {
  color: #fff !important;
  text-transform: uppercase;
  text-align: center;
  font-family: courier;
  font-weight: bold;
  font-size: 14px;
}

input:hover, input:focus, select:hover {
  border: none;
  box-shadow: none !important;
  border-bottom: 2px solid purple;
  transition: all .5s;
}

.machine {
  width: 100%;
  height: auto;
}

.remv {
  width: 50% !important;
  height: auto !important;
  margin: 15px auto !important;
  display: block !important;
  border-radius: 5px;
}

.loader {
  --n:15;    /* control the number of stripes */
  --s:20px; /* control the width of stripes */
  --g:5px;  /* control the gap between stripes */
  
  width: 100%;
  height:30px;
  padding:var(--g);
  margin:5px auto;
  border:1px solid;
  border-radius: 3px;
  color: orange;
  border-color: #fff;
  background:
    repeating-linear-gradient(90deg,
      currentColor  0 var(--s),
      #0000 0 calc(var(--s) + var(--g))
    ) left / calc((var(--n) + 1)*(var(--s) + var(--g))) 100% 
    no-repeat content-box;
  animation: load 2.5s steps(calc(var(--n) + 1)) infinite;
  display: none;
  transition: all .5s;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #1A1A1A;
}

.preloader .loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font: 14px arial;
}

.preloader i {
  color: #AB954C !important;
}

.preloader p {
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
}

.res {
  font-family: Sans-Serif;
  font-weight: bold;
  color: black !important;
}

.redr {
  font-family: Sans-Serif;
  font-weight: bold;
  color: #3e9550 !important;
}

.modal-confirm {		
	color: #636363;
	width: 90%;
	font-size: 14px;
	margin: auto;
}

.modal-confirm .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
}

.modal-confirm .modal-header {
	border-bottom: none;   
	position: relative;
}

.modal-confirm h4 {
	text-align: center;
	font-size: 26px;
	margin: 30px 0 -15px;
}

.modal-confirm .form-control, .modal-confirm .btn {
	min-height: 40px;
	border-radius: 3px; 
}

.modal-confirm .close {
	position: absolute;
	top: -5px;
	right: -5px;
}	

.modal-confirm .modal-footer {
	border: none;
	text-align: center;
	border-radius: 5px;
	font-size: 13px;
}	

.modal-confirm .icon-box {
	color: #fff;		
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -70px;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	z-index: 9;
	background: #82ce34;
	padding: 15px;
	text-align: center;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.modal-confirm .icon-box i {
	font-size: 58px;
	position: relative;
	top: 3px;
}
.modal-confirm .icon-box2 {
	color: #fff;		
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -70px;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	z-index: 9;
	background: #ce3434;
	padding: 15px;
	text-align: center;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.modal-confirm .icon-box2 i {
	font-size: 58px;
	position: relative;
	top: 3px;
}

.modal-confirm.modal-dialog {
	margin-top: 80px;
}

.modal-confirm .btn {
	color: #fff;
	border-radius: 4px;
	background: #82ce34;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	border: none;
}

.modal-confirm .btn:hover, .modal-confirm .btn:focus {
	background: #6fb32b;
	outline: none;
}


@keyframes load {
  0% {
    background-size: 0% 100%;
  }
}

@media (min-width: 576px) {
  .desc-well {
    font-size: 30px;
  }
  .res, .redr {
    font-size: 20px;
  }
  .machine {
    width: 200px;
    height: auto;
    margin: 5% auto;
    display: block;
  }
}