/* vars */
:root{
    --color-primary: #BF2D49;
    --color-primary-tone-2: #D00E46;
    --color-secondary: #F2F2F2;
    --color-tertiary:  #FFFFFF;
}
/* vars */
/* animate */
@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}
/* animate */

.color-gray{
    color: #8e9192;
}

.position-relative{
    position: relative;
}
.d-flex{
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.align-items-start{
    align-items: flex-start;
}
.flex-column{
    flex-direction: column;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.align-start {
    align-items: start;
}

.g-16{
    gap: 16px;
}

.ml-auto{
    margin-left: auto;
}

.mt-16{
    margin-top: 16px;
}
.mt-24{
    margin-top: 24px;
}

.mb-16{
    margin-bottom: 16px;
}
.mb-24{
    margin-bottom: 24px;
}
.mb-32{
    margin-bottom: 32px;
}

.w-100 {
    width: 100%;
}

.custom-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 16px 24px;
    outline: none;
    background-color: none;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    transition: .3s;
    border-radius: 8px;
}
.custom-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}
.custom-btn.small{
    font-size: 15px;
    padding: 9px 24px;
}
.custom-btn.extra-small{
    font-size: 13px;
    padding: 6px 12px;
}
.custom-btn:hover,
.custom-btn:active,
.custom-btn:focus,
.custom-btn.active{
    color: #FFF;
    background-color: var(--blue-800);
}

.custom-btn:hover .custom-btn-tooltip {
    display: block;
}
.custom-btn:disabled,
.custom-btn.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.custom-btn-primary{
    color: #FFF;
    background-color:  var(--color-primary);
}
.custom-btn-secondary{
    color: #000;
    background-color:  var(--color-secondary);
}
.custom-btn-tertiary{
    color: #000;
    background-color:  var(--color-tertiary);
}

.custom-btn-icon-solo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-btn-icon-solo .custom-btn-icon{
    max-width: 16px;
    max-height: 16px;
}
.custom-btn-icon-left,
.custom-btn-icon-right,
.custom-btn-icon{
    display: inline-block;
}
.custom-btn-icon svg,
.custom-btn-icon img{
    min-width: 16px;
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.custom-btn-icon-left{
    margin-right: 4px;
}
.custom-btn-icon-right{
    margin-left: 4px;
}
.custom-btn-icon-solo {
    padding: 18px;
}
.custom-btn-icon-solo svg {
    display: block;
}
.custom-btn-with-counts{
    position: relative;
}
.custom-btn-with-counts-block{
    position: absolute;
    top: -14px;
    right: -14px;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    border-radius: 14px;
    border: 2px solid #FFF;
    background: var(--color-primary);
    padding: 6px 8px;
    min-height: 20px;
}
.custom-btn-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;

    display: none;
    padding: 8px 16px;
    font: inherit;
    color: #000000;

    background-color: #F2F2F2;
    border-radius: 5px;

    transform: translateX(-50%);
}

.custom-btn-tooltip::before {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";

    width: 0px;
    height: 0px;

    border-style: solid;
    border-width: 0 7px 10px 7px;
    border-color: transparent transparent #F2F2F2 transparent;

    transform: translateX(-50%) rotate(180deg) ;
}

.custom-input{
    width: 100%;
    color: black;
    font-size: 17px;
    padding: 16px;
    border: 1px solid #D9D8D8;
    outline: none;
    transition: .3s;
}
.custom-input:not(:disabled):hover,
.custom-input:focus{
    border: 1px solid var(--color-primary);
}

.custom-input::placeholder{
    color: #808080;
}

.custom-input-block{
    position: relative;
}
.custom-input-icon{
    position: absolute;
    top: 18px;
    width: 20px;
    height: 20px;
    z-index: 1;
}
.custom-input-icon img,
.custom-input-icon svg{
    object-fit: contain;
    width: 20px;
    height: 20px;
}
.custom-input-icon-left .custom-input-icon{
    left: 16px;
}
.custom-input-icon-left input,
.custom-input-icon-left textarea{
    padding-left: 42px;
}
.custom-input-icon-right .custom-input-icon{
    right: 16px;
}
.custom-input-icon-right input,
.custom-input-icon-right textarea{
    padding-right: 42px;
}

