/* CORE START */
* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    /* display: flex; */
    /* flex: 1; */
    display: block;
    /* float: left; */
    position: relative;
    /* overflow: hidden; */
}

h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.05em;
    color: #1F2430;
}
h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #1F2430;
}
h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #1F2430;
}


h4.warning {
    color: #ff8a2d;
    font-size: 16px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    margin: 10px 0;
    background-color: #f8ebd7;
    margin: 10px 0;
    padding: 20px;
    border-radius: 6px;
}

h4.danger {
    color: #DA3838;
    font-size: 16px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    margin: 10px 0;
    background-color: #F8D7D7;
    margin: 10px 0;
    padding: 20px;
    border-radius: 6px;
}


input[type=text], input[type=search], input[type=email], input[type=password], input[type=number] { 
    border: 1px solid #E7E7ED;
    box-sizing: border-box;
    border-radius: 4px;
    height: 32px;
    width: 100%;
    margin: 4px 0px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #1C202F;
    padding: 9px 16px;
}

input[type=text]:invalid, input[type=search]:invalid, input[type=email]:invalid, input[type=password]:invalid, input[type=number]:invalid { 
    border: 1px solid #DA3838;
}

select:focus, textarea:focus, input[type=text]:focus, input[type=search]:focus, input[type=email]:focus, input[type=password]:focus, input[type=number]:focus, 
select:focus-visible, textarea:focus-visible, input[type=text]:focus-visible, input[type=search]:focus-visible, input[type=email]:focus-visible, input[type=password]:focus-visible, input[type=number]:focus-visible, 
select:hover, textarea:hover, input[type=text]:hover, input[type=search]:hover, input[type=email]:hover, input[type=password]:hover, input[type=number]:hover, 
select:target, textarea:target, input[type=text]:target, input[type=search]:target, input[type=email]:target, input[type=password]:target, input[type=number]:target {
    border: 1px solid #5AC891 !important;
    outline: none !important;
    /* box-shadow: 0 0 10px #719ECE; */
}

input[type=search]::-webkit-search-cancel-button{
    position:relative;
    right: 200px;
}


/* input[type='radio'] {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 0 0 2px #E7E7ED;
    margin: 10px;
}

input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%;
}
input[type='radio']:checked:before {
    background: #5AC891;
} */


/* checkbox */
input[type='checkbox'] { /* для элемента input c type="checkbox" */
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 24px;
    height: 24px;
}
  
input[type='checkbox']+label { /* для элемента label, связанного с input checkbox */
    display: inline-flex;
    align-items: center;
    user-select: none;
}

input[type='checkbox']+label::before { /* создание в label псевдоэлемента before со следующими стилями */
    content: '';
    display: inline-block;
    /* width: 1em; */
    /* height: 1em; */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    outline: none;
    /* box-shadow: 0 0 0 2px #E7E7ED; */
    margin: 10px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #e7e7ed;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px 15px;
}

input[type='checkbox']:not(:disabled):not(:checked)+label:hover::before { /* стили при наведении курсора на checkbox */
    /* border-color: #b3d7ff; */
}

input[type='checkbox']:not(:disabled):active+label::before { /* стили для активного чекбокса (при нажатии на него) */
    /* background-color: #5AC891; */
    /* border-color: #5AC891; */
}

input[type='checkbox']:focus+label::before { /* стили для чекбокса, находящегося в фокусе */
    /* box-shadow: 0 0 0 0.2rem #5AC891; */
}

input[type='checkbox']:focus:not(:checked)+label::before { /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
    border-color: 1px solid #e7e7ed;
}

input[type='checkbox']:checked+label::before { /* стили для чекбокса, находящегося в состоянии checked */
    border-color: #5AC891;
    background-color: #5AC891;
    width: 24px;
    height: 24px;
    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");
}

input[type='checkbox']:disabled+label::before { /* стили для чекбокса, находящегося в состоянии disabled */
    background-color: #e9ecef;
    border-color: #979797;

}
/* checkbox end */

