.modal{
	background: #00000096;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	top: 0;
	left: 0;
	display: flex;
    justify-content: center;
    display: none;
    color: #505458;
}
.modalWrapper{
	width: 100%;
	height: 100%;
	display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* .modalBox{
	background: #fff;
	border: 1px solid #eee;
	border-radius: 2px;
	box-sizing: border-box;

	margin-top: 50px;
	width: 40%;
	height: auto;
	max-height: 80%;
	overflow-y: scroll;
    transition: 3s;
} */

#modalBox {
	position: relative;
	width: 40%;
	height: auto;
	max-height: 80%;
    /* transition: 1s; */
	background: #fff;
	margin: 5px;
	box-sizing: border-box;
	border-radius: 5px;
	margin-top: 20px;
	display: none;
  }
  
#modalBox::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: -5px;
	border-radius: inherit;
	background-image: linear-gradient(180deg, rgb(0, 95, 124), rgb(0, 177, 153));
  }

#modalBox_Container{
	position: relative;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 5px;
	box-sizing: border-box;
	overflow-y: auto;
	max-height: 100%;
	scrollbar-width: thin;
	/* scrollbar-color: #006D80 rgb(0, 177, 153); */
	scrollbar-color: #555 #ccc;
	display: flex;
	flex-direction: column;
}

#modalBox_Container::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

#modalBox_Container::-webkit-scrollbar {
	width: 5px;
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

#modalBox_Container::-webkit-scrollbar-thumb {
	/* background-color: #006D80; */
	background-color: #555;
}


@media screen and (max-width: 1200px) {
	#modalBox {
		width: 80%;
	  }

    .modalBox_Container{
		margin-top: 0px;
		height: auto;
		max-height: 100%;
		overflow-y: auto;
	}
}
@media screen and (max-width: 800px) {
	#modalBox {
		width: 80%;
	  }

    .modalBox_Container{
		margin-top: 0;
		height: auto;
		max-height: 100%;
		overflow-y: auto;
	}
}
@media screen and (max-width: 600px) {
	#modalBox {
		width: 100%;
	  }
    .modalBox_Container{
		margin-top: 0;
		max-height: 100%;
		overflow-y: auto;
	}
}


#modalNotifBox {
	position: relative;
	width: 40%;
	height: auto;
	/* max-height: 80%; */
	/* transition: 1s; */
	background: #fff;
	margin: 5px;
	box-sizing: border-box;
	border-radius: 5px;
	margin-top: 20px;
	display: none;
}

#modalNotifBox::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: -5px;
	border-radius: inherit;
	background-image: linear-gradient(180deg, rgb(0, 95, 124), rgb(0, 177, 153));
}

#modalNotifBox_Container {
	position: relative;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 5px;
	box-sizing: border-box;
	/* overflow-y: auto; */
	max-height: 100%;

	scrollbar-width: thin;
	scrollbar-color: #555 #ccc;
}

#modalNotifBox_Container::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

#modalNotifBox_Container::-webkit-scrollbar {
	width: 5px;
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

#modalNotifBox_Container::-webkit-scrollbar-thumb {
	/* background-color: #006D80; */
	background-color: #555;
}


@media screen and (max-width: 1200px) {
	#modalNotifBox {
		width: 80%;
		/* margin-top: 20px;
		max-width: 80%;
		height: auto;
		max-height: 80%; */
	}

	#modalNotifBox_Container {
		margin-top: 0px;
		height: auto;
		max-height: 100%;
		/* overflow-y: auto; */
	}
}

@media screen and (max-width: 800px) {
	#modalNotifBox {
		width: 80%;
		/* margin-top: 0;
		max-width: 80%;
		height: auto;
		max-height: 100%;
		overflow-y: scroll; */
	}

	#modalNotifBox_Container {
		margin-top: 0;
		height: auto;
		max-height: 100%;
		/* overflow-y: auto; */
	}
}

@media screen and (max-width: 600px) {
	#modalNotifBox {
		width: 100%;
		/* margin-top: 0;
		max-width: 100%;
		max-height: 100%;
		overflow-y: scroll; */
	}
	#modalNotifBox_Container {
		margin-top: 0;
		max-height: 100%;
		/* overflow-y: auto; */
	}
}



.modalBox::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.modalBox::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

.modalBox::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

.modalHeader{
	display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0px 1px 8px #84848452;
	justify-content: space-between;
}

.modalHeaderIcons {
	display: flex;
	gap: 20px;
}

#modalHeaderHelp {
	/* font-size: 18px; */
	color: #00A093;
}

