.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-danger);
    --bs-nav-link-hover-color: var(--bs-danger-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}
.nav-pills {
    --bs-nav-pills-border-radius: var(--bs-border-radius);
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #dc3545;
}
.btn-info{
	color: #fff;
}
.btn-info:hover{
	color: #fff;
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle{
	color: #fff;
}
.cursor-pointer{
	cursor: pointer;
}
.background-success{
	background-color: #8ec971!important;
	color: #fff!important;
}
.bg-curcuit{
    background-image: url(/bitrix/templates/main/img/bg-fone-curcuit.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: auto 100%;
}
.text-shadow{
	text-shadow: #000 1px 1px 5px;
}
.bg-anim .list-group-item{
	background-color: rgba(255,255,255,0.5);
}
.bg-anim {
    position: relative;
    overflow: hidden;
    animation: theme 21s linear infinite;
    
    &:after,
    &:before {
        content: '';
        display: block;
        position: absolute;
        z-index: 0;
        top: -50%;
        left: -50%;
        width: 100%;
        height: 200%;
        background: rgba(0,0,0,0.05);
        animation: background 60s linear infinite;
		border-radius: 100%;
    }

    &:after {
        left: -5%;
    }

    &:before {
        right: 15%;
        animation-delay: -30s;
        animation-direction: reverse;
    }
    
    /* Все остальное содержимое должно быть выше фона */
    & > * {
        position: relative;
        z-index: 1;
    }
}

@keyframes theme {
	0% {
		background-color: rgba(142, 201, 113, 0.5);  /* #8ec971 */
	}

	16% {
		background-color: rgba(255, 193, 7, 0.5);   /* #ffc107 */
	}

	33% {
		background-color: rgba(13, 202, 240, 0.5);  /* #0dcaf0 */
	}

	50% {
		background-color: rgba(229, 57, 53, 0.5);   /* #E53935 */
	}

	66% {
		background-color: rgba(13, 110, 253, 0.5); /* #0d6efd */
	}    

	83% {
		background-color: rgba(108, 117, 125, 0.5); /* #6c757d */
	}

	100% {
		background-color: rgba(142, 201, 113, 0.5); /* #8ec971 */
	}
}

@keyframes background {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}
@font-face {
	font-family: 'Nunito';
	src: url('../font/Nunito-Regular.ttf');
	src: url('../font/Nunito-Regular.ttf') format('ttf'),
		url('../font/Nunito-Regular.ttf') format('truetype');
}

html {
	position: relative;
	min-height: 100%;
	font-family: 'Nunito';
}

body {
	height: 100%;
}

a:focus {
	outline: none;
}

a {
		text-decoration: none;
		background-color: transparent;
		color: rgb(62, 63, 64);
}
a:hover {
		color: rgb(5, 78, 120);
		text-decoration: underline;
}
hr{
	overflow:hidden;
}

#wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#wrapper #content-wrapper {
	background-color: #FAFDFB;
	width: 100%;
	overflow-x: hidden;	
}

#wrapper #content-wrapper #content {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	background: url(/bitrix/templates/main/img/pattern_transp_125.png);
	/*background: url(/bitrix/templates/main/img/pattern_transp_125.png) rgb(139,193,109,.05);*/
	background-size: 100px;
}
.btn{
	cursor: pointer;
}
.display-none{
	display: none;
}

.border-success{
	border-color: #8ec971 !important;
}

.container,
.container-fluid,
.container-login {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}



@media (min-width:768px) {
	.container-login {
		margin-left: 25rem;
		margin-right: 25rem;
	}
}


.scroll-to-top {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	display: none;
	width: 2.75rem;
	height: 2.75rem;
	text-align: center;
	color: #fff;
	background: rgba(90, 92, 105, 0.5);
	line-height: 46px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
	color: white;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
	background: #5a5c69;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top i {
	font-weight: 800;
}