/* radio */
input[type='radio'] { /* для элемента input c type="radio" */
    position: absolute;
    z-index: -1;
    opacity: 0;
}

input[type='radio']+label { /* для элемента label связанного с input radio */
    display: inline-flex;
    align-items: center;
    user-select: none;
}

input[type='radio']+label::before { /* создание в label псевдоэлемента  before со следующими стилями */
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #e7e7ed;
    border-radius: 50%;
    margin-right: 0.5em;
    /* padding: 3px; */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px;
}

input[type='radio']:not(:disabled):not(:checked)+label:hover::before { /* стили при наведении курсора на радио */
    border-color: #e7e7ed;
}

input[type='radio']:not(:disabled):active+label::before { /* стили для активной радиокнопки (при нажатии на неё) */
    /* background-color: #b3d7ff; */
    border-color: #e7e7ed;
}

input[type='radio']:focus+label::before { /* стили для радиокнопки, находящейся в фокусе */
    /* box-shadow: 0 0 0 0.2rem #5AC891; */
}

input[type='radio']:focus:not(:checked)+label::before { /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
    /* border-color: #80bdff; */
}

input[type='radio']:checked+label::before { /* стили для радиокнопки, находящейся в состоянии checked */
    border-color: #5AC891;
    border-width: 1px;
    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='%235AC891'/%3e%3c/svg%3e");
}

input[type='radio']:disabled+label::before { /* стили для радиокнопки, находящейся в состоянии disabled */
    background-color: #5AC891;
}
/* radio end */

input.small {
    height: 26px;
}

input[type="file"] {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

label.file {
    border: 1px dashed #E7E7ED;
    box-sizing: border-box;
    border-radius: 8px;
    height: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: underline;
    color: #5AC891;
    cursor: pointer;
}

select {
    border: 1px solid #E7E7ED;
    box-sizing: border-box;
    border-radius: 4px;
    height: 32px;
    width: 100%;
    margin: 4px 0px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #1C202F;
    padding: 6px 16px;
    padding-right: 35px;
    background: transparent;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    background-image: url("/icons/png/gray-dark/down.png");
    background-repeat: no-repeat;
    background-position: top 8.5px right 12px;
    background-size: 16px;
}

textarea {
    border: 1px solid #E7E7ED;
    box-sizing: border-box;
    border-radius: 4px;
    width: 100%;
    margin: 4px 0px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #1C202F;
    padding: 9px 16px;
    /* resize: none; */
}


/* CORE END */






/* COMPONENTS START */

#content {
    flex: 1;
    position: relative;
    display: block;
    /* float: left; */
    /* margin-left: 200px; */
    overflow: auto;
    height: 100vh;
}

.divider {
    width: 100%;
    background: #666D7A;
    border-radius: 2px;
    height: 2px;
}

.pagination {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;
}

.pagination .btn.disable, .pagination button[disabled].btn  {
    background: #F8FAFB;
    border: 1px solid #F8FAFB;
    color: #A4A9AA;
}

/* .pagination > button, .pagination > input {
    flex: 1 1 auto;

} */

/* .radio-btn-wrapper { */
    /* display: flex; */
    /* align-items: center; */
    /* gap: 20px; */
/* } */
/* .radio-btn-wrapper label { */
    /* display: flex; */
    /* align-items: center; */
/* } */

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.filter-wrapper .message {
    position: absolute;
    bottom: -10px;
    left: 5px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.05em;
    color: #878C96;   
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.tags-wrapper > img {
    width: 18px;
    height: 13px;
    cursor: pointer;
}

.date-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #5AC891;
    border-radius: 2px;
    /* margin: 0px 8px; */
    padding: 2px 12px;
    /* height: 24px; */
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
}
.date-tag > .label {
    color: #5AC891;
}
.date-tag img {
    width: 9px;
    height: 9px;
    margin-left: 8px;
}


.permission-tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 3px 12px;
    background: #FFFFFF;
    border: 1px solid #5AC891;
    box-sizing: border-box;
    border-radius: 2px;
    margin: 0px 8px;
    cursor: pointer;
}

