

/* Start:/bitrix/templates/main/template_styles.css?17839727628588*/
body,
html{
	margin:0;
	padding:0;
	
}

#wrap{
	margin:2%;
}


#taba td, #taba th{
	text-align:left;
	border:1px solid #fff;
	padding:3px;
	background:#ccc;
}
 #taba th{
	 background:#999;
 }
  #taba tr:hover td{
	   background:#a7a7a7;
  }
#taba
{	width:100%;
	border-collapse: collapse;
}
#taba .lnk_d{
	color:#213684;
}
#taba .lnk_d:hover{
	text-decoration:none;
}



/*
  https://developer.mozilla.org/en/docs/Web/CSS/box-shadow
  box-shadow: [inset?] [top] [left] [blur] [size] [color];

  Tips:
    - We're setting all the blurs to 0 since we want a solid fill.
    - Add the inset keyword so the box-shadow is on the inside of the element
    - Animating the inset shadow on hover looks like the element is filling in from whatever side you specify ([top] and [left] accept negative values to become [bottom] and [right])
    - Multiple shadows can be stacked
    - If you're animating multiple shadows, be sure to keep the same number of shadows on hover/focus as non-hover/focus (even if you have to create a transparent shadow) so the animation is smooth. Otherwise, you'll get something choppy.
*/
.fill:hover,
.fill:focus {
  box-shadow: inset 0 0 0 2em var(--hover);
}

.pulse:hover,
.pulse:focus {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
  box-shadow: 0 0 0 2em transparent;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
.close:hover,
.close:focus {
  box-shadow: inset -3.5em 0 0 0 var(--hover), inset 3.5em 0 0 0 var(--hover);
}

.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}

.up:hover,
.up:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--hover);
}

.slide:hover,
.slide:focus {
  box-shadow: inset 6.5em 0 0 0 var(--hover);
}

.offset {
  box-shadow: 0.3em 0.3em 0 0 var(--color), inset 0.3em 0.3em 0 0 var(--color);
}
.offset:hover, .offset:focus {
  box-shadow: 0 0 0 0 var(--hover), inset 6em 3.5em 0 0 var(--hover);
}

.fill {
  --color: #a972cb;
  --hover: #cb72aa;
}

.pulse {
  --color: #ef6eae;
  --hover: #ef8f6e;
}

.close {
  --color: #ff7f82;
  --hover: #ffdc7f;
}

.raise {
  --color: #ffa260;
  --hover: #e5ff60;
}

.up {
  --color: #e4cb58;
  --hover: #94e458;
}

.slide {
  --color: #8fc866;
  --hover: #66c887;
}

.offset {
  --color: #19bc8b;
  --hover: #1973bc;
}

button {
  color: var(--color);
  transition: 0.25s;
}
button:hover, button:focus {
  border-color: var(--hover);
  color: #fff;
}




button {
  background: none;
  border: 2px solid;
  border-radius:2px;
  font: inherit;
  line-height: 1;
  margin: 0 0 0.5em 0;
  padding: 0.5em 2em;
  cursor:pointer;
}



code {
  color: #e4cb58;
  font: inherit;
}


.maska{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 28px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1005;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100000;
}
.modal-open{
    width: 460px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    z-index: 100001;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.close_feed {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 15px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


.close_feed svg {
    fill: transparent;
    opacity: .8;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: stroke .1s;
}
.close_feed svg {
    stroke-width: 1px;
    transition: stroke .1s, transform 0.4s;
}

.close_feed:hover svg {
    transform: rotate(-90deg);
}

  @media (max-width: 500px) {
	  .cookie-modal-open-in{
		  width:auto;
		  margin-left:20px;
		  margin-right:20px;
	  }
  }
  
#add-sotr-ui{
	width: 400px;
    padding: 2px 5px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #999;
    border-radius: 3px;
    margin-bottom: 10px;
 }
.add-sotr-autocomplete{
	position:relative;
	display:none;
 }
 .delete_user{
	 width:20px;
	 cursor:pointer;
 }
 .delete_user svg{
	width:30px;
	height:30px;

    fill: red;
    opacity: .8;
    stroke: red;
    stroke-width: 1.5;
    transition: stroke .1s;

 }
 
 
 .add_job{
	 color:#a12727;
	 text-align:center;
	 cursor:pointer;
	 position:relative;
 }
 
.edit_job{
	color:#329f32;
	text-align:center;
	cursor:pointer;
	position:relative;
} 

.select_job{

width: -webkit-fill-available;
    height: 30px;


}

.cookie-mask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 28px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1005;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100000;
}