.custom-input.error{
    border: 1px solid #D00E46;
    padding-right: 42px;
}
.custom-input-block.error:after,
.custom-input-block.loading:after,
.custom-input-block.ok:after{
    position: absolute;
    content: ' ';
    display: block;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}
.custom-input-block.error.custom-input-icon-right .custom-input-icon,
.custom-input-block.loading.custom-input-icon-right .custom-input-icon,
.custom-input-block.ok.custom-input-icon-right .custom-input-icon{
    display: none;
}
.custom-input-block.error:after{
    background-image: url('../img/error.svg');
}
.custom-input-block.loading:after{
    -webkit-animation: rotating 3.5s linear infinite;
    background-image: url('../img/loading.svg');
}
.custom-input-block.ok:after{
    background-image: url('../img/ok.svg');
}

.custom-input-block label.error,
.custom-textarea-block label.error {
    margin-top: 8px;
    display: block;
    color: #DA0F0F;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 11px;
}

.custom-input-label{
    position: absolute;
    top: 18px;
    left: 16px;
    color: #808080;
    font-size: 17px;
    transition: .3s;
    font-weight: 400;
}
.custom-input-icon-left .custom-input-label{
    left: 42px;
}
.custom-input-label.active{
    font-size: 13px;
    top: 3px;
    left: 16px;
}
.custom-input-icon-left .custom-input-label.active{
    left: 42px;
}