.permission-tag.active {
    background-color: #5AC891;
    color: white;
}
.permission-tag img {
    width: 9px;
    height: 9px;
    margin-left: 8px;
}




.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 21px;

    box-sizing: border-box;
    border-radius: 4px;


    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #1C202F;

    cursor: pointer;
}
.btn.default {
    background-color: transparent;
    color: #1C202F;
    border: 1px solid #E7E7ED;
}
.btn.success {
    background-color: #5AC891;
    color: #FFFFFF;
    border: 1px solid #5AC891;
}
.btn.primary {
    background-color: #FFFFFF;
    color: #FFFFFF;
    border: 1px solid #5AC891;
}
.btn.danger {
    background-color: #DA3838;
    color: #FFFFFF;
    border: 1px solid #DA3838;
}
.btn.small {
    height: 26px;
    padding: 10px 15px;
}
.btn.disable {
    background: #F8FAFB;
    border: 1px solid #F8FAFB;
    color: #A4A9AA;
}
.btn img {
    width: 16px;
    height: 16px;
}

button.icon {
    border: none;
    background-color: transparent;
}
button.icon > img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.table {
    background: #FFFFFF;
    border: 1px solid #E7E7ED;
    border-collapse:collapse;
    box-sizing: border-box;
    border-radius: 4px;
    border-spacing: 0px;
    width: 100%;
}

table.table tr.disabled {
    background-color: #CED3DA;
}

table.table tr.disabled td > img {
    margin-bottom: -4px;
    margin-right: 5px;
    width: 18px;
    height: 18px;
}

table.table tr.editedrow {
    background-color: #f8ebd7;
}
table.table tr th {
    color: #878C96;
    font-size: 16px;
    line-height: 24px;
    padding: 12px;
    font-weight: 500;
    font-family: Roboto;
    text-align: center;
    border-collapse:collapse;
    border: 1px solid #E7E7ED;
    box-sizing: border-box;
}
table.table tr td {
    color: #1C202F;
    font-size: 14px;
    font-weight: 400;
    font-family: Roboto;
    vertical-align: center;
    border-collapse:collapse;
    border: 1px solid #E7E7ED;
    padding: 12px;
}
table.table td.center {
    text-align: center;
}
table.table td.right {
    text-align: right;
}
table.table tr:hover {
    background-color: #F8FAFB;
}
table.table tr.head:hover {
    background-color: transparent;
}
/* table.table tr td > img {
    width: 12px;
    height: 12px;
    cursor: pointer;
    margin: 2px;
} */