@-webkit-keyframes growIn {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0;
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes growIn {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0;
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

.animated--grow-in,
.sidebar .nav-item .collapse {
	-webkit-animation-name: growIn;
	animation-name: growIn;
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
	-webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
	animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.animated--fade-in {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
	-webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
	animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}


.bg-gradient-primary {
	background-color: #6777EF;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #6777EF), to(#303f9f));
	background-image: linear-gradient(180deg, #6777EF 10%, #303f9f 100%);
	background-size: cover;
}

.bg-gradient-secondary {
	background-color: #757575;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #757575), to(#60616f));
	background-image: linear-gradient(180deg, #757575 10%, #60616f 100%);
	background-size: cover;
}

.bg-gradient-success {
	background-color: #66bb6a;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #66bb6a), to(#13855c));
	background-image: linear-gradient(180deg, #66bb6a 10%, #13855c 100%);
	background-size: cover;
}

.bg-gradient-info {
	background-color: #3abaf4;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3abaf4), to(#258391));
	background-image: linear-gradient(180deg, #3abaf4 10%, #258391 100%);
	background-size: cover;
}

.bg-gradient-warning {
	background-color: #ffa426;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #ffa426), to(#dda20a));
	background-image: linear-gradient(180deg, #f6c23e 10%, #ffa426 100%);
	background-size: cover;
}

.bg-gradient-danger {
	background-color: #fc544b;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #fc544b), to(#be2617));
	background-image: linear-gradient(180deg, #fc544b 10%, #be2617 100%);
	background-size: cover;
}

.bg-gradient-light {
	background-color: #e3eaef;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #e3eaef), to(#c2cbe5));
	background-image: linear-gradient(180deg, #e3eaef 10%, #c2cbe5 100%);
	background-size: cover;
}

.bg-gradient-dark {
	background-color: #212121;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #212121), to(#373840));
	background-image: linear-gradient(180deg, #212121 10%, #373840 100%);
	background-size: cover;
}

.bg-gradient-default {
	background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important;
}

.bg-gradient-login {
	background-color: #f8f9fc;
	background-size: cover;
}

.bg-gray-100 {
	background-color: #f8f9fc !important;
}

.bg-gray-200 {
	background-color: #eaecf4 !important;
}

.bg-gray-300 {
	background-color: #dddfeb !important;
}

.bg-gray-400 {
	background-color: #d1d3e2 !important;
}

.bg-gray-500 {
	background-color: #b7b9cc !important;
}

.bg-gray-600 {
	background-color: #858796 !important;
}

.bg-gray-700 {
	background-color: #6e707e !important;
}

.bg-gray-800 {
	background-color: #5a5c69 !important;
}

.bg-gray-900 {
	background-color: #3a3b45 !important;
}

.o-hidden {
	overflow: hidden !important;
}

.text-xs {
	font-size: .7rem;
}

.text-lg {
	font-size: 1.2rem;
}

.text-xl {
	font-size: 1.5rem;
}
.text-xxl {
	font-size: 2rem;
}
.text-xxxl {
	font-size: 2.5rem;
}
.text-xxxxl {
	font-size: 3rem;
}
.text-xxxxxl {
	font-size: 3.5rem;
}
.text-xxxxxxl {
	font-size: 4rem;
}

.text-gray-100 {
	color: #f8f9fc !important;
}

.text-gray-200 {
	color: #eaecf4 !important;
}

.text-gray-300 {
	color: #dddfeb !important;
}

.text-gray-400 {
	color: #d1d3e2 !important;
}

.text-gray-500 {
	color: #b7b9cc !important;
}

.text-gray-600 {
	color: #858796 !important;
}

.text-gray-700 {
	color: #6e707e !important;
}

.text-gray-800 {
	color: #5a5c69 !important;
}

.text-gray-900 {
	color: #3a3b45 !important;
}



.icon-circle {
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.border-left-primary {
	border-left: 0.25rem solid #3f51b5 !important;
}

.border-bottom-primary {
	border-bottom: 0.25rem solid #3f51b5 !important;
}

.border-left-secondary {
	border-left: 0.25rem solid #757575 !important;
}

.border-bottom-secondary {
	border-bottom: 0.25rem solid #757575 !important;
}

.border-left-success {
	border-left: 0.25rem solid #66bb6a !important;
}

.border-bottom-success {
	border-bottom: 0.25rem solid #66bb6a !important;
}

.border-left-info {
	border-left: 0.25rem solid #4dd0e1 !important;
}

.border-bottom-info {
	border-bottom: 0.25rem solid #4dd0e1 !important;
}

.border-left-warning {
	border-left: 0.25rem solid #ffeb3b !important;
}

.border-bottom-warning {
	border-bottom: 0.25rem solid #ffeb3b !important;
}

.border-left-danger {
	border-left: 0.25rem solid #ef5350 !important;
}

.border-bottom-danger {
	border-bottom: 0.25rem solid #ef5350 !important;
}

.border-left-light {
	border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
	border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
	border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
	border-bottom: 0.25rem solid #5a5c69 !important;
}

.progress-sm {
	height: .5rem;
}

.rotate-15 {
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
}

.rotate-n-15 {
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg);
}

.dropdown .dropdown-menu {
	font-size: 0.85rem;
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.dropdown .dropdown-menu .dropdown-header {
	font-weight: 800;
	font-size: 0.65rem;
	color: #b7b9cc;
}

.dropdown.no-arrow .dropdown-toggle::after {
	display: none;
}

.sidebar .nav-item.dropdown .dropdown-toggle::after,
.topbar .nav-item.dropdown .dropdown-toggle::after {
	width: 1rem;
	text-align: center;
	float: right;
	vertical-align: 0;
	border: 0;
	font-weight: 900;
	content: '\f105';
	font-family: 'FontAwesome';
}

.sidebar .nav-item.dropdown.show .dropdown-toggle::after,
.topbar .nav-item.dropdown.show .dropdown-toggle::after {
	content: '\f107';
}

.sidebar .nav-item .nav-link,
.topbar .nav-item .nav-link {
	position: relative;
}

.sidebar .nav-item .nav-link .badge-counter,
.topbar .nav-item .nav-link .badge-counter {
	position: absolute;
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transform-origin: top right;
	transform-origin: top right;
	right: .25rem;
	margin-top: -.25rem;
}

.sidebar .nav-item .nav-link .img-profile,
.topbar .nav-item .nav-link .img-profile {
	height: 2rem;
	width: 2rem;
	border: 1px solid #fafafa;
}

.topbar {
	height: 4.375rem;
	z-index: 2;
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.topbar #sidebarToggleTop {
	height: 2.5rem;
	width: 2.5rem;
	-webkit-box-shadow: 0 0 0 0 !important;
	box-shadow: 0 0 0 0 !important;
}

.topbar #sidebarToggleTop:hover {
	background-color: #fafafa;
}

.topbar #sidebarToggleTop:active {
	background-color: #dddfeb;
}

.topbar .navbar-search {
	width: 25rem;
}

.topbar .navbar-search input {
	font-size: 0.85rem;
}

.topbar .topbar-divider {
	width: 0;
	border-right: 1px solid #e3e6f0;
	height: calc(4.375rem - 2rem);
	margin: auto 1rem;
}

.topbar .nav-item .nav-link {
	height: 4.375rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 0.75rem;
}

.topbar .nav-item .nav-link:focus {
	outline: none;
}

.topbar .nav-item:focus {
	outline: none;
}

.topbar .dropdown {
	position: static;
}

.topbar .dropdown .dropdown-menu {
	width: calc(100% - 1.5rem);
	right: 0.75rem;
}

.topbar .dropdown-list {
	padding: 0;
	border: none;
	overflow: hidden;
}

.topbar .dropdown-list .dropdown-header {
	background-color: #3f51b5;
	border: 1px solid #3f51b5;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: #fff;
}

.topbar .dropdown-list .dropdown-item {
	white-space: normal;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border-left: 1px solid #e3e6f0;
	border-right: 1px solid #e3e6f0;
	border-bottom: 1px solid #e3e6f0;
	line-height: 1.3rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image {
	position: relative;
	height: 2.5rem;
	width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image img {
	height: 2.5rem;
	width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator {
	background-color: #eaecf4;
	height: 0.75rem;
	width: 0.75rem;
	border-radius: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	border: 0.125rem solid #fff;
}

.topbar .dropdown-list .dropdown-item .text-truncate {
	max-width: 10rem;
}

.topbar .dropdown-list .dropdown-item:active {
	background-color: #eaecf4;
	color: #3a3b45;
}

@media (min-width: 576px) {
	.topbar .dropdown {
		position: relative;
	}

	.topbar .dropdown .dropdown-menu {
		width: auto;
		right: 0;
	}

	.topbar .dropdown-list {
		width: 20rem !important;
	}

	.topbar .dropdown-list .dropdown-item .text-truncate {
		max-width: 13.375rem;
	}

}

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
	color: #fafafa;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
	color: #e0e0e0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:active {
	color: #858796;
}

.bg-navbar {
	background-color: #8ec971;
}

.sidebar {
	min-height: 100vh;
	width: 14rem !important;	
	background-color: #ffffff !important;
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
	z-index: 0;
}

.sidebar .nav-item {
	position: relative;
	margin-bottom: -15px;			
}

.sidebar .nav-item:last-child {
	margin-bottom: 1rem;
}

.sidebar .nav-item .nav-link {
	display: block;
	width: 100%;
	text-align: left;
	padding: 1rem;
	width: 14rem;
}

.sidebar .nav-item .nav-link i {
	font-size: 0.85rem;
	margin-right: 0.25rem;
}

.sidebar .nav-item .nav-link span {
	font-size: 0.85rem;
	display: inline;
}

.sidebar .nav-item.active .nav-link {
	font-weight: 800;
}

.sidebar .nav-item .nav-link[data-toggle="collapse"]::after {
	width: 1rem;
	text-align: center;
	float: right;
	vertical-align: 0;
	border: 0;
	font-weight: 900;
	content: '\f107';
	font-family: 'fontawesome';	
}

.sidebar .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
	content: '\f105';
}

.sidebar .nav-item .collapse {
	position: relative;
	left: 0;	
	z-index: 1;
	top: 0;
	-webkit-animation: none;
	animation: none;

}

.sidebar .nav-item .collapse .collapse-inner {
	border-radius: 0.35rem;
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;		
}

.sidebar .nav-item .collapsing {
	display: block;
	-webkit-transition: height 0.3s ease;
	transition: height 0.3s ease;

}
/*
.sidebar .nav-item .collapse,
.sidebar .nav-item .collapsing {
	margin: 0 1rem;
}
*/

.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
	padding: .5rem 0;
	min-width: 10rem;
	font-size: 0.85rem;
	margin: 0 0 1rem 0;		
}

.sidebar .nav-item .collapse .collapse-inner .collapse-header,
.sidebar .nav-item .collapsing .collapse-inner .collapse-header {
	margin: 0;
	white-space: nowrap;
	padding: .5rem 1.5rem;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 0.65rem;
	color: #b7b9cc;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item {
	padding: 0.5rem;
	margin: 0 0.5rem;
	display: block;
	color: #3a3b45;
	text-decoration: none;
	border-radius: 0.35rem;
	white-space: nowrap;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
	background-color: #eaecf4;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active {
	background-color: #dddfeb;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
	color: #3a3b45;
	font-weight: 800;
}

.sidebar #sidebarToggle {
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	cursor: pointer;
}

.sidebar #sidebarToggle::after {
	font-weight: 900;
	content: '\f104';
	font-family: 'FontAwesome';
	margin-right: 0.1rem;
}

.sidebar #sidebarToggle:hover {
	text-decoration: none;
}

.sidebar #sidebarToggle:focus {
	outline: none;
}

.sidebar .sidebar-brand {
	height: 4.375rem;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 800;
	padding: 1.5rem 1rem;
	text-align: center;
	letter-spacing: 0.05rem;
	z-index: 1;
}

.sidebar .sidebar-brand .sidebar-brand-icon img {
	max-height: 2.3rem;
}

.sidebar hr.sidebar-divider {
	margin: 1rem 0 1rem 0;
}

.sidebar .sidebar-heading {
	text-align: left;
	padding: 0 1rem;
	font-weight: 800;
	font-size: 0.65rem;
	letter-spacing: 0.13rem;
}

.sidebar .version {
	text-align: left;
	font-size: 0.6rem;
	padding: 0 1rem;
	color: #b7b9cc;
	letter-spacing: 0.030rem;
}


.sidebar .sidebar-brand .sidebar-brand-text {
	display: inline;
}

.sidebar.toggled {
	overflow: visible;
	width: 6.5rem !important;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar.toggled .nav-item {
	margin-bottom: 0px;		
}


.sidebar.toggled hr.sidebar-divider {
	margin: 0 0 1rem 0;
}

.sidebar.toggled #sidebarToggle::after {
	content: '\f105';
	font-family: 'FontAwesome';
	margin-left: 0.25rem;
}

.sidebar.toggled .nav-item .collapse {
	position: absolute;
	left: calc(6.5rem + 1.5rem / 2);
	top: 2px;
	-webkit-animation-name: growIn;
	animation-name: growIn;
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
	-webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
	animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);	
}

.sidebar.toggled .nav-item .collapse,
.sidebar.toggled .nav-item .collapsing {
	margin: 0;	
}

.sidebar.toggled .nav-item .collapse .collapse-inner {
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	border-radius: 0.35rem;		
}

.sidebar.toggled .nav-item .collapsing {
	display: none;
	-webkit-transition: none;
	transition: none;
}

.sidebar.toggled .nav-item:last-child {
	margin-bottom: 1rem;
}

.sidebar.toggled .nav-item .nav-link {
	text-align: center;
	padding: 0.75rem 1rem;
	width: 6.5rem;
}

.sidebar.toggled .nav-item .nav-link {
	background-color: transparent !important;
}

.sidebar.toggled .sidebar-heading {
	display: none;
}

.sidebar.toggled .nav-item .nav-link span {
	display: none;
}

.sidebar.toggled .nav-item .nav-link i {
	float: left;
	text-align: center;
	font-size: 1rem;
	margin: 0 0 0.7rem 1rem;
}

.sidebar.toggled .sidebar-brand .sidebar-brand-text {
	display: none;
}

.sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
	width: 1rem;
	text-align: center;
	float: right;
	vertical-align: 0;
	border: 0;
	font-weight: 900;
	content: '\f107';
	font-family: 'FontAwesome';
}

.sidebar.toggled .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
	content: '\f105';
}


.login-form {
	padding: 3rem !important;
}

@media (max-width: 768px) {

	#container-wrapper {
		min-width: 100vw;
	}

	.sidebar.toggled {
		width: 100vw !important;
		transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
	}

	.sidebar.toggled .nav-item {
		margin-left: -1rem;
		position: relative;
		margin-bottom: -15px;
	}

	.sidebar.toggled .nav-item .nav-link {
		display: block;
		width: 100%;
		text-align: left;
		padding: 1rem;
		width: 14rem;
	}

	.sidebar.toggled .nav-item .nav-link i {
		font-size: 0.85rem;
		margin-top: 0.4rem;
		margin-right: 0.5rem;
	}

	.sidebar.toggled .nav-item .nav-link span {
		font-size: 0.85rem;
		display: inline;
	}

	.sidebar.toggled .nav-item.active .nav-link {
		font-weight: 700;
	}

	.sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
		width: 1rem;
		text-align: center;
		float: right;
		vertical-align: 0;
		border: 0;
		font-weight: 900;
		content: '\f107';
		font-family: 'FontAwesome';
	}

	.sidebar.toggled .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
		content: '\f105';
	}

	.sidebar.toggled .nav-item .collapse {
		position: relative;
		padding-left: 1rem;
		left: 0;
		z-index: 1;
		top: 0;
		-webkit-transition: height 0.15s ease;
		transition: height 0.15s ease;
	}

	.sidebar.toggled .nav-item .collapse .collapse-inner {
		border-radius: 0.35rem;
		-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
		box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	}

	.sidebar.toggled .nav-item .collapse,
	.sidebar.toggled .nav-item .collapsing {
		margin: 0 1rem;
	}

	.sidebar.toggled .nav-item .collapse .collapse-inner,
	.sidebar.toggled .nav-item .collapsing .collapse-inner {
		padding: .5rem 0;
		min-width: 10rem;
		font-size: 0.85rem;
		margin: 0 0 1rem 0;
	}

	.sidebar.toggled .nav-item .collapse .collapse-inner .collapse-header,
	.sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-header {
		margin: 0;
		white-space: nowrap;
		padding: .5rem 1.5rem;
		text-transform: uppercase;
		font-weight: 800;
		font-size: 0.65rem;
		color: #b7b9cc;
	}

	.sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item,
	.sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item {
		padding: 0.5rem 1rem;
		margin: 0 0.5rem;
		display: block;
		color: #3a3b45;
		text-decoration: none;
		border-radius: 0.35rem;
		white-space: nowrap;
	}

	.sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item:hover,
	.sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item:hover {
		background-color: #eaecf4;
		transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
	}

	.sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item:active,
	.sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item:active {
		background-color: #dddfeb;
	}

	.sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item.active,
	.sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item.active {
		color: #3f51b5;
		font-weight: 800;
	}

	.sidebar.toggled .sidebar-brand {
		height: 4.375rem;
		text-decoration: none;
		font-size: 1rem;
		font-weight: 800;
		padding: 1.5rem 1rem;
		text-align: center;
		letter-spacing: 0.05rem;
		z-index: 1;
	}

	.sidebar.toggled hr.sidebar-divider {
		margin: 1rem 0 1rem 0rem;
	}

	.sidebar.toggled .sidebar-heading {
		display: block;
		text-align: left;
		padding: 0 1rem;
		font-weight: 800;
		font-size: 0.65rem;
		letter-spacing: 0.13rem;
	}

	.sidebar.toggled .sidebar-brand .sidebar-brand-text {
		display: inline;
	}

	.sidebar {
		width: 0 !important;
		overflow: hidden;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
	}

	.sidebar .sidebar-brand {
		overflow: hidden;
	}

	.sidebar .sidebar-brand .sidebar-brand-text {
		overflow: hidden;
	}

	.sidebar .nav-item {
		overflow: hidden;
	}

	.sidebar .sidebar-brand .sidebar-brand-icon img {
		overflow: hidden;
	}

	.sidebar hr.sidebar-divider {
		margin: 1rem 0 1rem 0rem;
	}

	.topbar .navbar-search {
		width: 100%;
	}

	.login-form {
		padding: 3rem 2rem !important;
	}

}