#modalHeaderEditHelp {
	font-size: 18px;
	color: #00A093;
}

#modalHeaderMinimize {
	margin-top: 3px;
	font-size: 15px;
}

#windowMaximize {
	position: fixed;
	bottom: 0;
	left: 50%;
	margin-left: -50px;
	width: 100px;
	background: #fff;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	color: #007A86;
	border: 1px solid #007A86;
	border-bottom: 0;
	border-radius: 5px 5px 0 0;
	padding: 10px 10px;
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
	display: none;
	z-index: 2;
}

@keyframes wmPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}

.windowMaximizePulse {
	animation: wmPulse 1s ease-out;
}

.modalHeaderIcons > i, .modalHeaderIcons > svg {
	/* margin-left: auto; */
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    font-style: normal;
    /* font-family: monospace; */
}
.modalFooter{
    padding: 10px 20px;
}
.modalContent{
	position: relative;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0px 1px 8px #84848452;
    /* min-height: 300px; */
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #555 #ccc;
}

.modalContent::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

.modalContent::-webkit-scrollbar {
	width: 5px;
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

.modalContent::-webkit-scrollbar-thumb {
	/* background-color: #006D80; */
	background-color: #555;
}

.formContainer{
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
	text-align: justify;
	flex-wrap: wrap;
}
.formBox{
	display: inline-grid;
	padding: 10px;
	box-sizing: border-box;
	/*margin-top: 15px;*/
}

.formContainer .w16{
	width: 16.66%
}
.formContainer .w15{
	width: 20%
}
.formContainer .w14{
	width: 25%
}
.formContainer .w12,.w24{
	width: 50%
}
.formContainer .w34{
	width: 75%
}
.formContainer .w1{
	width: 100%
}
.formContainer .w13{
	width: 33.33%
}
.formContainer .w23{
	width: 66.66%
}
.formContainer form{
	width: 100%;
	margin-bottom: 75px;
}

@media screen and (max-width: 800px) {
	.formContainer .w16 {
		width: 50%
	}

	.formContainer .w15 {
		width: 50%
	}
	.formContainer .w14{
		width: 50%
	}
	.formContainer .w34{
		width: 100%
	}
	.formContainer .w13{
		width: 50%
	}
}
@media screen and (max-width: 600px) {
	.formContainer .w16 {
		width: 100%
	}

	.formContainer .w15 {
		width: 100%
	}
    .formContainer .w14{
		width: 100%
	}
	.formContainer .w34{
		width: 100%
	}
	.formContainer .w13{
		width: 100%
	}
	.formContainer .w12,.w24{
		width: 100%
	}
}

.formContainer .formBox label{
	display: block;
	font-weight: bold;
}
.formContainer .formBox input:not(.searchSelect__input,.multiSelect__input), select, textarea, .searchSelect, .multiSelect{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	display: block;
	width: 100%;
	box-sizing: border-box;
    padding: .375rem .75rem;
    font-size: 1rem;
	line-height: 1.5rem;
    border-radius: .15rem;
    border: 1px solid #ced4da;
    margin: 5px auto;
    /* box-shadow: 1px 1px #a7a5a59e; */
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;   
	position: relative;
}
textarea {
	font: inherit;
}
/* ------------------Мультиселект и Селект с поиском ------------------*/
.multiSelect,
.searchSelect {
	cursor: pointer;
}

.searchSelect__placeholder,
.multiSelect__placeholder {
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.searchSelect::after,
.multiSelect::after {
	content: "\f078";
	position: absolute;
	display: block;
	text-align: center;
	font: 900 .7rem 'Font Awesome 5 Free';
	color: #000;
	background: #fff;
	top: .65rem;
	right: 0;
	width: 20px;
	height: 1rem;
}

.searchSelect__input,
.multiSelect__input {
	display: none;
	width: calc(100% + 2px);
	position: absolute;
	top: 36px;
	left: -1px;
	box-sizing: border-box;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border: 1px solid #ced4da;
	/* box-shadow: 1px 1px #a7a5a59e; */
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	z-index: 4;
}

.multiSelect_select_all {
	margin: 0 15px 0 10px;
	cursor: pointer;
	color: #1465bc;
}

.multiSelect_unselect_all {
	cursor: pointer;
	color: #ff0000;
}

.searchSelect.disabled *, .multiSelect.disabled * {
	opacity: .75;
}

.searchSelect__clearBtn.hide {
	display: none;
}

.searchSelect__clearBtn {
	/* float: right; */
	/* margin-right: 5px; */
	color: #ff0000;
	/* padding: 0 5px; */
	background: #fff;
	display: block;
	position: absolute;
	top: 0px;
	right: 5px;
	z-index: 6px;
	width: 18px;
	height: 30px;
}

.multiSelect__list,
.searchSelect__list {
	max-height: 130px;
	overflow-y: scroll;
	border-top: 1px solid #ced4da;
	display: none;
	margin-left: -1px;
	width: calc(100% + 2px);
	position: absolute;
	top: 72px;
	/* box-shadow: 1px 1px #a7a5a59e; */
	border: 0.0625rem solid #ced4da;
	border-radius: 0 0 .15rem .15rem;
	border-radius: 0;
	left: 0;
	background: #fff;
	z-index: 5;
}


.multiSelect__list.open,
.searchSelect__list.open,
.searchSelect__input.open,
.multiSelect__input.open {
	display: block;
}

.multiSelect__item,
.searchSelect__item {
	padding: 5px 10px;
	text-align: left;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.multiSelect__item:hover,
.searchSelect__item:hover {
	background: #ddd;
}

.multiSelect__item.active,
.searchSelect__item.active {
	background: #9DE1D8;
}

.multiSelect__item.active {
	border: 1px dotted #aaa;
}

.multiSelectContainer label, .searchSelectContainer label {
	text-align: left;
}
/* -------------------------------------------------------------------------*/

.formContainer .formBox select{
	background: #fff;
}
.formContainer .formBox textarea{
	resize: vertical;
	min-height: 100px;
}

.formContainer .cbBox{
	display: flex;
	text-align: left;
	align-items: center;
	margin-top: 5px;
}
.formContainer .cbBox label{
	display: inline-block;
	font-size: 0.8rem;
}
.formContainer .cbBox input[type=checkbox],.cbBox input[type=radio]{
	display: inline-block;
	width: auto;
	margin: 0;
    margin-right: 10px;
}


.formContainer .formBox input:not(.searchSelect__input, .multiSelect__input):focus, .formContainer .formBox select:focus, .formContainer .formBox textarea:focus{
    border: 1px solid #111;
    /* box-shadow: 1px 1px #a7a5a59e; */
}
.formContainer .formBox input:disabled,
.formContainer .formBox input[readonly] {
  background: #eee;
  opacity: 1;
}
.formContainer .formBox select{
	 padding: .38rem .75rem;
}
.formContainer hr{
	margin: 25px 0 15px;
    width: 100%;
    display: inline-flex;
}

.mt-20{
	margin-top: 20px;
}

.btn{
	display: inline-block;
	border: 1px solid #bdbdbd;
    /* box-shadow: 1px 1px #a7a5a59e; */
    padding: 5px 10px;
    background: #fff;
    width: auto;
	min-width: 170px;
    cursor: pointer;
    transition: background .15s ease-in-out,border .15s ease-in-out; 
}
.btn.btn-white:hover{
	background: #eee;
}
.btn.btn-success{
	background: #198754;
	border: 1px solid #198754;
	background-image: linear-gradient(180deg, rgb(0, 119, 16), rgb(0, 184, 76));
	color: #fff;
	border-radius: 5px;
	font-size: 1rem;
}
.btn.btn-success:hover{
	background: #146c43;
	border: 1px solid #13653f;
}
.btn.btn-danger{
	margin-right: 10px;
	background: #dc3545;
	border: 1px solid #dc3545;
	background-image: linear-gradient(180deg, rgb(160, 0, 8), rgb(255, 0, 0));
	color: #fff;
	border-radius: 5px;
	font-size: 1rem;
}
.btn.btn-danger:hover{
	background: #bb2d3b;
	border: 1px solid #b02a37;
}
.btn.btn-orange {
    margin-right: 10px;
    background: #e9b20d;
    border: 1px solid rgb(194, 121, 4);
    background-image: linear-gradient(180deg, rgb(194, 121, 4), #e9b20d);
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
}
.btn.btn-orange:hover {
    background: #e0a800;
    border: 1px solid #d39e00;
}
.btn.btn-info{
	background: #194f87;
    border: 1px solid #195987;
    background-image: linear-gradient(180deg, rgb(0 81 119), rgb(0 116 184));
	color: #fff;
	border-radius: 5px;
	font-size: 1rem;
}
.btn.btn-info:hover{
	background: #194f87;
    border: 1px solid #103956;
}
.btn.btn-warning{
	margin-right: 10px;
    background: #dca935;
    border: 1px solid #9c7d09;
    background-image: linear-gradient(180deg, rgb(197 167 4), rgb(255 200 0));
    color: #ffffff;
    border-radius: 5px;
    font-size: 1rem;
}
.btn.btn-warning:hover{
	background: #9c7d09;
    border: 1px solid #826703;
}


@media screen and (max-width: 800px) {
	.formContainer.formBtns .btn{
		width: 100%;
	    display: block;
	    margin: 0;
	    margin-bottom: 5px;
	}
}

.formboxhide{
	display: none;
}
.formBox.hidn{
	display: none;
}
.formboxhide.vis{
	display: inline-grid;
}
.formboxhideReverse.hid{
	display: none;
}
.formContainer.formBtns{
	justify-content: flex-end;
}
.formContainer.formBtns .btn{
	margin-left: 15px;
}

i.closeModal svg{
	display: block;
    width: 20px;
}
i.closeModal svg line{
	stroke: #484848;
    stroke-width: 35px;
}

/* #modalNotifBox{
	background: #fff;
    font-weight: bold;
    color: #505458;
    box-sizing: border-box;
    padding: 10px 15px;
    border-width: 3px;
  	border-style: solid;
	border-radius: 5px;
	border-image: linear-gradient(rgb(0, 95, 124), rgb(0, 177, 153)) 1;
	border-radius: inherit;
    display: none;
    max-width: 50%;
    margin: 50px auto;
    position: relative;
} */

#modalNotifBox i.closeModal,#modalNotifBox svg.closeModal{
	color: #505458;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
#notifIconDanger, #notifIconWarning{
	display: none;
}
#modalNotifBoxContent{
	margin: 25px auto;
	margin-right: 25px;
	margin-left: 25px;
    /* display: flex; */
	text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
}
#notifIcon{
	/* margin-right: 20px; */
	margin-bottom: 20px;
}
.notifIconItem{
	font-size: 3rem;
	display: block;
 	margin: auto;
}
.notifContentText{
	font-size: 1.1rem;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #555 #ccc;
}

.notifContentText::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

.notifContentText::-webkit-scrollbar {
	width: 5px;
	/* background-color: rgb(0, 177, 153); */
	background-color: #ccc;
}

.notifContentText::-webkit-scrollbar-thumb {
	/* background-color: #006D80; */
	background-color: #555;
}

#notifIcon_success{
	color: #31bf1f;
}
#notifIcon_warning{
	color: #f9b51b;
}
#notifIcon_danger{
	color: #ce0c0c;
}
#notifIcon_info{
	color: #01a7af;
}
#modalNotifBoxFooter{
	text-align: center;
}