.modal-wrapper {
    background: #E7E7ED;
    opacity: 0.5;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.modal {
    padding: 50px 60px;
    background: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 8px 16px rgba(106, 117, 131, 0.2);
    border-radius: 8px;
    min-width: 50%;
}
.modal .title {
    text-align: center;
    margin-bottom: 20px
}
.modal .wrapper-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.modal .actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.modal .actions input {
    margin: 10px 15px 0 15px;
}
.modal .icon-close {
    text-align: center;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.modal .icon-close img {
    width: 24px;
    height: 24px;
}

.modal .content {
    overflow-y: auto;
    min-height: 250px;
    overflow-y: auto;
    max-height: 65vh;
    padding-right: 10px;
}

.modal .content.multi-coluns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.modal .content.multi-coluns > * {
    flex: 1;
}

.modal a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-decoration-line: underline;
    color: #5AC891;
}
/* .modal input[type=text] {
    border: 1px solid #E7E7ED;
    box-sizing: border-box;
    border-radius: 4px;
    height: 39px;
    width: 100%;
    margin: 4px 0px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #1C202F;
    padding: 9px 16px;
}
.modal select {
    border: 1px solid #E7E7ED;
    box-sizing: border-box;
    border-radius: 4px;
    height: 39px;
    width: 100%;
    margin: 4px 0px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #1C202F;
    padding: 9px 16px;
    background: transparent;
    -moz-appearance:none;
    -webkit-appearance:none;
    appearance:none;
    background-image: url("/icons/png/gray-dark/down.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 55%;
} */
.modal .label {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #1C202F;
    flex-grow: 0;
    margin: 4px 0px;    
    display: inline-block;
}
.modal .bl {
    margin-bottom: 25px;
}

.modal .message {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.05em;
    color: #878C96;   
}

.modal .label.error, .modal .message.error {
    color: #DA3838;
}

.modal input.error {
    border: 1px solid #DA3838;
    color: #DA3838;
}

.modal .full-field-marker.label, .modal input.full-field-marker, .modal .full-field-marker.message, .modal textarea.full-field-marker, .modal select.full-field-marker, .modal a.full-field-marker  {
    display: none;
}
.modal .short-field-marker {
    display: inline-block;
}


.form {
    display: flex;
    flex-direction: column;
}

.form .row {
    gap: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form .col {
    flex: 1;
}

.form .label {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #1C202F;
    flex-grow: 0;
    margin: 4px 0px;    
}
.form .message {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.05em;
    color: #878C96;   
}

.form .label.error, .form .message.error {
    color: #DA3838;
}

.form input.error {
    border: 1px solid #DA3838;
    color: #DA3838;
}

.form .actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.form .actions input {
    margin: 0 15px 0 15px;
}


/* COMPONENTS END */


.menu {
    flex: 0 0 224px;
    min-height: 100vh;
    background-color: #1F2633;
    position: relative;
    float: left;
}

.menu.mini {
    flex: 0 0 100px;
}

.menu.mini .nav > a {
    justify-content: center;
}

.menu.mini .nav.sub-nav {
    padding-left: 0;
}

.menu select {
    color: #666D7A;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
}

.menu > .logo {
    color: rgb(223, 124, 124);
    font-size: 45px;
    text-align: center;
    padding-top: 40px;
}

.menu > .nav {
    color: white;
    padding-top: 40px;
    padding-left: 24px;
    padding-right: 28px;
    padding-bottom: 50px;
}

.menu .nav.sub-nav {
    padding-left: 5px;
}

.menu .nav.sub-nav .nav.sub-nav {
    padding-left: 5px;
}

.menu .nav .divider {
    margin: 24px 0px;
}

.menu > .nav a {
    text-decoration: none;
    height: 32px;
    margin-bottom: 12px;
    padding: 2px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menu > .nav a .name {
    color: #666D7A;
    list-style-type: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    font-family: Roboto;
    margin-left: 12px;
}

.menu > .nav a img {
    width: 24px;
    height: 24px;
}

.menu .nav.sub-nav a {
    height: 18px;
}

.menu .nav.sub-nav a .name {
    color: #666D7A;
    list-style-type: none;
    font-size: 14px;
    line-height: 18px;
}

.menu .nav.sub-nav a img {
    width: 18px;
    height: 18px;
}

.menu .nav.sub-nav .nav.sub-nav a img {
    width: 12px;
    height: 12px;
}

.menu > .nav a .name.active {
    color: white;
}

.menu .user {
    position: absolute;
    bottom: 10px;
    /* width: 100%; */
}
.menu .user .name {
    color: #666D7A;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    font-family: Roboto;
}

.menu .user .email {
    color: #666D7A;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    font-family: Roboto;
    margin-top: 10px;
}



.page {
    padding: 60px 53px;
}

.page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}

.page .header .left-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page .header .right-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page .icon-actions {
    /* padding: 0 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer; */
}

.page .icon-actions img {
    width: 14px;
    height: 14px;
    margin: 0px 5px;
    cursor: pointer;
}

.page .actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 50px;
}

.page .message {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.05em;
    color: #878C96;   
}

.page .label {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #1C202F;
    flex-grow: 0;
    margin: 4px 0px;    
    display: inline-block;
}

.page .bl {
    margin-bottom: 25px;
}



/* PAGES START */
.datelist-page {
    padding: 60px 53px;
}

.datelist-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}



/* .pbxs-page {
    padding: 60px 53px;
} */

/* .pbxs-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
} */
.pbxs-page > .header > .left-block {
    display: flex;
    align-items: center;
}
.pbxs-page > .header > .left-block > input {
    width: 300px;
    margin-left: 60px;
}