.breadcrumb {
	background-color: transparent;
	font-size: 12px;
	font-weight: bold;
}

.sidebar-light .sidebar-brand {
	color: #fafafa;
	background-color: #8ec971;
}

.sidebar-light hr.sidebar-divider {
	border-top: 1px solid #eaecf4;
}

.sidebar-light .sidebar-heading {
	color: #b7b9cc;
}

.sidebar-light .nav-item .nav-link {
	color: #858796;
}

.sidebar-light .nav-item .nav-link i {
	color: #9e9e9e;
}

.sidebar-light .nav-item .nav-link:active,
.sidebar-light .nav-item .nav-link:focus,
.sidebar-light .nav-item .nav-link:hover {
	color: #6e707e;
	background-color: #eeeeee;
}

.sidebar-light .nav-item .nav-link:active i,
.sidebar-light .nav-item .nav-link:focus i,
.sidebar-light .nav-item .nav-link:hover i {
	color: #6e707e;
}

.sidebar-light .nav-item .nav-link[data-toggle="collapse"]::after {
	color: #b7b9cc;
}

.sidebar-light .nav-item.active .nav-link {
	color: #6e707e;
}

.sidebar-light .nav-item.active .nav-link i {
	color: #6e707e;
}

.sidebar-light #sidebarToggle {
	background-color: #eaecf4;
}