.title-first,
.title-second,
.title-tertiary,
.title-fourthy{
    color:  #000;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}
.title-first{
    font-size: 24px;
}
.title-second{
    font-size: 22px;
}
.title-tertiary{
    font-size: 20px;
}
.title-fourthy{
    font-size: 18px;
}

.status{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    color: #FFF;
    font-size: 17px;
    background-color: gray;
}
.status::before{
    margin-right: 6px;
}

.status.small{
    font-size: 15px;
}
.status.extra-small{
    font-size: 13px;
}
.status.small::before{
    margin-right: 4px;
}
.status.extra-small::before{
    margin-right: 2px;
}

.status-new::before,
.status-inwork::before,
.status-done::before,
.status-accepted::before,
.status-canceled::before {
    display: block;
    content: ' ';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}
.status-new{
    background-color: #808080;
}
.status-new::before{
    background-image: url('../img/icon-new.svg');
}
.status-inwork{
    background-color: #FA0;
}
.status-inwork::before{
    background-image: url('../img/icon-inwork.svg');
}
.status-done{
    background-color: #BF2D49;
}
.status-done::before{
    background-image: url('../img/icon-done.svg');
}
.status-accepted{
    background-color: #1BAE03;
}
.status-accepted::before{
    background-image: url('../img/icon-accepted.svg');
}
.status-canceled{
    background-color: #d3d3d3;
}
.status-canceled::before{
    color: white;
    background-image: url('../img/icon-cancel.svg');
}

/* common styles radio & checkbox */
.custom-radio,
.custom-checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.custom-radio input,
.custom-checkbox input{
    opacity: 0;
    width: 0;
    height: 0;
    flex-shrink: 0;
}
.custom-radio label,
.custom-checkbox label {
    overflow: hidden;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 32px;
    position: relative;
}
.custom-radio input:not(:disabled)~label,
.custom-checkbox input:not(:disabled)~label {
    cursor: pointer;
}
.custom-radio label::before {
    content: '';
    position: absolute;
    left: 0;
    border-radius: 2px;
    width: 24px;
    height: 24px;
    align-items: center;
    transition: all .3s;
    background-image: url('../img/radio.svg');
}
.custom-checkbox label {
    color: rgba(27, 31, 59, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: "Roboto Flex", sans-serif;
}
.custom-checkbox label::before {
    content: '';
    transition: all .3s;
    width: 18px;
    height: 18px;
    background-color: rgba(234, 238, 255, 1);
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
/* radio backs */
.custom-radio:hover label::before,
.custom-radio input:focus~label::before {
    background-image: url('../img/radio-hover.svg');
}
.custom-radio input:checked~label::before {
    background-image: url('../img/radio-checked.svg');
}
.custom-radio:hover input:checked~label::before,
.custom-radio:hover input:focus~label::before {
    background-image: url('../img/radio-checked-hover.svg');
}
.custom-radio input.error~label::before {
    background-image: url('../img/radio-error.svg');
}
.custom-radio input.error:checked~label::before {
    background-image: url('../img/radio-checked-error.svg');
}
.custom-radio input.error~label {
    color: var(--color-primary-tone-2);
}
.custom-radio input:disabled~label::before{
    background-image: url('../img/radio-disabled.svg');
}
.custom-radio input:disabled:checked~label::before {
    background-image: url('../img/radio-checked-disabled.svg');
}
/* checkbox backs */
/*.custom-checkbox label:hover::before,*/
/*.custom-checkbox input:focus~label::before {*/
/*    background-image: url('../img/checkbox-hover.svg');*/
/*}*/
.custom-checkbox input:checked~label::before {
    /*background-image: url('../img/checkbox-checked.svg');*/
    content: '✓';
    color: white;
    font-size: 14px;
    background-color: rgb(24, 47, 138);
}
/*.custom-checkbox:hover input:checked~label::before,*/
/*.custom-checkbox:hover input:focus:checked~label::before {*/
/*    background-image: url('../img/checkbox-checked-hover.svg');*/
/*}*/
.custom-checkbox input.error~label::before {
    background-image: url('../img/checkbox-error.svg');
}
.custom-checkbox input.error:checked~label::before {
    background-image: url('../img/checkbox-checked-error.svg');
}
.custom-checkbox input.error~label {
    color: var(--color-primary-tone-2);
}
.custom-checkbox input:disabled~label::before{
    background-image: url('../img/checkbox-disabled.svg');
}
.custom-checkbox input:disabled:checked~label::before {
    background-image: url('../img/checkbox-checked-disabled.svg');
}
.custom-checkbox input:disabled~label {
    color: #d3d3d3;
}

/*toggler*/
.toggle-control {
  display: block;
  position: relative;
  padding-left: 4.8rem;
  margin-bottom: 2.4rem;
  cursor: pointer;
  font-size: 1.375rem;
  user-select: none;
}
.toggle-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.toggle-control input:checked ~ .control {
  background-color: var(--color-primary-tone-2);
  border: 1px solid transparent;
}
.toggle-control input:checked ~ .control:after {
    left: 2.8rem;
    background-color: white;
}
/* disabled */
.toggle-control input:disabled ~ .control {
    border-radius: 24px;
    border: 1px solid #D9D8D8;
    background-color: #F2F2F2;
}
.toggle-control input:checked:disabled  ~ .control {
    background-color: #D00E46;
    opacity: 0.4;
}
.toggle-control input:disabled:not(:checked) ~ .control::after {
    background-color: #808080;
}
/* hover & error*/
.toggle-control input:hover:not(:disabled) ~ .control,
.toggle-control input.error ~ .control{
    border: 1px solid #D00E46;
}
.toggle-control .control {
  position: absolute;
  top: 0;
  left: 0;
  height: 3.125rem;
  max-height: 24px;
  width: 6.25rem;
  max-width: 48px;
  border-radius: 1.563rem;
  background-color: white;
  border: 1px solid #D9D8D8;
  transition: background-color 0.15s ease-in;
}
.toggle-control .control:after {
  content: "";
  position: absolute;
  left: 0.313rem;
  top: 0.3rem;
  width: 2.5rem;
  max-width: 16px;
  height: 2.5rem;
  max-height: 16px;
  border-radius: 1.563rem;
  background-color: black;
  transition: left 0.15s ease-in;
}
/*toggler*/

.tabs-triggers-list{
    display: flex;
    gap: 24px;
}
.tabs-triggers-list-item{
    padding: 6px 0px;
    border: 2px solid transparent;
    transition: .3s;
    cursor: pointer;
}
.tabs-triggers-list-item-title{
    color: #808080;
    font-size: 18px;
    font-weight: 600;
    line-height: 125%;
    transition: .3s;
    text-decoration: none !important;
}
.tabs-triggers-list-item:not(.active):hover .tabs-triggers-list-item-title {
    color: var(--color-primary);
}
.tabs-triggers-list-item.active{
    border-bottom: 2px solid var(--color-primary);
    cursor: default;
    pointer-events: none;
}
.tabs-triggers-list-item.active .tabs-triggers-list-item-title{
    color: black;
}
.tabs-content-block{
    display: none;
}
.tabs-content-block.active{
    display: block;
}

.custom-table-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
}
.custom-table {
    color: #000;
    font-size: 17px;
    font-style: normal;
    line-height: 20px;
    width: 100%;
}
.custom-table thead th {
    font-weight: 600;
    vertical-align: middle;
}
.custom-table tbody td {
    vertical-align: baseline;
}
.custom-table thead th,
.custom-table tbody td {
    padding: 14px 16px !important;
    border: 1px solid #D9D8D8;
}
.custom-table tbody td a{
    color: var(--color-primary-tone-2);
    font-size: 17px;
    line-height: 20px;
    text-decoration-line: underline;
}
.custom-table-img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.custom-table-pagination {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 10px;
}
.custom-table-pagination .custom-table-pagination-total {
    font-size: 17px;
    color: #8e9192;
    font-weight: 300;
}
.custom-table-pagination .custom-table-pagination-navigation .custom-btn.disabled {
    opacity: 1;
}
.custom-table-pagination .custom-table-pagination-count-selector {
    min-width: 70px;
}
.custom-table-pagination .custom-table-pagination-count-selector * {
    font-size: 17px;
}

.popup{
    display: none;
    position: absolute;
    top: -45px;
    right: 0;
    border-radius: 5px;
    background-color: #FFF;
    z-index: 11;
    white-space: nowrap;
    padding: 6px 10px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
    color: #a10036;
    transition: visibility 0s, opacity .5s linear;
}
.popup.active{
    display: block;
}

.modalClick{
    cursor: pointer;
}
.modal-bodyCustom{
    display: none;
    padding: 20px 30px;
    width: 100%;
}
.modal-bodyCustom.max-width-640{
    max-width: 640px;
}
.modal-bodyCustom.max-width-953{
    max-width: 953px;
}
.modal-bodyCustom.max-width-969{
    max-width: 969px;
}

.custom-select-block .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100% !important;
}

.paggination-container{
    display: flex;
    align-items: center;
    gap: 24px;
}
.paggination-list{
    display: flex;
}
.paggination-arrow {
    padding: 12px;
}
.paggination-arrow svg{
    width: 35px;
    height: 35px;
}
.custom-dashboard-block{
    background: #FFF;
    padding: 32px;
    margin-bottom: 40px;
}

.file-upload {
    position: relative;

    display: flex;
    min-width: 152px;
    column-gap: 10px;
}

input[type="file"].file-upload-input {
    display: none;
}

.file-upload-label {
    position: relative;

    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 32px;

    font-size: 1.3rem;
    font-weight: 400;

    cursor: pointer;
}

.file-upload-label::before {
    position: absolute;
    top: 50%;
    right: 12px;
    content: "";
    z-index: 1;

    width: 16px;
    height: 16px;

    background-image: url("./../img/icon-attachment.svg");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;

    transform: translateY(-50%);
}

.file-upload-tag-container {
    display: flex;
    column-gap: 10px;
}

.file-upload-tag {
    display: flex;
    align-items: center;
    column-gap: 4px;

    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;

    font-size: 1.3rem;
    font-weight: 400;

    background-color: var(--color-secondary);
}

.file-upload-tag-btn {
    width: 16px;
    height: 16px;
    padding: 0;

    font-size: 0;

    background-color: transparent;
    background-image: url("./../img/icon-close.svg");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
}

.custom-textarea-block {
    position: relative;
    width: 100%;
}

.custom-textarea {
    display: block;
    width: 100%;
    padding: 23px 16px;

    font-size: 17px;
    color: black;

    border: 1px solid #D9D8D8;
    outline: none;

    resize: none;
}

.custom-textarea:not(:disabled):hover,
.custom-textarea:focus{
    border-color: var(--color-primary);
}

.custom-textarea.error {
    border-color: #D00E46;
}

.custom-textarea-block.error:after {
    position: absolute;
    top: 16px;
    right: 16px;
    content: ' ';

    display: block;
    width: 20px;
    height: 20px;

    background-image: url('../img/error.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.custom-textarea-label {
    position: absolute;
    top: 16px;
    left: 16px;

    color: #808080;
    font-size: 17px;
    font-weight: 400;

    transition: .3s;
}

.custom-select.error:after {
    position: absolute;
    top: 16px;
    right: 16px;
    content: ' ';

    display: block;
    width: 20px;
    height: 20px;

    background-image: url('../img/error.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

.custom-select label.error {
    margin-top: 68px;
    display: block;
    color: #DA0F0F;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 11px;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 16px !important;
}

.custom-select.error .btn-default {
    border-color: #D00E46;
}

.custom-select .dropdown-toggle {
    padding: 16px 25px 16px 16px;
    height: fit-content !important;
    font-size: 17px;
}

#button-srollup {
    display: none;
    background-color: #a10036;
    position: fixed;
    right: 18px;
    bottom: 80px;
    cursor: pointer;
    z-index: 10;
    transition: all .2s ease;
    opacity: 0.5;
}

#button-srollup {
    opacity: 1;
}


.button-dashboard-scrollup {
    width: 40px;
    height: 40px;
    display: none;
    position: fixed;
    right: 60px;
    bottom: 80px;
    color: #fff;
    stroke: #fff;
    text-align: center;
    background: var(--color-primary);
    cursor: pointer;
    z-index: 10;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    opacity: 0.5;
}

.dashboard-scrollup-icon {
    width: 20px;
    height: 23px;
    display: inline-block;
    vertical-align: top;
    margin-top: 9px
}

.button-dashboard-scrollup:hover {
    opacity: 1;
}

.button-dashboard-scrollup:active {
    opacity: 0.7;
}

/* Scrollbar */

/* For Firefox */
#dashboard-content * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary-tone-2) rgba(208, 14, 70, 0.2);
}

/* For Chrome, MS Edge, Safari */
#dashboard-content *::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}
#dashboard-content *::-webkit-scrollbar-track {
    background: rgba(208, 14, 70, 0.2);
    border-radius: 10px;
}
#dashboard-content *::-webkit-scrollbar-thumb {
    background-color: var(--color-primary-tone-2);
    border-radius: 10px;
}