/* .pbxs-page td.icon-actions {
    padding: 0 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
}

.pbxs-page td.icon-actions img {
    width: 16px;
    height: 16px;
} */




.users-page {
    padding: 60px 53px;
}
.users-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}
.users-page-header .left-block {
    display: flex;
    align-items: center;
}
.users-page-header .left-block > input {
    width: 300px;
    margin-left: 60px;
}
/* .users-page td.icon-actions {} */
.users-page td.icon-actions img {
    width: 14px;
    height: 14px;
    margin: 0px 10px;
    cursor: pointer;
}
/* .users-page .permission-tag img {
    width: 9px;
    height: 9px;
    margin-left: 8px;
} */
/* .users-page .tags-wrapper > img {
    width: 18px;
    height: 13px;
    cursor: pointer;
} */

.users-page .tab1r .email.active {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    color: #5AC891;
}

.users-edit-page.modal {
    width: 400px;
}

.users-new-page.modal {
    width: 400px;
}



.user-edit-page a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-decoration-line: underline;
    color: #5AC891;
}


.account-page {
    padding: 60px 53px;
}
.account-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}


/* .account-page {
    width: 500px;
    max-height: 700px;
    overflow-y: scroll;
} */
.account-page .label {
    margin-top: 25px;
    display: inline-block;
}
.account-page .full-field-marker.label, .account-page input.full-field-marker, .account-page .full-field-marker.message, .account-page textarea.full-field-marker, .account-page select.full-field-marker, .account-page a.full-field-marker, .account-page div.full-field-marker {
    display: none;
}
.account-page .short-field-marker {
    display: inline-block;
}



/* .datelist-page .icon-actions {} */
.datelist-page .icon-actions img {
    width: 14px;
    height: 14px;
    margin: 0px 5px;
    cursor: pointer;
}


.blacklist-page {
    padding: 60px 53px;
}
.blacklist-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}
.blacklist-page-header .left-block {
    display: flex;
    align-items: center;
}
.blacklist-page-header .left-block > input {
    width: 300px;
    margin-left: 60px;
}
/* .blacklist-page .icon-actions { */
    /* display: flex; */
    /* justify-content: space-around; */
    /* align-items: center; */
    /* cursor: pointer; */
/* } */
.blacklist-page .icon-actions img {
    width: 14px;
    height: 14px;
    margin: 0px 5px;
    cursor: pointer;
}

.billing-page span.icon-actions {
    padding-left: 10px;
}
.billing-page span.icon-actions img {
    margin: -3px 1px;
}

.online-calls-page .icons img {
    width: 14px;
    height: 14px;
}
/* PAGES END */









/* EXPERIMENTAL */
/* 
.home-header {
    background-color: #F8FAFB;
    height: 200px;
    padding-left: 55px;
    padding-right: 55px;
}

.home-header  > .top {
    padding-top: 40px;
}

.home-header  > .second {
    padding-top: 64px;
}

.home-header > div {
    display: flex;
    flex: 1;
    justify-content: space-between;
}

.home-header > .top > .name {
    color: #1F2430;
    font-size: 48px;
    font-family: Roboto;
    font-weight: 900;
    line-height: 56px;
}

.home-header > .top > .support  {
    display: flex;
    justify-content: space-between;
}

.home-header > .top > .support  > .icon {
    height: 48px;
    width: 48px;
    margin-right: 16px;
}

.home-header > .top > .support  > .text {
    color: #1C202F;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 500;
    line-height: 26px;
}

.home-header > .second {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    height: 38px;
}

.home-header > .second > .nav {
    display: flex;
    align-items: flex-start;
} */


/* .home-header > .second > .nav > .name {
    color: #1C202F;
    list-style-type: none;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    font-family: Roboto;
    margin-top: 4px;
    margin-left: 16px;
    padding-bottom: 17px;
    position: relative;
}

.home-header > .second > .nav > .icon > img {
    width: 24px;
    height: 24px;
} */