.sidebar-light #sidebarToggle::after {
	color: #b7b9cc;
}

.sidebar-light #sidebarToggle:hover {
	background-color: #dddfeb;
}

.sidebar-dark .sidebar-brand {
	color: #fff;
}

.sidebar-dark hr.sidebar-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-dark .sidebar-heading {
	color: rgba(255, 255, 255, 0.4);
}

.sidebar-dark .nav-item .nav-link {
	color: rgba(255, 255, 255, 0.8);
}

.sidebar-dark .nav-item .nav-link i {
	/* color: rgba(255, 255, 255, 0.3); */
	color: #d1d3e2;
}

.sidebar-dark .nav-item .nav-link:active,
.sidebar-dark .nav-item .nav-link:focus,
.sidebar-dark .nav-item .nav-link:hover {
	color: #fff;
}

.sidebar-dark .nav-item .nav-link:active i,
.sidebar-dark .nav-item .nav-link:focus i,
.sidebar-dark .nav-item .nav-link:hover i {
	color: #fff;
}

.sidebar-dark .nav-item .nav-link[data-toggle="collapse"]::after {
	color: rgba(255, 255, 255, 0.5);
}

.sidebar-dark .nav-item.active .nav-link {
	color: #fff;
}

.sidebar-dark .nav-item.active .nav-link i {
	color: #fff;
}

.sidebar-dark #sidebarToggle {
	background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-dark #sidebarToggle::after {
	color: rgba(255, 255, 255, 0.5);
}

.sidebar-dark #sidebarToggle:hover {
	background-color: rgba(255, 255, 255, 0.25);
}

.sidebar-dark.toggled #sidebarToggle::after {
	color: rgba(255, 255, 255, 0.5);
}

.btn-icon-split {
	padding: 0;
	overflow: hidden;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
}

.btn-icon-split .icon {
	background: rgba(0, 0, 0, 0.15);
	display: inline-block;
	padding: 0.375rem 0.75rem;
}