.cookie-modal-open-in {
    width: 460px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    z-index: 100001;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.cookie-in-one {
    font-size: 18px;
    font-family: 'Manrope Bold';
    margin-bottom: 25px;
}

.add_smena{
	display:flex;
	align-items: center;
    justify-content: center;
	fill: transparent;
	
    stroke: currentColor;
    stroke-width: 0.5px;
    transition: stroke .1s, transform 0.4s;
	width:30px;
	cursor:pointer;
	height:30px;
}
.add_smena svg{
	width:21px;
	transform: rotate(-45deg);
}
.add_smena:hover{
	background:#ccc;
}

.hours-b{
	display:grid;
	grid-template-columns: 15% 15% 15% 15% 15% 15%;
	gap:2%;
	margin-bottom:20px;
}
.hours-item{
	text-align:center;
	padding:10px;
	background:#ccc;
	border-radius:3px;
	cursor:pointer;
}

.hours-item:hover{
	opacity:0.7;
}

.hours-line{
	height:1px;
	margin-bottom:20px;
	background:#ccc;
}

.hours-res{
	margin-bottom:20px;
	display: flex;
    gap: 10px;

}

.hours-res input[type="text"],
.hours-res input[type="number"]{
	height:40px;
	width:60px;
	line-height:40px;
	text-align: center;
    font-size: 15px;
	outline:none;
    border: 1px solid #ccc;
    border-radius: 5px;
	-moz-appearance: textfield;
}


.hours-res input[type="number"]::-webkit-outer-spin-button{
  -webkit-appearance: none;
  margin: 0;
  appearance: textfield;
 
  -moz-appearance: textfield;
}
.hours-chas{
	margin-bottom:20px;
}
.hours-chas label{
	cursor:pointer;
}

.hourse-val{
	color:#fff;
	background:#666;
	border:1px solid #666 !important;
}

.smena_save,
.user_save{
	height:40px;
	line-height:40px;
	background:#0cc30c;
	color:#fff;
	cursor:pointer;
	border-radius:10px;
	color:289728;
	font-size:18px;
	text-align:center;
}
.smena_del{
		margin-top:10px;
	height:40px;
	line-height:40px;
	background:#f35c5c;
	color:#fff;
	cursor:pointer;
	border-radius:10px;
	color:289728;
	font-size:18px;
	text-align:center;
}
.smena_save:hover, .smena_del:hover, .user_save:hover{
	opacity:0.7;
}

.edit_smena > div{
	font-size:11px;
	font-weight:bold;
}
.edit_smena{
	cursor:pointer;
	
}

.h_all{
	font-size:12px;
	font-weight:bold;
	text-align:center;
}

.smena_all_day_night{
	font-size:12px;
	font-weight:bold;
}
.user-add-base{
	margin-top:10px;
	margin-bottom:10px;
}

.user-add-base{
	text-decoration:underline;
	cursor:pointer;
}

.name1,
.name2,
.name3{
	height: 40px;
    width: -webkit-fill-available;
    line-height: 40px;
	padding:0 10px;
    font-size: 15px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 5px;
	margin-bottom:10px;
}

.block-link{
	display:flex;
	flex-direction: column;
    gap: 10px;
	width: fit-content;
	    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f3f3f3;
    box-shadow: 4px 3px 3px #ccc;
	margin-bottom:20px;
}
.block-link a{
	text-decoration:none;
	color:#010101;
}
.block-link a:hover{
	opacity:0.6;
}

.inp_stavki{
    width: 80px;
    height: 30px;
	text-align:center;
}
.inp_stavki_fio{
    width: 200px;
    height: 30px;
	
}
.stavka-t{
	font-size:12px;
}
/* End */
/* /bitrix/templates/main/template_styles.css?17839727628588 */