#dashboard-content * {
    box-sizing: border-box;
}

.custom-sorted-th {
    cursor: pointer;
    position: relative;
    transition: all 0.1s linear;
}
.custom-sorted-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
}
.custom-sorted-sign::after {
    position: absolute;
    top: 0;
    right: 3px;
    bottom: 0;
    content: '▲ ▼';
    font-size: 14px;
    line-height: 15px;
    display: flex;
    align-items: center;
    width: min-content;
    transition: all 0.1s linear;
    opacity: 0.5;
}
.custom-sorted-th:hover .custom-sorted-sign::after {
    opacity: 1;
}
.custom-sorted-th:hover,
.custom-sorted-th--asc,
.custom-sorted-th--desc {
    border-bottom: 1px solid black !important;
}
.custom-sorted-th--asc .custom-sorted-sign::after {
    content: '▲';
    opacity: 1;
}
.custom-sorted-th--desc .custom-sorted-sign::after {
    content: '▼';
    opacity: 1;
}

.custom-rating {
	width: fit-content;
    position: relative;
}
.custom-rating > input {
	width: 0;
    height: 0;
    pointer-events: none;
}
.custom-rating:not(:checked) > label {
	float: right;
	width: 42px;
	padding: 0;
	cursor: pointer;
	font-size: 32px;
	line-height: 32px;
	color: lightgrey;
	text-shadow: 1px 1px #bbb;
}
.custom-rating:not(:checked) > label:before {
	content: '★';
}
.custom-rating > input:checked ~ label {
	color: gold;
	text-shadow: 1px 1px #c60;
}
.custom-rating:not(:checked) > label:not(#rating-error):hover,
.custom-rating:not(:checked) > label:not(#rating-error):hover ~ label {
	color: gold;
}
.custom-rating > input:checked + label:not(#rating-error):hover,
.custom-rating > input:checked + label:not(#rating-error):hover ~ label,
.custom-rating > input:checked ~ label:not(#rating-error):hover,
.custom-rating > input:checked ~ label:not(#rating-error):hover ~ label,
.custom-rating > label:not(#rating-error):hover ~ input:checked ~ label {
	color: gold;
	text-shadow: 1px 1px goldenrod;
}
.custom-rating > label:active {
	position: relative;
}

.custom-rating #rating-error {
	position: absolute;
    top: 100%;
    padding-top: 8px;
    display: block;
    color: #DA0F0F;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 11px;
    float: none;
    text-shadow: none;
    text-wrap: nowrap;
    cursor: default;
}

.custom-rating #rating-error:before {
    content: none;
}

.custom-filters {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}
.custom-filters-filter-list {
    display: flex;
    flex-wrap: wrap;
    margin: -3px -3px 0;
    justify-content: stretch;
}
.custom-filters .custom-select-block,
.custom-filters .custom-input-block {
    min-height: 58px;
    padding: 3px;
    flex: 1;
}
.custom-filters .custom-input {
    padding: 14px 12px;
}
.custom-filters .custom-input-label:not(.active) {
    top: 21px;
    font-size: 17px;
}
.custom-filters .custom-input,
.custom-filters .custom-select,
.custom-filters .custom-select-block .btn,
.custom-table-pagination-count-selector .custom-select .btn {
    height: 100%;
}
.custom-filters-button-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 15px;
}
.custom-filters-button-list button {
    margin-bottom: 0;
}
.custom-filter-button-content {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    line-height: 15px;
    padding: 6px 0;
}
.custom-filter-button-content i {
    position: relative;
    top: -1px;
}

.custom-password-input input {
    padding-right: 30px !important;
}
.custom-password-input .pass-toggler {
    cursor: pointer;
    position: absolute;
    right: 8px;
    background-image: url('../img/eye.svg');
    transition: all .3s;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}
.custom-password-input.active .pass-toggler {
    background-image: url('../img/eye-crossed.svg');
}
.custom-password-input .pass-toggler:hover {
    opacity: 1;
}

@media (max-width: 1240px) {
    .custom-filters .custom-select-block,
    .custom-filters .custom-input-block {
        flex: 0 1 24%;
    }
}

@media (max-width: 992px) {
    .custom-filters .custom-select-block,
    .custom-filters .custom-input-block {
        flex: 0 1 33.33%;
    }
}

@media (max-width: 768px) {
    .custom-filters .custom-select-block,
    .custom-filters .custom-input-block {
    flex: 0 1 50%;
    }

    .paggination-container {
        flex-wrap: wrap;
    }

    .custom-dashboard-block{
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .custom-filters .custom-select-block,
    .custom-filters .custom-input-block {
        flex: 0 1 100%;
    }
}