.btn-icon-split .text {
	display: inline-block;
	padding: 0.375rem 0.75rem;
	width: 100%;
}

.btn-icon-split.btn-sm .icon,
.btn-group-sm>.btn-icon-split.btn .icon {
	padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-sm .text,
.btn-group-sm>.btn-icon-split.btn .text {
	padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-lg .icon,
.btn-group-lg>.btn-icon-split.btn .icon {
	padding: 0.5rem 1rem;
}

.btn-icon-split.btn-lg .text,
.btn-group-lg>.btn-icon-split.btn .text {
	padding: 0.5rem 1rem;
}

.card .card-header .dropdown {
	line-height: 1;
}

.card .card-header .dropdown .dropdown-menu {
	line-height: 1.5;
}

.card .card-header[data-toggle="collapse"] {
	text-decoration: none;
	position: relative;
	padding: 0.75rem 3.25rem 0.75rem 1.25rem;
}

.card .card-header[data-toggle="collapse"]::after {
	position: absolute;
	right: 0;
	top: 0;
	padding-right: 1.725rem;
	line-height: 51px;
	font-weight: 900;
	content: '\f107';
	font-family: 'FontAwesome';
}

.card .card-header[data-toggle="collapse"].collapsed {
	border-radius: 0.35rem;
}

.card .card-header[data-toggle="collapse"].collapsed::after {
	content: '\f105';
}

.chart-area {
	position: relative;
	height: 10rem;
	width: 100%;
}

@media (min-width: 768px) {
	.chart-area {
		height: 20rem;
	}
}

.chart-bar {
	position: relative;
	height: 10rem;
	width: 100%;
}

@media (min-width: 768px) {
	.chart-bar {
		height: 20rem;
	}
}

.chart-pie {
	position: relative;
	height: 15rem;
	width: 100%;
}

@media (min-width: 768px) {
	.chart-pie {
		height: calc(20rem - 43px) !important;
	}
}

.bg-login-image {
	background-position: center;
	background-size: cover;
}

.bg-register-image {
	background-position: center;
	background-size: cover;
}

.bg-password-image {
	background-position: center;
	background-size: cover;
}

.btn-google {
	color: #434334;
	background-color: #ffffff;
	border-color: #bdbdbd;
	-webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	border-radius: 0.25rem;
}

.btn-google:hover {
	color: #434343;
	background-color: #f5f5f5;
	border-color: #434343;
}

.btn-google:focus,
.btn-google.focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-google.disabled,
.btn-google:disabled {
	color: #434343;
	background-color: #eeeeee;
	border-color: #434334;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.show>.btn-google.dropdown-toggle {
	color: #434334;
	background-color: #eeeeee;
	border-color: #434343;
}

.btn-google:not(:disabled):not(.disabled):active:focus,
.btn-google:not(:disabled):not(.disabled).active:focus,
.show>.btn-google.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook {
	color: #fff;
	background-color: #3b5998;
	border-color: #fff;
	-webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	border-radius: 0.25rem;
}

.btn-facebook:hover {
	color: #fff;
	background-color: #30497c;
	border-color: #e6e6e6;
}

.btn-facebook:focus,
.btn-facebook.focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook.disabled,
.btn-facebook:disabled {
	color: #fff;
	background-color: #3b5998;
	border-color: #fff;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.show>.btn-facebook.dropdown-toggle {
	color: #fff;
	background-color: #2d4373;
	border-color: #dfdfdf;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus,
.btn-facebook:not(:disabled):not(.disabled).active:focus,
.show>.btn-facebook.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.error {
	color: #5a5c69;
	font-size: 7rem;
	position: relative;
	line-height: 1;
	width: 12.5rem;
}

@-webkit-keyframes noise-anim {
	0% {
		clip: rect(31px, 9999px, 91px, 0);
	}

	5% {
		clip: rect(70px, 9999px, 29px, 0);
	}

	10% {
		clip: rect(3px, 9999px, 56px, 0);
	}

	15% {
		clip: rect(7px, 9999px, 78px, 0);
	}

	20% {
		clip: rect(97px, 9999px, 4px, 0);
	}

	25% {
		clip: rect(24px, 9999px, 60px, 0);
	}

	30% {
		clip: rect(80px, 9999px, 41px, 0);
	}

	35% {
		clip: rect(78px, 9999px, 14px, 0);
	}

	40% {
		clip: rect(20px, 9999px, 23px, 0);
	}

	45% {
		clip: rect(70px, 9999px, 61px, 0);
	}

	50% {
		clip: rect(65px, 9999px, 89px, 0);
	}

	55% {
		clip: rect(74px, 9999px, 25px, 0);
	}

	60% {
		clip: rect(76px, 9999px, 84px, 0);
	}

	65% {
		clip: rect(56px, 9999px, 10px, 0);
	}

	70% {
		clip: rect(85px, 9999px, 58px, 0);
	}

	75% {
		clip: rect(46px, 9999px, 71px, 0);
	}

	80% {
		clip: rect(6px, 9999px, 64px, 0);
	}

	85% {
		clip: rect(20px, 9999px, 84px, 0);
	}

	90% {
		clip: rect(57px, 9999px, 26px, 0);
	}

	95% {
		clip: rect(36px, 9999px, 92px, 0);
	}

	100% {
		clip: rect(12px, 9999px, 53px, 0);
	}
}

@keyframes noise-anim {
	0% {
		clip: rect(31px, 9999px, 91px, 0);
	}

	5% {
		clip: rect(70px, 9999px, 29px, 0);
	}

	10% {
		clip: rect(3px, 9999px, 56px, 0);
	}

	15% {
		clip: rect(7px, 9999px, 78px, 0);
	}

	20% {
		clip: rect(97px, 9999px, 4px, 0);
	}

	25% {
		clip: rect(24px, 9999px, 60px, 0);
	}

	30% {
		clip: rect(80px, 9999px, 41px, 0);
	}

	35% {
		clip: rect(78px, 9999px, 14px, 0);
	}

	40% {
		clip: rect(20px, 9999px, 23px, 0);
	}

	45% {
		clip: rect(70px, 9999px, 61px, 0);
	}

	50% {
		clip: rect(65px, 9999px, 89px, 0);
	}

	55% {
		clip: rect(74px, 9999px, 25px, 0);
	}

	60% {
		clip: rect(76px, 9999px, 84px, 0);
	}

	65% {
		clip: rect(56px, 9999px, 10px, 0);
	}

	70% {
		clip: rect(85px, 9999px, 58px, 0);
	}

	75% {
		clip: rect(46px, 9999px, 71px, 0);
	}

	80% {
		clip: rect(6px, 9999px, 64px, 0);
	}

	85% {
		clip: rect(20px, 9999px, 84px, 0);
	}

	90% {
		clip: rect(57px, 9999px, 26px, 0);
	}

	95% {
		clip: rect(36px, 9999px, 92px, 0);
	}

	100% {
		clip: rect(12px, 9999px, 53px, 0);
	}
}

.error:after {
	content: attr(data-text);
	position: absolute;
	left: 2px;
	text-shadow: -1px 0 #e74a3b;
	top: 0;
	color: #5a5c69;
	background: #f8f9fc;
	overflow: hidden;
	clip: rect(0, 900px, 0, 0);
	animation: noise-anim 2s infinite linear alternate-reverse;
}

@-webkit-keyframes noise-anim-2 {
	0% {
		clip: rect(68px, 9999px, 1px, 0);
	}

	5% {
		clip: rect(44px, 9999px, 53px, 0);
	}

	10% {
		clip: rect(72px, 9999px, 43px, 0);
	}

	15% {
		clip: rect(18px, 9999px, 16px, 0);
	}

	20% {
		clip: rect(6px, 9999px, 72px, 0);
	}

	25% {
		clip: rect(18px, 9999px, 16px, 0);
	}

	30% {
		clip: rect(93px, 9999px, 46px, 0);
	}

	35% {
		clip: rect(100px, 9999px, 33px, 0);
	}

	40% {
		clip: rect(27px, 9999px, 29px, 0);
	}

	45% {
		clip: rect(5px, 9999px, 64px, 0);
	}

	50% {
		clip: rect(40px, 9999px, 65px, 0);
	}

	55% {
		clip: rect(72px, 9999px, 49px, 0);
	}

	60% {
		clip: rect(44px, 9999px, 39px, 0);
	}

	65% {
		clip: rect(84px, 9999px, 45px, 0);
	}

	70% {
		clip: rect(99px, 9999px, 56px, 0);
	}

	75% {
		clip: rect(87px, 9999px, 20px, 0);
	}

	80% {
		clip: rect(52px, 9999px, 8px, 0);
	}

	85% {
		clip: rect(64px, 9999px, 22px, 0);
	}

	90% {
		clip: rect(51px, 9999px, 69px, 0);
	}

	95% {
		clip: rect(2px, 9999px, 11px, 0);
	}

	100% {
		clip: rect(19px, 9999px, 40px, 0);
	}
}

@keyframes noise-anim-2 {
	0% {
		clip: rect(68px, 9999px, 1px, 0);
	}

	5% {
		clip: rect(44px, 9999px, 53px, 0);
	}

	10% {
		clip: rect(72px, 9999px, 43px, 0);
	}

	15% {
		clip: rect(18px, 9999px, 16px, 0);
	}

	20% {
		clip: rect(6px, 9999px, 72px, 0);
	}

	25% {
		clip: rect(18px, 9999px, 16px, 0);
	}

	30% {
		clip: rect(93px, 9999px, 46px, 0);
	}

	35% {
		clip: rect(100px, 9999px, 33px, 0);
	}

	40% {
		clip: rect(27px, 9999px, 29px, 0);
	}

	45% {
		clip: rect(5px, 9999px, 64px, 0);
	}

	50% {
		clip: rect(40px, 9999px, 65px, 0);
	}

	55% {
		clip: rect(72px, 9999px, 49px, 0);
	}

	60% {
		clip: rect(44px, 9999px, 39px, 0);
	}

	65% {
		clip: rect(84px, 9999px, 45px, 0);
	}

	70% {
		clip: rect(99px, 9999px, 56px, 0);
	}

	75% {
		clip: rect(87px, 9999px, 20px, 0);
	}

	80% {
		clip: rect(52px, 9999px, 8px, 0);
	}

	85% {
		clip: rect(64px, 9999px, 22px, 0);
	}

	90% {
		clip: rect(51px, 9999px, 69px, 0);
	}

	95% {
		clip: rect(2px, 9999px, 11px, 0);
	}

	100% {
		clip: rect(19px, 9999px, 40px, 0);
	}
}

.error:before {
	content: attr(data-text);
	position: absolute;
	left: -2px;
	text-shadow: 1px 0 #3f51b5;
	top: 0;
	color: #5a5c69;
	background: #f8f9fc;
	overflow: hidden;
	clip: rect(0, 900px, 0, 0);
	animation: noise-anim-2 3s infinite linear alternate-reverse;
}

footer.sticky-footer {
	padding: 2rem 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

footer.sticky-footer .copyright {
	line-height: 1;
	font-size: 0.8rem;
}

footer.sticky-footer .copyright a {
	color: #455a64;

}

footer.sticky-footer .copyright a:hover {
	text-decoration: none;
}

body.sidebar-toggled footer.sticky-footer {
	width: 100%;
}

.bg-blue {
	background-color: #e8eaf6 !important;
}

.table-flush td,
.table-flush th {
	border-right: 0;
	border-left: 0;
}

.table-flush tbody tr:first-child td,
.table-flush tbody tr:first-child th {
	border-top: 0;
}

.table-flush tbody tr:last-child td,
.table-flush tbody tr:last-child th {
	border-bottom: 0;
}

.card .table {
	margin-bottom: 0;
}

.card .table td,
.card .table th {
	padding-right: 1.5rem;
	padding-left: 1.5rem;
}

.customer-message {
	border-bottom: 1px solid #e3e6f0;
	padding-bottom: 10px;
	padding-top: 10px;
}

.customer-message:hover {
	background-color: #F8F9FC
}

.customer-message a .message-title {
	padding-right: 1.3rem;
	padding-left: 1.3rem;
}

.customer-message a .message-time {
	padding-right: 1.3rem;
	padding-left: 1.3rem;
}

.customer-message a:hover {
	text-decoration: none;
}

.btn-outline-light {
	color: #373840;
}

.card {
	-webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.input-group-append .btn {
	-webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
}

.input-group-append .btn:hover {
	-webkit-box-shadow: 0 0.125rem 0.3rem 0 rgba(58, 59, 69, 0.4) !important;
	box-shadow: 0 0.125rem 0.3rem 0 rgba(58, 59, 69, 0.4) !important;
}

.form-control:focus {
	border: 1px solid #6777ef;
}

.input-group-append span {
	-webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	color: #fff;
	background-color: #3f51b5;
	border-color: #3f51b5;
}

.input-group-prepend span {
	-webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
	color: #fff;
	background-color: #3f51b5;
	border-color: #3f51b5;
}

.main_slider {
	width: 100%;
	position: relative;
}

.main_slider .owl-carousel.owl-loaded {
	padding-bottom: 40px;
}

.main_slider .owl-carousel .owl-item img {
	/*  height: 100%;
	width:auto;*/
}

.main_slider .slide .slide_description {
	position: absolute;
	bottom: 5%;
	z-index: 1;
	color: #fff;
	font-size: 40px;
	left: 5%;
	font-weight: bold;
	max-width: 80%;
	background-color: rgba(0,0,0,0.5);
	padding: 10px;
	border-bottom: 3px solid #8EC971;
	border-left: 3px solid #8EC971;
}

.main_slider .slide .slide_description span {
	display: block;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: normal;
}

.main_slider .slide .more_link {
	display: block;
	position: absolute;
	bottom: 5%;
	right: 5%;
	font-size: 30px;
	padding: 10px 20px;
	width: auto;
	line-height: normal;
	height: auto;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	border-bottom: 3px solid #8EC971;
	border-right: 3px solid #8EC971;
	text-decoration: none;
	transition: .2s;
	text-align: center;
	font-family: "HelveticaNeueCyr Light";
}

.main_slider .slide .more_link:hover {
	background-color: #fff;
	color: #000;
}

.main_slider .slider_nav_block, .main_slider .slider_nav_block_second {
	position: absolute;
	/*top: calc(50% - 35px);*/
	top: 0;
	font-size: 70px;
	z-index: 1;
	color: #FFF;
	width: 100%;
	height: 0;
}

.main_slider .slider_nav_block .slider-arrow, .main_slider .slider_nav_block_second .slider-arrow {
	cursor: pointer;
	position: absolute;
	height: 400px;
	background: rgba(0,0,0,0.5);
	text-align: center;
	line-height: 400px;
	width: 100px;
	transition: .4s;
}

.main_slider.second .slider_nav_block .slider-arrow, .main_slider.second .slider_nav_block_second .slider-arrow {
	background: rgba(0,0,0,0.5);
}

.main_slider .slider_nav_block .slider-arrow.fa-chevron-left, .main_slider .slider_nav_block_second .slider-arrow.fa-chevron-left {
	left: 0;
}

.main_slider .slider_nav_block .slider-arrow.fa-chevron-right, .main_slider .slider_nav_block_second .slider-arrow.fa-chevron-right {
	right: 0;
}

.main_slider .slider_nav_block .slider-arrow:hover, .main_slider .slider_nav_block_second .slider-arrow:hover {
	color: #000;
	background: rgba(255,255,255,0.5);
}

.main_slider .owl-dots {
	z-index: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	/* background: rgba(0,0,0,0.75); */
	bottom: 0;
	border-bottom: 1px solid #8EC971;
	border-top: 1px solid #8EC971;
}

.main_slider .owl-carousel button.owl-dot {
	width: 15px;
	height: 15px;
	background-color: #FFF;
	border-radius: 10em;
	display: inline-block;
	margin: 10px;
	transition: background-color .5s ease, transform .5s ease;
	border: 1px solid #8EC971;
}

.main_slider .owl-dot.active {
	background-color: #8EC971;
	transform: scale(1.5);
}

.contentblock.first .item a {
	text-decoration: none
}

.contentblock.first .item .img {
	/*background: center center no-repeat #8EC971;*/
	width: 210px;
	height: 210px;
	/*border-radius: 50%;*/
	margin: 0 auto 15px;
	transition: .4s;
}

.contentblock.first .item:hover > a .img {
	box-shadow: inset 0px 0px 30px rgba(0,0,0,0.5);
}

.contentblock.first .item.host .img {
	background-image: url(/bitrix/templates/main/img/index-first-1.png)
}

.contentblock.first .item.serv .img {
	background-image: url(/bitrix/templates/main/img/index-first-2.png)
}
.contentblock.first .item.dedic_serv .img {
	background-image: url(/bitrix/templates/main/img/index-first-3.png)
}

.contentblock.first .item .title {
	font-family: "HelveticaNeueCyr Roman";
	font-size: 25px;
	margin-bottom: 15px
}

.contentblock.first .item .descr {
	font-family: "HelveticaNeueCyr Light";
	font-size: 22px;
	margin: 10px;
	overflow: hidden;
	text-align: center;
	font-size: 1.175em;
	text-overflow: ellipsis;
}

.contentblock.first .item .line {
	margin: 0 auto 15px;
	height: 1px;
	width: 165px;
	background: #e0e0e0
}

.contentblock.second .item {
	width: 330px;
	margin-bottom: 20px;
	color: #252525;
	font-family: "HelveticaNeueCyr Roman";
	position: absolute;
	cursor: pointer;
}

/*
.contentblock.second .item:hover > .descr {
	opacity:1
}
.contentblock.second .item:hover > .line {
	opacity:1
}
*/
.contentblock.second .item .title {
	font-size: 25px;
	margin-bottom: 15px;
	color: #87B968;
}

.contentblock.second .item .descr {
	font-size: 18px;
	transition: .4s;
	/*opacity:0*/
}

.contentblock.second .item .line {
	margin: 0 auto 15px;
	height: 1px;
	width: 165px;
	background: #e0e0e0;
	transition: .4s;
	/*opacity:0*/
}

.contentblock.second .width {
	background: url(/bitrix/templates/main/img/priem-full.png) top center no-repeat;
	height: 750px;
	max-width: 1170px;
	position: relative;
	margin: -5px auto 195px
}

.contentblock.second .item.i1 {
	top: 90px;
	left: 15px;
}


.contentblock.second .item.i2 {
	top: 330px;
	left: -50px;
}


.contentblock.second .item.i3 {
	top: 595px;
	left: 230px;
}


.contentblock.second .item.i4 {
	top: 595px;
	right: 230px;
}


.contentblock.second .item.i5 {
	top: 350px;
	right: -30px;
}


.contentblock.second .item.i6 {
	top: 90px;
	right: 0;
}
@media (max-width: 980px) {
    .contentblock.second .gtitle {
        margin-bottom:40px
    }

    .contentblock.second .width {
        background: 0 0;
        height: auto
    }

    .contentblock.second .width .item {
        width: 100%;
        position: static;
        margin-bottom: 80px;
        padding: 0 5px
    }
}

.rating_star {
    background-image: url(/bitrix/templates/main/img/rating_stars.png);
    width: 30px;
    height: 30px;
    display: block;
    background-size: auto 100%;
    text-align: center;
    font-size: 16px;
    line-height: 34px;
    border-radius: 100%;
    color: #000;
	padding: 0;
}
.font-weight-bold {
    font-weight: 700 !important;
}
.text-right {
    text-align: right !important;
}
.border-right {
    border-right: 1px solid #e3e6f0;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}


.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #6777EF;
    background-color: #6777EF
}

.custom-control-input:focus~.custom-control-label::before {
    -webkit-box-shadow: 0 0 0 .2rem rgba(78,115,223,0.25);
    box-shadow: 0 0 0 .2rem rgba(78,115,223,0.25)
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #bac8f3
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #e5ebfa;
    border-color: #e5ebfa
}

.custom-control-input:disabled~.custom-control-label {
    color: #757575
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: #eaecf4
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #b7b9cc solid 1px
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%
}

.custom-checkbox .custom-control-label::before {
    border-radius: .35rem
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #6777EF;
    background-color: #6777EF
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(78,115,223,0.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(78,115,223,0.5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(78,115,223,0.5)
}

.custom-switch {
    padding-left: 2.25rem
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: .5rem
}

.custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #b7b9cc;
    border-radius: .5rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
        -webkit-transition: none;
        transition: none
    }
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(0.75rem);
    transform: translateX(0.75rem)
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(78,115,223,0.5)
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%235a5c69' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #d1d3e2;
    border-radius: .35rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.custom-select:focus {
    border-color: #bac8f3;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(78,115,223,0.25);
    box-shadow: 0 0 0 .2rem rgba(78,115,223,0.25)
}

.custom-select:focus::-ms-value {
    color: #6e707e;
    background-color: #fff
}

.custom-select[multiple],.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: .75rem;
    background-image: none
}

.custom-select:disabled {
    color: #757575;
    background-color: #eaecf4
}

.custom-select::-ms-expand {
    display: none
}

.custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 0;
    opacity: 0
}

.custom-file-input:focus~.custom-file-label {
    border-color: #bac8f3;
    -webkit-box-shadow: 0 0 0 .2rem rgba(78,115,223,0.25);
    box-shadow: 0 0 0 .2rem rgba(78,115,223,0.25)
}

.custom-file-input:disabled~.custom-file-label {
    background-color: #eaecf4
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse";
    color: #fff;
    background-color: #6777EF;
    border-color: #6777EF
}

.custom-file-input~.custom-file-label[data-browse]::after {
    content: attr(data-browse)
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + 0.75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    border: 1px solid #d1d3e2;
    border-radius: .25rem;
    -webkit-box-shadow: 0 .125rem .25rem 0 rgba(58,59,69,0.2)!important;
    box-shadow: 0 .125rem .25rem 0 rgba(58,59,69,0.2)!important
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #6e707e;
    content: "Browse";
    background-color: #eaecf4;
    border-left: inherit;
    border-radius: 0 .35rem .35rem 0
}

.custom-range {
    width: 100%;
    height: calc(1rem + 0.4rem);
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.custom-range:focus {
    outline: none
}

.custom-range:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(78,115,223,0.25);
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(78,115,223,0.25)
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(78,115,223,0.25)
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(78,115,223,0.25)
}

.custom-range::-moz-focus-outer {
    border: 0
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #6777EF;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #e5ebfa
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dddfeb;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #6777EF;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #e5ebfa
}

.custom-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dddfeb;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: .2rem;
    margin-left: .2rem;
    background-color: #6777EF;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.custom-range::-ms-thumb:active {
    background-color: #e5ebfa
}

.custom-range::-ms-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem
}

.custom-range::-ms-fill-lower {
    background-color: #dddfeb;
    border-radius: 1rem
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dddfeb;
    border-radius: 1rem
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #b7b9cc
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #b7b9cc
}

.custom-range:disabled::-moz-range-track {
    cursor: default
}

.custom-range:disabled::-ms-thumb {
    background-color: #b7b9cc
}

.custom-control-label::before,.custom-file-label,.custom-select {
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .custom-control-label::before,.custom-file-label,.custom-select {
        -webkit-transition: none;
        transition: none
    }
}
.ml-auto, .mx-auto {
    margin-left: auto !important;
}
.btn-info{
	color: #fff;
}
.btn-info:hover{
	color: #fff;
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle{
	color: #fff;
}
.cursor-pointer{
	cursor: pointer;
}
.background-success{
	background-color: #8ec971!important;
	color: #fff!important;
}
.bg-curcuit{
    background-image: url(/bitrix/templates/main/img/bg-fone-curcuit.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: auto 100%;
}
.text-shadow{
	text-shadow: #000 1px 1px 5px;
}
.up-hover-10:hover {
    transform: translateY(-10px)!important;
	transition: all ease-in-out 0.4s;
}
.bg-anim .list-group-item{
	background-color: rgba(255,255,255,0.5);
}
.bg-anim {
    position: relative;
    overflow: hidden;
    animation: theme 21s linear infinite;
    
    &:after,
    &:before {
        content: '';
        display: block;
        position: absolute;
        z-index: 0;
        top: -50%;
        left: -50%;
        width: 100%;
        height: 200%;
        background: rgba(0,0,0,0.05);
        animation: background 60s linear infinite;
		border-radius: 100%;
    }

    &:after {
        left: -5%;
    }

    &:before {
        right: 15%;
        animation-delay: -30s;
        animation-direction: reverse;
    }
    
    /* Все остальное содержимое должно быть выше фона */
    & > * {
        position: relative;
        z-index: 1;
    }
}

@keyframes theme {
	0% {
		background-color: rgba(142, 201, 113, 0.5);  /* #8ec971 */
	}

	16% {
		background-color: rgba(255, 193, 7, 0.5);   /* #ffc107 */
	}

	33% {
		background-color: rgba(13, 202, 240, 0.5);  /* #0dcaf0 */
	}

	50% {
		background-color: rgba(229, 57, 53, 0.5);   /* #E53935 */
	}

	66% {
		background-color: rgba(13, 110, 253, 0.5); /* #0d6efd */
	}    

	83% {
		background-color: rgba(108, 117, 125, 0.5); /* #6c757d */
	}

	100% {
		background-color: rgba(142, 201, 113, 0.5); /* #8ec971 */
	}
}

@keyframes background {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}