*::-webkit-input-placeholder {color: #666;opacity: 1;}
*:-moz-placeholder {color: #666;opacity: 1;}
*::-moz-placeholder {color: #666;opacity: 1;}
*:-ms-input-placeholder {color: #666;opacity: 1;}

:root {
    --text-color: #2f1446;
    --back-color: #f0f1f6;

    --shadow-morf-in:
        3px 3px 5px rgba(55, 84, 170, .15),
        -3px -4px 5px rgba(255, 255, 255, .4),
        inset 3px 3px 5px rgba(55, 84, 170, .15),
        inset -3px -3px 5px rgba(255, 255, 255, .4);

    --shadow-morf-out:
        3px 3px 5px rgba(55, 84, 170, .15),
        -3px -4px 5px rgba(255, 255, 255, .4);

    --shadow-popup: 0 4px 16px rgb(175 188 220), 0 16px 64px rgba(75, 0, 189, .2);
}

html {height: 100%;}

a,a:focus,a:hover {
	color: inherit;
	text-decoration: none;
}

img {max-width: 100%;}

svg {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    fill: #4E64A0;
}

hr {
    border: none;
    border-bottom: 1px solid rgb(216, 225, 245);
}

.pdz {padding: 0!important;}

.pdzl {padding-left: 0!important;}

.pdzr {padding-right: 0!important;}

.p10 {padding: 10px!important;}

.p20 {padding: 20px!important;}

.p30 {padding: 30px!important;}

.mgz {margin: 0!important;}

.mglz {margin-left: 0!important;}

.mgrz {margin-right: 0!important;}

.center_text {text-align: center;}

.w100 {width: 100%;}

.w50 {width: 50%;}

.w30 {width: 30%;}

.w70 {width: 70%;}

.w60 {width: 60%;}

.w20 {width: 20%;}

.w80 {width: 80%;}

.jcfle {justify-content: flex-end;}

.jcfls {justify-content: flex-start;}

.jcspb {justify-content: space-between;}

.jcspa {justify-content: space-around;}

.flex {display: flex!important;}

.fldc {flex-direction: column;}

.fl30 {
	width: 33.33333%;
	float: left;
	padding: 5px;
}

.fl50 {
	width: 50%;
	float: left;
	padding: 5px;
}

.flg1 {flex-grow: 1;}

.flg2 {flex-grow: 2;}

.aife {align-items: flex-end}

.hidden {display: none!important;}

body {
    /*color: var(--text-color);*/
	/*background-color: #e9ecef;*/
    /*background-color: #f6f8fa;*/
    /*background-color: #EEF0F8;*/
    /*background-color: #e9ecef;*/
    background-color: var(--back-color);
	font-size: 14px;
	min-width: 320px;
	position: relative;
	line-height: 1.1;
    font-family: "RobotoRegular", sans-serif;
	margin: 0;
	overflow-x: hidden;
	max-height: 100%;
	height: 100%;
}

.main_section {
    padding: 60px 5px 0;
    min-height: 100%;
}

.main_section.sidebar_opened {padding-left: 260px;}
.main_section.sidebar_closed {padding-left: 50px;}

.header_holder {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px 0 40px;
}

.logo_holder {
    position: absolute;
    display: flex;
    align-items: center;
    top: 10px;
    left: 20px;
}

.logo_holder img {
    margin-right: 10px;
    display: block;
}

.logo_holder span {
    letter-spacing: 0.25em;
    line-height: initial;
}

.waves_holder {
    display: none;
    position: absolute;
    right: calc(50% - 150px);
    top: 5px;
    width: 300px;
    z-index: 450;
}

.waves_holder.active {
    display: block;
}

/*
|==============================================
| Tiles
|==============================================
*/

.tile_holder {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: center;*/
	width: 100%;
	/*max-width: 1020px;*/
	/*min-height: 390px;*/
	/*max-height: 390px;*/
    overflow: hidden;
}

.tile_item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    height: 120px;
    width: 120px;
    max-width: 140px;
    margin: 5px;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--back-color);
    border: 3px solid #fff;
    position: relative;
    transform: scale(1);
    opacity: 1;
    box-shadow: var(--shadow-morf-in);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.tile_item:hover {
    box-shadow: var(--shadow-morf-out);
}

.tile_item:after {
    position: absolute;
    /*background-color: rgba(84, 106, 164, .1);*/
    /*content: "";*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    transform: scale(0.5);
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}

.tile_item.scale_out {
    opacity: 0;
    z-index: 0;
    box-shadow: none;
    transform: scale(0);
    position: absolute;
}

.tile_item.scale_in {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.tile_item:hover:after {
    opacity: 1;
    border-radius: 8px;
    transform: scale(.95);
}

.tile_item.ref {
    width: 240px;
    max-width: 240px;
}

.tile_icon {
    max-width: 40px;
    margin-top: 20px;
}

.tile_icon:empty {
    display: none;
}

.tile_name {
    height: 30px;
    overflow: hidden;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.tile_icon:empty + .tile_name {
    height: auto;
}

.tile_holder.main_menu {
    /*margin: 120px auto 20px;*/
}

.tile_holder.form_menu {
    max-width: 780px;
    min-width: 780px;
    align-items: flex-start;
    justify-content: flex-start;
}

.tile_holder .tile_holder {
    margin-left: -5px;
}

.page_menu_holder {
    padding: 20px;
    margin: 0 auto;
    max-width: 1470px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .6);
    box-shadow: 0 16px 128px rgb(75 0 189 / 10%);
}

.menu_holder_outer {

}

.menu_holder {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--back-color);
}

.menu_side {
    min-width: 240px;
    padding: 10px 0;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 8px;
    background-color: var(--back-color);
}

.menu_search {
    margin-bottom: 20px;
    padding: 0 10px;
}

.menu_search input {
    width: 100%;
}

.menu_main {
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    padding: 5px;
    background-color: var(--back-color);
}

.menu_categories {
}

.menu_category {
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 15px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.menu_category:hover,
.menu_category.active
{
    background-color: rgba(216, 225, 245, .4);
}

.menu_category_icon {
    width: 20px;
    min-width: 20px;
    margin-right: 10px;
}

.menu_category_name {
    font-family: RobotoMedium;
    opacity: .8;
    transition: inherit;
}

.menu_category:hover .menu_category_name,
.menu_category.active .menu_category_name
{
    opacity: 1;
}


/*
|=============================================================
| SIDEBAR
|=============================================================
*/

.sidebar_holder {
    box-shadow: 4px 0 16px rgba(75, 0, 189, .1);
    background-color: #fff;
    background-color: #2f1446;
    position: fixed;
    height: 100%;
    color: #c2c7d0;
    top: 0;
    z-index: 150;
    width: 260px;
    display: flex;
    flex-direction: column;
    border-radius: 0 8px 0 0;
    justify-content: flex-start;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.sidebar_holder.closed {
    width: 50px;
    overflow: hidden;
}

.sidebar_holder:hover {
    z-index: 150;
    width: 260px;
}

.sidebar_toggler {
    position: absolute;
    top: 16px;
    right: 12px;
    width: 20px;
    height: 8px;
    cursor: pointer;
    border-radius: 2px;
    border-top: 3px solid #e1e8f7;
    border-bottom: 3px solid #4E64A0;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.sidebar_toggler.active {
    border-top: 3px solid #4E64A0;
    border-bottom: 3px solid #e1e8f7;
}

.sidebar_holder.closed .sidebar_toggler {
    opacity: 0;
}

.sidebar_holder.closed:hover .sidebar_toggler {
    opacity: 1;
}

.sidebar_header {
    height: 48px;
    display: flex;
    align-items: center;
    box-sizing: content-box;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.sidebar_logo_holder {
    align-items: center;
    padding: 0 12px;
    display: flex;
}

.sidebar_logo_holder img {
    display: block;
}

.sidebar_logo_holder span {
    letter-spacing: 0.25em;
    line-height: initial;
    margin-left: 15px;
    display: block;
}

.sidebar_item {
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.sidebar_item_head {
    display: flex;
    min-height: 50px;
    cursor: pointer;
    position: relative;
    align-items: center;
    white-space: nowrap;
    border-bottom: 1px solid rgb(217 226 245);
    border-bottom: 1px solid #22ee954f;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.sidebar_item_head.opened {
    /*border-top: 1px solid rgb(217 226 245);*/
}

.sidebar_item_head.active,
.sidebar_item_head:hover
{
    background-color: rgba(255, 255, 255, .1);
}

.sidebar_item_icon {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    padding: 3px;
    display: flex;
    margin-left: 10px;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}

.sidebar_item_name {
    font-family: "RobotoMedium", sans-serif;
    white-space: nowrap;
    padding-left: 10px;
}

.sidebar_item_arrow {
    position: absolute;
    width: 12px;
    top: 19px;
    right: 20px;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.sidebar_item_head.opened .sidebar_item_arrow {
    transform: rotate(90deg);
}

.sidebar_item_children {
    width: 100%;
    display: none;
    margin-top: 10px;
}

.sidebar_item_children.opened {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.sidebar_item_child {
    display: block;
}

.sidebar_item_child_head {
    display: flex;
    min-height: 40px;
    cursor: pointer;
    align-items: center;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.sidebar_item_child_head.active,
.sidebar_item_child_head:hover
{
    background-color: rgba(216, 225, 245, .1);
}

.sidebar_item_child_icon {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    padding: 3px;
    display: flex;
    margin-left: 10px;
    align-items: center;
    visibility: hidden;
    box-sizing: border-box;
    justify-content: center;
}

.sidebar_holder.closed .sidebar_item_child_icon {
    visibility: initial;
}

.sidebar_item_child_name {
    padding-left: 10px;
    white-space: nowrap;
}

.sidebar_content {
    box-sizing: border-box;
    height: calc(100% - 108px);
}

.opened .sidebar_item_icon svg {
    fill: #9c4df9;
    fill: #22ee9591;
}

.sidebar_footer {
    height: 60px;
    display: flex;
    transform: translateY(60px);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.sidebar_holder:hover .sidebar_footer {
    transform: translateY(0);
}

.sidebar_footer_item {
    width: 65px;
    min-width: 65px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-right: 1px solid rgba(255, 255, 255, .1);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.sidebar_footer_item:last-child {
    border-right: none;
}

.sidebar_footer_item:hover
{
    background-color: rgba(255, 255, 255, .1);
}

.sidebar_footer_item_icon {
    width: 30px;
}

.sidebar_footer_item_name {
    display: none;
}

/*
|=============================================================
| WRAP CHECK
|=============================================================
*/

input[type="radio"],
input[type="checkbox"]
{
	opacity: 0;
	margin: 0;
	padding: 0;
	min-height: unset;
	position: absolute;
	z-index: -1;
}

label {cursor: pointer;}

label.error {
	font-size: 12px;
	color: red;
	margin-bottom: 10px;
	display: block;
}

label.option {
	display: flex;
	margin-bottom: 5px;
	align-items: center;
}

label.option:hover {
    color: #f25157;
}

label.option:hover .cr_holder {
    /*border: 1px solid #4e5791;*/
}

.cr_holder {
    margin-right: 10px;
}

.cr_holder span {
    border: 3px solid #fff;
    box-sizing: border-box;
    display: block;
    position: relative;
    height: 20px;
    width: 20px;
    background-color: rgba(216, 225, 245, .4);
    box-shadow:
        3px 3px 5px rgba(216, 225, 245, .95),
        -3px -3px 5px rgba(255, 255, 255, 0.1);
}

.cr_holder.checkbox span {border-radius: 3px;}

.cr_holder.radio span {border-radius: 50%;}

.cr_holder input:checked + span {background-color: #96daab;}

/*
|==============================================
| Rows
|==============================================
*/

.row_holder {
	display: flex;
	width: 100%;
}

select,
input,
textarea
{
	background-color: rgba(255, 255, 255, 0.7);
	margin-bottom: 10px;
}

select,
input[type="text"],
input[type="number"],
input[type="password"],
textarea
{
	height: 50px;
	display: block;
	padding: 5px 10px;
	outline: none;
	border-radius: 8px;
	border: 1px solid rgb(216, 225, 245);
	resize: none;
    color: inherit;
    font: inherit;
}

.row_holder textarea {
    height: 100px;padding: 10px;
}

.row_holder textarea.tall {
    height: 130px;
}

.row_holder .long input,
.row_holder .long select
{
	width: 310px;
}

.row_holder_single {width: 100%;}

.row_holder_single .input_holder,
.row_holder_single .input_holder_pdz
{
	width: 100%;
}

.row_holder.row_holder_single select,
.row_holder.row_holder_single textarea,
.row_holder.row_holder_single input[type="text"],
.row_holder.row_holder_single input[type="number"],
.row_holder.row_holder_single input[type="password"]
{
	width: 100%;
}

.row_holder_twin {width: 100%;justify-content: space-between;}

.row_holder_twin > .row_holder_twin {width: calc(50% - 5px);}

.row_holder_twin .input_holder {width: calc(50% - 5px);}

.row_holder.row_holder_twin select,
.row_holder.row_holder_twin textarea,
.row_holder.row_holder_twin input[type="text"],
.row_holder.row_holder_twin input[type="number"],
.row_holder.row_holder_twin input[type="password"]
{
	width: 100%;
}

.row_holder_trip {width: 100%;justify-content: space-between;}

.row_holder_trip .input_holder {width: calc(33.33333% - 5px);}

.row_holder.row_holder_trip select,
.row_holder.row_holder_trip textarea,
.row_holder.row_holder_trip input[type="text"],
.row_holder.row_holder_trip input[type="number"],
.row_holder.row_holder_trip input[type="password"]
{
	width: 100%;
}

.row_holder_quad {width: 100%;justify-content: space-between;}

.row_holder_quad .input_holder {width: calc(25% - 5px);}

.row_holder.row_holder_quad select,
.row_holder.row_holder_quad textarea,
.row_holder.row_holder_quad input[type="text"],
.row_holder.row_holder_quad input[type="number"],
.row_holder.row_holder_quad input[type="password"]
{
	width: 100%;
}

.input_holder.number {width: 83px;max-width: 83px!important;}

.form_frame {padding: 10px;}

.form_block_holder {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
}

.form_block_holder.inner {
    margin-bottom: 0;
}

.form_block {
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px solid rgb(216, 225, 245);
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 10px;
	width: 100%;
}

.form_block.inner {
    border: none;
    padding: 10px;
    margin-bottom: 0;
}

.form_block_holder.twin > .form_block {width: calc(50% - 5px);}

.form_block_holder.trip > .form_block {width: calc(33.33333% - 5px);}

.form_block_holder.quad > .form_block {width: calc(25% - 5px);}

.form_block.main {
    width: calc(100% - 300px);
    flex-grow: 1;
}

.form_block.side {
    width: 280px;
}

.form_block_header, .form_block_subheader {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding: 5px 0;
    line-height: 20px;
    font-size: 14px;
    text-transform: uppercase;
}

.custom_modal_form_item_inline form {display: flex;}

.custom_modal_form_item_inline .form_block_holder {margin-bottom: 0;}

.custom_modal_form_item_inline .form_frame {flex-grow: 1}

.custom_modal_form_item_inline .form_block {margin-bottom: 0;}

.custom_modal_form_item_inline .form_actions {
    display: block;
    width: initial;
}

.custom_modal_form_item_inline .form_actions .w50 {width: initial}

/*
|=============================================================
| CLONE
|=============================================================
*/

.clone {
    cursor: pointer;
    font-size: 12px;
    text-align: right;
}

.cloned {}

/*option.home_phone {display: none;}*/
/*option.work_phone {display: none;}*/
/*.cloned option.home_phone {display: initial;}*/
/*.cloned option.work_phone {display: initial;}*/

.remove_cloned {
    cursor: pointer;
    display: none;
    height: 50px;
    width: 50px;
    border: 1px solid rgb(216, 225, 245);
    background-color: rgba(78, 100, 160, .1);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 10px;
    align-self: flex-end;
}

.cloned .remove_cloned {
    display: flex;
}

.common_header {
	font-size: 16px;
	margin-bottom: 10px;
	padding: 0 5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: .7;
}

.context_menu_holder {
	background: #5380a8;
	position: absolute;
	border-radius: 8px;
	overflow: hidden;
	width: 220px;
	display: none;
	box-shadow: 0 4px 16px rgba(75, 0, 189, .1);
	z-index: 10000;
}

.context_menu_item {
	background-color: rgb(255, 255, 255);
	padding: 10px 15px;
	border-top: 1px solid rgba(78, 100, 160, .2);
	cursor: pointer;
	transition: .5s all;
	-moz-transition: .5s all;
	-webkit-transition: .5s all;
}

.context_menu_item:hover {background-color: rgb(216, 225, 245);}

.context_menu_item.cont_menu_link.blank {
    width: 40px;
    padding: 5px 10px;
    display: flex;
}

.context_menu_selected_name {
	font-size: 12px;
	text-align: center;
	padding: 0 5px;
	background: #4e64a0;
	color: #fff;
	line-height: 40px;
	height: 40px;
	overflow: hidden;
}

.cont_menu, .menu_link {cursor: pointer;}

.tab_content {display: none;}

.tab_links {
    display: inline-flex;
    margin-bottom: 10px;
    overflow: hidden;
}

.tab_link {
    background-color: #fff;
    /*border: 1px solid rgba(78, 100, 160, 0.2);*/
    border-top: 1px solid rgba(78, 100, 160, 0.2);
    border-right: 1px solid rgba(78, 100, 160, 0.2);
    border-bottom: 1px solid rgba(78, 100, 160, 0.2);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: flex;
    font-family: 'RobotoMedium';
    min-height: 40px;
    padding: 0 20px;
    position: relative;
    text-align: center;
}

.tab_link:first-child {
    border-radius: 8px 0 0 8px;
    border-left: 1px solid rgba(78, 100, 160, 0.2);
}

.tab_link:last-child {
    border-radius: 0 8px 8px 0;
}

.tab_link.active {
    background-color: rgb(216, 225, 245);
    border-top: 1px solid rgb(216, 225, 245);
    border-right: 1px solid rgb(216, 225, 245);
    border-bottom: 1px solid rgb(216, 225, 245);
    opacity: 1;
}

.tab_link.active:first-child {
    border-left: 1px solid rgb(216, 225, 245);
}

.tab_content.active {display: flex; flex-wrap: wrap;}

.x_info_holder {
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px rgba(75, 0, 189, .08);
}

.x_info_controls {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
    padding: 5px 0;
    border-radius: 8px;
}

.x_info_controls .common_header {
    margin-bottom: 0;
}

.x_info_controls .common_controls {
    display: flex;
}

.x_info_action {
    cursor: pointer;
    border: 1px solid rgba(78, 100, 160, .4);
    border-radius: 8px;
    padding: 5px 10px;
    margin-left: 10px;
    opacity: .6;
}

.x_info_controls .form-control {
    margin-bottom: 0!important;
    height: 30px!important;
}

.x_info_holder .custom_modal_form_item_inline {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 6px rgba(75, 0, 189, .08);
    overflow: hidden;
    margin-bottom: 10px;
}

.x_info_controls .form_frame {
    padding: 10px;
    margin: 0;
}

.x_info_header {}

.x_info_header > tr {
    background-color: #d8e1f5;
    border-bottom: 1px solid rgba(78, 100, 160, .4);
    border-top: 1px solid rgba(78, 100, 160, .1);
    box-shadow: 0 2px 6px rgba(75, 0, 189, .08);
    border-radius: 8px;
    margin: 0 0 2px;
    padding: 10px 0;
    display: flex;
}

.x_info_header > tr .x_cell_common {
    border-right: 1px solid #fff;
    font-weight: initial;
    font-family: 'RobotoBold';
}

.x_info_item {
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgb(217 226 245);
    position: relative;
    border-radius: 8px;
    min-height: 50px;
    padding: 10px 0;
    display: flex;
}

.x_info_item:hover {
    background-color: rgba(217, 226, 245, .2);
}

.x_cell_common {
	align-items: center;
	border-right: 1px solid #D8E1F5;
	display: flex;
	float: left;
	min-height: 15px;
	min-width: 40px;
	padding: 0 15px;
}

.x_cell_number {
    width: 60px;
    text-align: center;
}

.x_cell_checkbox {
	display: flex;
	height: 40px;
	min-width: 40px;
	align-items: center;
	justify-content: center;
}

.x_cell_date {width: 180px;}

/*
|==============================================
| Buttons
|==============================================
*/

button, .button
{
	font-weight: 600;
	cursor: pointer;
	border: none;
	display: block;
	height: 60px;
	padding: 5px 10px;
	outline: none;
	width: 100%;
	min-width: 150px;
}

button:active, .button:active {
	background-color: rgb(168, 185, 222);
	box-shadow: 0 0 5px inset rgba(75, 0, 189, .2);
}

.btn_y {background-color: rgb(216, 225, 245);}

.btn_m {background-color: #6d3763;}

.btn_n {background-color: rgb(246, 248, 250);}

.mini_button {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(78, 100, 160, .4);
}

.inline_button {
    height: 50px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(78, 100, 160, .4);
}

.reset_search_res_btn
{
    cursor: pointer;
    display: flex;
    height: 50px;
    width: 50px;
    min-width: 50px;
    border: 1px solid rgb(216, 225, 245);
    background-color: rgba(78, 100, 160, .1);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 12px;
    align-self: flex-end;
    box-sizing: border-box;
}

/*
|==============================================
| Popups
|==============================================
*/

.notify_holder {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: rgba(38, 38, 38, 0.6);
	box-shadow: var(--shadow-popup);
	position: fixed;
	top: 30px;
	right: calc(50% - 300px);
	width: 600px;
	z-index: 200;
	border-radius: 8px;
	overflow: hidden;
}

.notify_content {
	background-color: #fff;
	width: 100%;
	max-width: 600px;
	position: relative;
}

.notify_close {
	cursor: pointer;
	align-items: center;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 8px;
	height: 14px;
	justify-content: center;
	margin: 0 2px;
	width: 14px;
	float: right;
	background-color: #f25157;
	border: 1px solid #e1424c;
}

.notify_message_holder {
    padding: 20px;
}

.notify_message {
	padding: 20px;
}

.custom_modal_holder {
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	/*background-color: rgba(38, 38, 38, 0.6);*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 150;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.custom_modal_holder.active {display: flex;}

.custom_modal_holder.active:before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.custom_modal_holder.active.minimized {
	transform: translateY(60px);
	max-height: 35px;
	left: 50%;
	background-color: rgba(38, 38, 38, 0);
    z-index: 160;
}

.custom_modal_content {
    box-shadow: var(--shadow-popup);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.custom_modal_content {
    background-color: #fff;
}

.custom_modal_content_holder:empty {padding: 0;}

.custom_modal_content_holder {
    max-width: 600px;
    padding: 20px;
    overflow-wrap: break-word;
}

.custom_modal_header {
	background-color: #efefef;
	border-bottom: 1px solid #c1c1c1;
	display: flex;
	justify-content: space-between;
	/*margin-bottom: 10px;*/
	padding: 10px;
	background: linear-gradient(180deg, #efefef 0%, #e5e5e5 100%);
	background: -moz-linear-gradient(180deg, #efefef 0%, #e5e5e5 100%);
	background: -webkit-linear-gradient(270deg, #efefef 0%, #e5e5e5 100%);
	background: -o-linear-gradient(180deg, #efefef 0%, #e5e5e5 100%);
}

.custom_modal_name {
	font-size: 13px;
	letter-spacing: .06em;
	opacity: .8;
}

.custom_modal_cont {
	display: flex;
	justify-content: space-between;
	margin-left: 20px;
}

.modal_cont {
	align-items: center;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 8px;
	height: 14px;
	justify-content: center;
	margin: 0 2px;
	width: 14px;
	filter: grayscale(.6);
	opacity: .6;
}

.modal_cont:hover {
	filter: grayscale(0);
	opacity: 1;
}

.custom_modal_minimize {
	background-color: #fac637;
	border: 1px solid #e6b12b;
}

.custom_modal_maximize {
	background-color: #3aea4a;
	border: 1px solid #2ed23a;
}

.custom_modal_close {
	background-color: #f25157;
	border: 1px solid #e1424c;
}

.modal_cont svg {
	opacity: 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.modal_cont:hover svg {opacity: 1;}

.custom_modal_form_item {
	display: none;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.custom_modal_form_item.active {display: block;}

.custom_modal_form_item.minimized {
    /*height: 1px;*/
}

.custom_modal_info {
    background-color: #fff;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}

.preview_item_holder {
    max-width: 900px;
    min-width: 460px;
    word-break: break-all;
    background-color: #fff;
}

.preview_item {
    padding: 10px 20px;
}

.preview_item:nth-child(even) {
    background-color: #f0f1f6;
}

.preview_item_name {
    opacity: .6;
    font-size: 12px;
    margin-bottom: 5px;
}
.preview_item_value {
    font-family: "RobotoMedium";
}

.labellike {
	display: block;
	font-size: 12px;
	padding: 0 0 5px 0;
}

.file_label {
	cursor: pointer;
	display: flex;
	align-items: center;
	white-space: unset;
	position: relative;
	padding: 0 10px;
	background-color: rgba(216, 225, 245, .2);
	margin-bottom: 10px;
	border-radius: 8px;
	border: 1px solid rgb(216, 225, 245);
	height: 50px;
}

.file_label span.file_field_name {
	border-bottom: 1px dashed #4e64a0;
	display: inline-block;
	white-space: nowrap;
}

.file_del {
	display: none;
}

.file_label.filed .file_del {
	cursor: pointer;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 100%;
	text-align: center;
	background-image: url('../img/icon_close.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
}

.file_label input {
	display: block;
	width: 1px;
	height: 1px;
	opacity: 0;
	position: absolute;
}

/*
|==============================================
| Module actions
|==============================================
*/

.module_actions_holder_outer {
    position: fixed;
    top: 0;
    height: 1px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 100;
}

.module_actions_holder {
    border-bottom: 1px solid rgba(78, 100, 160, .4);
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /*opacity: .6;*/
    background-color: rgb(216, 225, 245);
    border-radius: 0 0 40px 40px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    height: 40px;
    padding: 0 25px;
}

.module_actions_holder:hover {
    opacity: 1;
}

.module_actions_item {
    text-align: center;
    margin: 0 14px;
    cursor: pointer;
    position: relative;
}

.module_actions_icon {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.module_actions_icon img {
    max-height: 100%;
}

.module_actions_indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: red;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module_actions_indicator:empty {
    display: none;
}

.module_actions_name {
    width: 100px;
    min-width: 100px;
    min-height: 100px;
    font-size: 12px;
    border-radius: 8px;
    left: -25px;
    position: absolute;
    opacity: 0;
    top: -2px;
    transform: translateY(-45px);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.module_actions_name img,
.module_actions_name svg {
    max-width: 40px;
    min-width: 40px;
    min-height: 40px;
    display: block;
    border: none;
    margin: 5px auto 10px;
}

.module_actions_item:hover .module_actions_icon {
    opacity: 1;
    transform: scale(1.1);
}

.module_actions_item:hover .module_actions_name {
    /*opacity: 1;*/
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 2px 15px rgba(75, 0, 189, .1);
    z-index: 150;
    padding: 10px;
    animation: module_actions_name .3s forwards;
}

@keyframes module_actions_name {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.breadcrumbs {
    display: flex;
    height: 20px;
    align-items: center;
    line-height: normal;
}

.breadcrumb {
    font-size: 12px;
}

.breadcrumb a {
    border-bottom: 1px dotted rgba(78, 100, 160, .6);
}

.breadcrumb img {
    width: 8px;
    display: inline-block;
    margin: 0 5px;
}



/*
|==============================================
| Login
|==============================================
*/

.login_form_holder {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login_error_holder {
    text-align: center;
    margin-bottom: 20px;
}

.login_form_holder input[type="text"],
.login_form_holder input[type="password"]
{
    width: 100%;
}

.login_form_holder .add_button {
    width: 100%;
    margin: auto;
}

.login_form_holder button {
    border-radius: 8px;
    border-bottom: 1px solid rgba(78, 100, 160, .4);
}

/*
|==============================================
| Access
|==============================================
*/

.access_create_form {
    min-width: 800px;
}

.access_options_holder {
    max-height: 300px;
}

.access_options_item {
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 10px;
    background-color: rgba(216, 225, 245, .2);
    border: 1px solid #d8e1f5;
}

.access_options_item .form_block_header {
    font-family: 'RobotoBold';
}

/*
|==============================================
| Users
|==============================================
*/

.user_create_form {
    min-width: 900px;
}

/*
|==============================================
| CONTENT
|==============================================
*/
.content_holder_outer {
    margin-bottom: 10px;
}

.content_holder {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 16px rgba(75, 0, 189, .08);
    border-bottom: 1px solid rgba(78, 100, 160, .4);
    overflow: hidden;
    height: 100%;
}

.content_holder_header {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    background-color: #d8e1f5;
}

.content_holder_inner {
    padding: 10px 20px;
}

.content_item {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.content_item:nth-child(even) {
    background-color: rgb(239, 245, 253);
}

.content_item_name {
    opacity: .8;
    font-size: 12px;
    /*margin: 5px 0;*/
}

.content_item_value {
    font-family: "RobotoMedium";
}


/*
|=============================================================
| SEARCH
|=============================================================
*/

.search_holder_form {
    min-width: 800px;
    min-height: 300px;
    background-color: #fff;
}

.search_select_holder {
    width: calc(100% - 160px);
}

.search_select_holder .select2-container {
    margin-bottom: 0;
}

.search_button_holder {
    width: 150px;
    margin-left: 10px;
}

.search_button_holder button {
    height: 50px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(78, 100, 160, .4);
}

/*
|=============================================================
| PAGINATION
|=============================================================
*/

.pagination_holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination {
    padding: 5px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.pagination:empty {
    margin: 0;
    padding: 0;
}

.page_item {
    cursor: pointer;
    width: 46px;
    min-width: 46px;
    height: 30px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid transparent;
    margin: 0 1px;
    border-radius: 8px;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.page_item:hover,
.page_item.active
{
    background-color: rgba(217, 226, 245, .4);
}

.page_item img {
    max-width: 16px;
}

/*
|=============================================================
| OTHER
|=============================================================
*/

.collapsed {
    cursor: pointer;
    white-space: nowrap;
    margin: 0 5px;
    overflow: hidden;
    position: relative;
    padding: 5px 15px;
    border-radius: 8px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 100%;
}

.collapsed:hover {
    background-color: rgba(216, 225, 245, .4);
}

.collapsed:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 13px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.collapsed:hover:after {
    /*transform: rotate(90deg);*/
    /*transform-origin: center;*/
}

.expanded {
    position: relative;
    overflow: hidden;
}

.expanded.active {
    height: auto!important;
}

.expander {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #fff;
    display: flex;
    transform: rotate(90deg);
    z-index: 12;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 8px 0;
    box-shadow: 0 0 6px rgba(75, 0, 189, .08);
}

.expander.active {
    /*transform: rotate(-90deg);*/
}

/*
|=============================================================
| NOTIFICATIONS
|=============================================================
*/

.notifications_holder {
    max-width: 600px;
    width: 600px;
}

.notification_item {
    padding: 10px 15px;
}

.notification_item:nth-child(even) {
    background-color: rgb(247, 247, 253);
}

.notification_item:nth-child(even) .notification_time {
    background-color: #fff;
}

.notification_header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px dotted rgba(78, 100, 160, .2);
    padding-bottom: 10px;
}

.notification_name {
    font-family: "RobotoMedium";
}

.notification_time {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    min-width: 80px;
    max-height: 80px;
    max-width: 80px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: #f7f7fd;
    text-align: center;
    border: 3px solid #fff;
    box-shadow:
        3px 3px 5px rgba(216, 225, 245, .95),
        -3px -3px 5px rgba(255, 255, 255, 0.1),
        inset 3px 3px 5px rgba(216, 225, 245, .95);
    font-size: 12px;
}

.notification_content {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
}

.notification_desc {
    flex-grow: 1;
    display: flex;
    margin-right: 20px;
    flex-direction: column;
    justify-content: center;
}

.notification_link {
    display: flex;
    align-items: center;
}

.notification_link a {
    font-size: 12px;
    border-bottom: 1px dotted;
    display: inline-block;
}

.read_notifications {

}

.dark_b {
    background-color: rgba(216, 225, 245, .2);
    border: 1px solid #d8e1f5;
}

.loader_holder_outer {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-animation: .5s all;
    animation: .5s all;
    display: none;
    z-index: 1500;
}
.loader_holder_outer.visible_loader {display: flex;opacity: 1;}
.loader_holder {
    display: flex;
    flex-wrap: wrap;
    width: 80px;
    height: 80px;
}
.lds-default {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-default div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 29px;
    left: 53px;
}
.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 18px;
    left: 50px;
}
.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 9px;
    left: 41px;
}
.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 6px;
    left: 29px;
}
.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 9px;
    left: 18px;
}
.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 18px;
    left: 9px;
}
.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 29px;
    left: 6px;
}
.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 41px;
    left: 9px;
}
.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 50px;
    left: 18px;
}
.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 53px;
    left: 29px;
}
.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 50px;
    left: 41px;
}
.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 41px;
    left: 50px;
}
@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}
