/* main menu */
.overlay {
   /* Скрываем подложку  */
   opacity: 0;
   visibility: hidden;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, .0);
   z-index: 20;
   transition: .3s all;
}

.overlay.active{
   opacity: 1;
   visibility: visible;
    z-index: 20;
}	

/* btn black */
.btn-exe  {
	display: inline-block;	
	box-sizing: border-box;
	padding: 0 25px;
	margin: 0 15px 15px 0;
	outline: none;
	border: 1px solid #fff;
	border-radius: 50px;
	height: 46px;
	line-height: 46px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #444;
	background-color: #fff;
	box-shadow: 0 4px 6px rgb(65 132 144 / 10%), 0 1px 3px rgb(0 0 0 / 8%);
	cursor: pointer;
	user-select: none;
	appearance: none;
	touch-action: manipulation;  
	vertical-align: top;
	transition: box-shadow 0.2s;
}
.btn-exe :focus-visible {
	border: 1px solid #4c51f9;
	outline: none;
}
.btn-exe :hover {
	transition: all 0.2s;
	box-shadow: 0 7px 14px rgb(65 132 144 / 10%), 0 3px 6px rgb(0 0 0 / 8%);
}
.btn-exe :active {
	background-color: #808080;
}
.btn-exe :disabled {
	background-color: #eee;
	border-color: #eee;
	color: #444;
	cursor: not-allowed;
}

/* Btn-Up */

.btn-up {
  position: fixed;
  background-color: #dd0000;
  left: 20px;
  bottom: 85px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
  color: #ffffff;
  width: 50px;
  height: 50px;
  opacity: 1;
  transform: translateY(0);
}

.btn-up::before {
  content: "";
  text-align: center;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 15px;
  top: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17V4M3 10l7-7 7 7'/%3E%3C/g%3E%3C/svg%3E");
}

.btn-up_hide {
  display: none;
}

.btn-up_hiding {
  opacity: 0;
  transform: translateY(100px);
}

.btn-up-icon {
  width: 40px;
  height: 40px;
  fill: currentcolor;
}

@media (hover: hover) and (pointer: fine) {
  .btn-up:hover {
    background-color: #ff0000;
  }
}

/* Slider */
.slider {
width:330px;
height:0px;
background:#1b0905;
position:relative;
margin-left: auto;
margin-top: 6px;;
padding:5px 10px;
align-self: right;
}

.ui-slider-handle {
width:16px;
height:16px;
position:absolute;
top:-6px;
margin-left:-12px;
z-index:200;
background:#fc0;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
}
 
.ui-widget-header {
background:#646464;
height:0px;
left:0px;
top: 0px;
position:absolute;
margin-top:0px;
}

#slider-result {
text-align:center;
position:absolute;
top:20px;
left:-2px;
background:#006400;
color:#fff;
font:12px sans-serif;
padding:3px 3px;
width:20px;
}

.colortext {
    background-color: #006400; 
    color: #fff; 
	font:12px sans-serif;
	border: 0;
	padding:3px 3px;
	text-align:center;
	width:20px;
	height:21px;
}
 
/* File atach */
.file-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.file__field {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

#file {
  margin-left: 14px;
  margin-top: -10px;
  display: none;
}

.file__btn {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  background-color: #006400;
  outline: none;
  border: none;
  padding: 5px 15px;
  border-radius: 17px;
  margin-left: 0px;
  margin-top: -10px;
  transition: 0.2s;
  cursor: pointer;
}

.file__btn:hover {
  background-color: #fff;
  color: #000;
  
}

.file__info {
  display: flex;
  align-items: left;
  padding: 0 10px;
  margin-left: 10px;
}

.file__name {
  border: 1px solid #404040;
  margin-bottom: 18px;
  color: #aaa;
  font-size: 12px;
  padding: 0px 10px;
  word-spacing: 1px;
  margin-left: 4px;
  user-select: none;
}

.file__btn-close {
  background: none;
  outline: none;
  border: none;
  font-size: 12px;
  color: blue;
  margin-left: 5px;
  /* margin-top:-1px; */
 margin-bottom: 19px; 
  cursor: pointer;
  padding: 3px;
  font-weight: normal;
}

.file__hint {
  color: #808080;
  font-size: 14px;
  font-weight: normal;
  margin-left: 70px;
  margin-top: -10px;
}

/*
@media (max-width: 800px) {
  .content {
    height: 100%;
    flex-direction: column-reverse;
  }
  .left-side {
    margin-top: 50px;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .details {
    margin-right: 20px;
  }
  .details:last-child {
    margin-right: 0;
  }
  .left-side::before {
    display: none;
  }
  .right-side {
    width: 100%;
    margin-left: 0;
  }
} */