#nonModalNotifBox{
	position: fixed;
    top: 0;
    right: 5px;
	z-index: 1000;
}
#nonModalNotif{
    background: #0000009e;
    padding: 10px 20px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 3s;
    border-radius: 2px;
    max-width: 400px;
    margin-top: 5px;
}
#nonModalNotifIcon{
	font-size: 3rem;
	margin-right: 10px;
}
.formBox.h3titlbox{
	margin: 10px auto;
    padding: 15px;
    box-shadow: 0px 1px 6px #84848452;
	background: #ddd;
}
.formBox.h3titlbox h3{
	margin: 0;
	font-size: 1.25rem;
}

/*Content modal Start*/
.modalNotifBoxTypeContent{
	max-width: 60%;
	max-height: 90%;
    overflow-y: scroll;
    overflow-x: hidden;
}
@media screen and (max-width: 800px) {
    .modalNotifBoxTypeContent{
		margin-top: 0;
		max-width: 100%;
		max-height: 100%;
	}
}
.modalNotifBoxTypeContent .notifContentText {
    font-size: 0.8rem;
}
i#modalNotifCloseCrs {
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
    font-style: normal;
    font-family: monospace;
}

/*Content modal End*/


#eye {
	display: inline-block;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    background: #9c9d9e;
    border-radius: 70% 0 / 70%;
    transform: rotate(45deg);
    cursor: pointer;
    margin-left: 5px;
}
#eye::before,
#eye::after {
	content: "";
    position: absolute;
    top: 19%;
    left: 19%;
    width: 65%;
    height: 65%;
    background: #fff;
    border-radius: 100%;
}
#eye::after {
    width: 32%;
    height: 32%;
    top: 35%;
    left: 35%;
    background: inherit;
}
#eye.active{
	background: #505458;
}
#pwdGen{
	font-style: inherit;
	cursor: pointer;
	margin-left: 5px;
}
.fb_chbLabel{
	cursor: pointer;
}
.specFiledValidTooltip{
	color: #000;
    border: 1px solid #ef0f0f;
    text-align: center;
    padding: 0;
    width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    font-size: 0.85rem;
}