@font-face {
  font-family: "Overpass";
  src: url("/fonts/overpass/Overpass-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overpass";
  src: url("/fonts/overpass/Overpass-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overpass";
  src: url("/fonts/overpass/Overpass-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 1260px) {
  table {
    table-layout: fixed;
    overflow-wrap: break-word;
  }
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}

button {
  background: none;
  border: none;
  padding: 0;
  outline: 0;
  cursor: pointer;
  transition: 0.4s;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

label {
  display: block;
}

input,
textarea,
select {
  display: block;
  transition: 0.4s;
}

textarea {
  resize: none;
}

.br-12 {
  display: block;
  margin-top: 12px;
}

.formgroup label {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  transition: 0.4s;
}
.formgroup label:last-child {
  margin-bottom: 0;
}
.formgroup label {
  color: #6a6a6a;
  transition: 0.4s;
}
.formgroup__caption {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #6a6a6a;
  margin-top: 4px;
}
.formgroup:hover:not(.disabled) label {
  color: #212121;
}
.formgroup.disabled label {
  color: #9d9d9d;
}
.formgroup.w-7 {
  width: 7%;
}

.formrow {
  display: flex;
}
.formrow .formgroup {
  flex: 1;
  margin-right: 16px;
}
.formrow .formgroup:last-child {
  margin-right: 0;
}
.formrow.w-7 {
  width: 7%;
}

.input-layout,
.select-layout {
  width: 100%;
  display: flex;
}
.input-layout .input,
.input-layout .select,
.select-layout .input,
.select-layout .select {
  flex: 1;
  margin-right: 12px;
}
.input-layout .input:last-child,
.input-layout .select:last-child,
.select-layout .input:last-child,
.select-layout .select:last-child {
  margin-right: 0;
}
.input-layout.input-layout--email,
.select-layout.input-layout--email {
  position: relative;
}
.input-layout.input-layout--email .input,
.select-layout.input-layout--email .input {
  padding-left: 48px;
}
.input-layout.input-layout--email::before,
.select-layout.input-layout--email::before {
  width: 24px;
  height: 24px;
  object-fit: contain;
  content: "";
  background: url(/img/icons/email.svg) no-repeat center/contain;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(0, -50%);
}

.input,
.select {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  width: 100%;
  border-radius: 8px;
  background-color: #ffffff;
  color: #212121;
  padding: calc(16px - 1px);
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  transition: 0.4s;
  border: 1px solid #CDDFF8;
}
.input::placeholder,
.select::placeholder {
  color: #9d9d9d;
  transition: 0.4s;
}
.input:focus, .input:active,
.select:focus,
.select:active {
  background-color: rgb(242.4, 247.05, 253.2);
}
.input:focus::placeholder, .input:active::placeholder,
.select:focus::placeholder,
.select:active::placeholder {
  color: #212121;
}
.input:hover:not(:disabled).input, .input:hover:not(.disabled).input,
.select:hover:not(:disabled).input,
.select:hover:not(.disabled).input {
  color: #212121;
}
.input:hover:not(:disabled)::placeholder, .input:hover:not(.disabled)::placeholder,
.select:hover:not(:disabled)::placeholder,
.select:hover:not(.disabled)::placeholder {
  color: #212121;
}
.input:disabled, .input.disabled,
.select:disabled,
.select.disabled {
  background-color: #f7f7f7;
  border-color: #ededed;
}
.input.error,
.select.error {
  border-color: #fc4c16;
}
.input[type=number]::-webkit-inner-spin-button,
.select[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input[type=number]::-webkit-outer-spin-button,
.select[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-error,
.select-error {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #fc4c16;
  margin-top: 4px;
}
.input-button,
.select-button {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.input-button:hover .iconBlock .icon,
.select-button:hover .iconBlock .icon {
  opacity: 0;
}
.input-button:hover .iconBlock .iconHover,
.select-button:hover .iconBlock .iconHover {
  opacity: 1;
}
.input-button:hover .iconBlock.active .iconActive,
.select-button:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.input-button:hover .iconBlock.active .iconActiveHover,
.select-button:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.input-button .iconBlock,
.select-button .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.input-button .iconBlock:hover .icon,
.select-button .iconBlock:hover .icon {
  opacity: 0;
}
.input-button .iconBlock:hover .iconHover,
.select-button .iconBlock:hover .iconHover {
  opacity: 1;
}
.input-button .iconBlock:hover.active .iconActive,
.select-button .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.input-button .iconBlock:hover.active .iconActiveHover,
.select-button .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.input-button .iconBlock.active .icon,
.select-button .iconBlock.active .icon {
  opacity: 0;
}
.input-button .iconBlock.active .iconActive,
.select-button .iconBlock.active .iconActive {
  opacity: 1;
}
.input-button .iconBlock .icon,
.input-button .iconBlock .iconHover,
.input-button .iconBlock .iconActive,
.input-button .iconBlock .iconActiveHover,
.select-button .iconBlock .icon,
.select-button .iconBlock .iconHover,
.select-button .iconBlock .iconActive,
.select-button .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.input-button .iconBlock .iconHover,
.input-button .iconBlock .iconActive,
.input-button .iconBlock .iconActiveHover,
.select-button .iconBlock .iconHover,
.select-button .iconBlock .iconActive,
.select-button .iconBlock .iconActiveHover {
  opacity: 0;
}
.input-button .iconBlock,
.select-button .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.input-button > img,
.select-button > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.input-button .iconBlock,
.input-button > img,
.select-button .iconBlock,
.select-button > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.input-button .iconBlock:first-child,
.input-button > img:first-child,
.select-button .iconBlock:first-child,
.select-button > img:first-child {
  margin-left: 0;
}
.input-button .iconBlock:last-child,
.input-button > img:last-child,
.select-button .iconBlock:last-child,
.select-button > img:last-child {
  margin-right: 0;
}
.input-button,
.select-button {
  background: #0360db;
  color: #ffffff;
}
.input-button:hover,
.select-button:hover {
  background: rgb(2.25, 72, 164.25);
}
.input--error,
.select--error {
  border-color: #fc4c16;
}
.input--success,
.select--success {
  border-color: #28b72a;
}

input[type=checkbox] {
  position: relative;
  cursor: pointer;
  min-width: 16px;
  min-height: 16px;
}

input[type=checkbox]:before,
input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 16px;
  min-height: 16px;
  border: 1.25px solid #0360db;
  border-radius: 2px;
  transition: all 0.2s linear;
}

.input-alert {
  display: none;
  align-items: center;
  margin-top: 4px;
}
.input-alert__icon {
  width: 8px;
  height: 8px;
  margin-right: 4px;
  background: #fc4c16;
  border-radius: 8px;
}
.input-alert__text {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #fc4c16;
}
.input-alert--success .input-alert__icon {
  background: #28b72a;
}
.input-alert--success .input-alert__text {
  color: #28b72a;
}

.input-amount {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  width: 100%;
  border-radius: 8px;
  background-color: #ffffff;
  color: #212121;
  padding: calc(16px - 1px);
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  transition: 0.4s;
  border: 1px solid #CDDFF8;
}
.input-amount::placeholder {
  color: #9d9d9d;
  transition: 0.4s;
}
.input-amount:focus, .input-amount:active {
  background-color: rgb(242.4, 247.05, 253.2);
}
.input-amount:focus::placeholder, .input-amount:active::placeholder {
  color: #212121;
}
.input-amount:hover:not(:disabled).input, .input-amount:hover:not(.disabled).input {
  color: #212121;
}
.input-amount:hover:not(:disabled)::placeholder, .input-amount:hover:not(.disabled)::placeholder {
  color: #212121;
}
.input-amount:disabled, .input-amount.disabled {
  background-color: #f7f7f7;
  border-color: #ededed;
}
.input-amount.error {
  border-color: #fc4c16;
}
.input-amount[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-amount[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-amount {
  padding: 8px 16px;
}

.select {
  background: url(/img/icons/dropdown.svg) #ffffff no-repeat center right 16px;
  padding-right: 40px;
}

.search {
  position: relative;
  width: 100%;
}
.search__input {
  padding-left: 48px;
}
.search__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate(0, -50%);
}
.search:focus {
  border-radius: 8px;
  border: 1px solid rgb(204.6, 223.2, 247.8);
}
.search :focus-visible {
  border-radius: 8px;
  outline: 1px solid rgb(204.6, 223.2, 247.8);
}
.search__button__icon {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  min-width: 60px;
  height: 90%;
  margin: 0px 5px;
  border-radius: 20px 20px;
  background-color: #0360db;
}
.search__button__icon:hover {
  background: #cddff8;
}
.search__button__icon .search__icon {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(0, -50%);
}
.search__right__button__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 20%;
  height: 100%;
  border-radius: 5px 5px 5px 5px;
}
.search__right__button__icon:hover {
  background: #cddff8;
}

.password {
  position: relative;
  width: 100%;
}
.password__input {
  padding-left: 48px;
}
.password__icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.password__icon:hover .icon {
  opacity: 0;
}
.password__icon:hover .iconHover {
  opacity: 1;
}
.password__icon:hover.active .iconActive {
  opacity: 0;
}
.password__icon:hover.active .iconActiveHover {
  opacity: 1;
}
.password__icon.active .icon {
  opacity: 0;
}
.password__icon.active .iconActive {
  opacity: 1;
}
.password__icon .icon,
.password__icon .iconHover,
.password__icon .iconActive,
.password__icon .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.password__icon .iconHover,
.password__icon .iconActive,
.password__icon .iconActiveHover {
  opacity: 0;
}
.password__icon {
  width: 24px;
  height: 24px;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  cursor: pointer;
}

.phone {
  display: flex;
}
.phone .customSelector {
  width: unset;
}
.phone .customSelector-input {
  width: fit-content;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
}
.phone .customSelector-input__placeholder {
  margin-right: 4px;
}
.phone .customSelector-dropdown {
  width: 89px;
}
.phone .customSelector.error {
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  border-radius: 8px 0 0 8px;
  border: 1px solid #fc4c16;
  background-color: #ffffff;
  color: #fc4c16;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  transition: 0.4s;
}
.phone .input {
  border-radius: 0 8px 8px 0;
}

.customSelector {
  position: relative;
  width: 100%;
}
.customSelector:hover .customSelector-input__placeholder {
  color: #212121;
}
.customSelector:hover .customSelector-input {
  color: #212121;
}
.customSelector-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  border-radius: 8px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #CDDFF8;
}
.customSelector-input__placeholder {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: #9d9d9d;
  margin-right: 8px;
}
.customSelector-input:disabled {
  background-color: #f7f7f7;
  border-color: #ededed;
}
.customSelector-input .selected-item {
  color: #212121;
}
.customSelector-dropdown {
  width: 100%;
  max-height: 400px;
  position: absolute;
  left: 0;
  display: none;
  padding: 8px 0;
  border: 1px solid rgb(204.6, 223.2, 247.8);
  background-color: #ffffff;
  border-radius: 0px 0px 8px 8px;
  overflow: auto;
  z-index: 10;
  box-shadow: 4px 4px 16px rgba(3, 60, 135, 0.08);
}
.customSelector-dropdown::-webkit-scrollbar {
  width: 4px;
  cursor: pointer;
}
.customSelector-dropdown::-webkit-scrollbar-track {
  background-color: transparent;
}
.customSelector-dropdown::-webkit-scrollbar-thumb {
  background-color: #ededed;
  border-radius: 4px;
}
.customSelector-dropdown::-webkit-scrollbar-thumb:window-inactive {
  background-color: #d2d2d2;
}
.customSelector-dropdown-item, .customSelector-dropdown-item-input, .customSelector-dropdown-item-button {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 14px 24px 14px 12px;
  color: #6a6a6a;
  cursor: pointer;
}
.customSelector-dropdown-item:hover, .customSelector-dropdown-item-input:hover, .customSelector-dropdown-item-button:hover {
  background-color: rgb(242.4, 247.05, 253.2);
}
.customSelector-dropdown-item__button, .customSelector-dropdown-item-input__button, .customSelector-dropdown-item-button__button {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.customSelector-dropdown-item__button:hover .iconBlock .icon, .customSelector-dropdown-item-input__button:hover .iconBlock .icon, .customSelector-dropdown-item-button__button:hover .iconBlock .icon {
  opacity: 0;
}
.customSelector-dropdown-item__button:hover .iconBlock .iconHover, .customSelector-dropdown-item-input__button:hover .iconBlock .iconHover, .customSelector-dropdown-item-button__button:hover .iconBlock .iconHover {
  opacity: 1;
}
.customSelector-dropdown-item__button:hover .iconBlock.active .iconActive, .customSelector-dropdown-item-input__button:hover .iconBlock.active .iconActive, .customSelector-dropdown-item-button__button:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.customSelector-dropdown-item__button:hover .iconBlock.active .iconActiveHover, .customSelector-dropdown-item-input__button:hover .iconBlock.active .iconActiveHover, .customSelector-dropdown-item-button__button:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.customSelector-dropdown-item__button .iconBlock, .customSelector-dropdown-item-input__button .iconBlock, .customSelector-dropdown-item-button__button .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.customSelector-dropdown-item__button .iconBlock:hover .icon, .customSelector-dropdown-item-input__button .iconBlock:hover .icon, .customSelector-dropdown-item-button__button .iconBlock:hover .icon {
  opacity: 0;
}
.customSelector-dropdown-item__button .iconBlock:hover .iconHover, .customSelector-dropdown-item-input__button .iconBlock:hover .iconHover, .customSelector-dropdown-item-button__button .iconBlock:hover .iconHover {
  opacity: 1;
}
.customSelector-dropdown-item__button .iconBlock:hover.active .iconActive, .customSelector-dropdown-item-input__button .iconBlock:hover.active .iconActive, .customSelector-dropdown-item-button__button .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.customSelector-dropdown-item__button .iconBlock:hover.active .iconActiveHover, .customSelector-dropdown-item-input__button .iconBlock:hover.active .iconActiveHover, .customSelector-dropdown-item-button__button .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.customSelector-dropdown-item__button .iconBlock.active .icon, .customSelector-dropdown-item-input__button .iconBlock.active .icon, .customSelector-dropdown-item-button__button .iconBlock.active .icon {
  opacity: 0;
}
.customSelector-dropdown-item__button .iconBlock.active .iconActive, .customSelector-dropdown-item-input__button .iconBlock.active .iconActive, .customSelector-dropdown-item-button__button .iconBlock.active .iconActive {
  opacity: 1;
}
.customSelector-dropdown-item__button .iconBlock .icon,
.customSelector-dropdown-item__button .iconBlock .iconHover,
.customSelector-dropdown-item__button .iconBlock .iconActive,
.customSelector-dropdown-item__button .iconBlock .iconActiveHover, .customSelector-dropdown-item-input__button .iconBlock .icon,
.customSelector-dropdown-item-input__button .iconBlock .iconHover,
.customSelector-dropdown-item-input__button .iconBlock .iconActive,
.customSelector-dropdown-item-input__button .iconBlock .iconActiveHover, .customSelector-dropdown-item-button__button .iconBlock .icon,
.customSelector-dropdown-item-button__button .iconBlock .iconHover,
.customSelector-dropdown-item-button__button .iconBlock .iconActive,
.customSelector-dropdown-item-button__button .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.customSelector-dropdown-item__button .iconBlock .iconHover,
.customSelector-dropdown-item__button .iconBlock .iconActive,
.customSelector-dropdown-item__button .iconBlock .iconActiveHover, .customSelector-dropdown-item-input__button .iconBlock .iconHover,
.customSelector-dropdown-item-input__button .iconBlock .iconActive,
.customSelector-dropdown-item-input__button .iconBlock .iconActiveHover, .customSelector-dropdown-item-button__button .iconBlock .iconHover,
.customSelector-dropdown-item-button__button .iconBlock .iconActive,
.customSelector-dropdown-item-button__button .iconBlock .iconActiveHover {
  opacity: 0;
}
.customSelector-dropdown-item__button .iconBlock, .customSelector-dropdown-item-input__button .iconBlock, .customSelector-dropdown-item-button__button .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.customSelector-dropdown-item__button > img, .customSelector-dropdown-item-input__button > img, .customSelector-dropdown-item-button__button > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.customSelector-dropdown-item__button .iconBlock,
.customSelector-dropdown-item__button > img, .customSelector-dropdown-item-input__button .iconBlock,
.customSelector-dropdown-item-input__button > img, .customSelector-dropdown-item-button__button .iconBlock,
.customSelector-dropdown-item-button__button > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.customSelector-dropdown-item__button .iconBlock:first-child,
.customSelector-dropdown-item__button > img:first-child, .customSelector-dropdown-item-input__button .iconBlock:first-child,
.customSelector-dropdown-item-input__button > img:first-child, .customSelector-dropdown-item-button__button .iconBlock:first-child,
.customSelector-dropdown-item-button__button > img:first-child {
  margin-left: 0;
}
.customSelector-dropdown-item__button .iconBlock:last-child,
.customSelector-dropdown-item__button > img:last-child, .customSelector-dropdown-item-input__button .iconBlock:last-child,
.customSelector-dropdown-item-input__button > img:last-child, .customSelector-dropdown-item-button__button .iconBlock:last-child,
.customSelector-dropdown-item-button__button > img:last-child {
  margin-right: 0;
}
.customSelector-dropdown-item__button, .customSelector-dropdown-item-input__button, .customSelector-dropdown-item-button__button {
  background: #0360db;
  color: #ffffff;
}
.customSelector-dropdown-item__button:hover, .customSelector-dropdown-item-input__button:hover, .customSelector-dropdown-item-button__button:hover {
  background: rgb(2.25, 72, 164.25);
}
.customSelector-dropdown-item__button, .customSelector-dropdown-item-input__button, .customSelector-dropdown-item-button__button {
  width: 100%;
}
.customSelector-dropdown-item__checkbox, .customSelector-dropdown-item-input__checkbox, .customSelector-dropdown-item-button__checkbox {
  width: 16px;
  height: 16px;
  border: 1.25px solid #0360db;
  border-radius: 2px;
}
.customSelector-dropdown-item-input {
  padding: 8px 12px;
}
.customSelector-dropdown-item-input:hover {
  background-color: #ffffff;
}
.customSelector-dropdown-item-input__icon {
  padding: 8px;
}
.customSelector-dropdown-item-input__input {
  width: 100%;
  height: 40px;
}
.customSelector-dropdown-item-button {
  padding: 8px 12px;
}
.customSelector.error {
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  border-radius: 8px;
  border: 1px solid #fc4c16;
  background-color: #ffffff;
  color: #fc4c16;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  transition: 0.4s;
}

.min-width-90 {
  min-width: 90px;
}
.min-width-120 {
  min-width: 120px;
}
.min-width-150 {
  min-width: 150px;
}
.min-width-200 {
  min-width: 200px;
}
.min-width-213 {
  min-width: 213px;
}
.min-width-260 {
  min-width: 260px;
}
.min-width-300 {
  min-width: 300px;
}

.font-weight-100 {
  font-weight: 100;
}
.font-weight-200 {
  font-weight: 200;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-800 {
  font-weight: 800;
}
.font-weight-900 {
  font-weight: 900;
}
.font-weight-normal {
  font-weight: normal;
}
.font-weight-revert {
  font-weight: revert;
}
.font-weight-unset {
  font-weight: unset;
}
.font-weight-lighter {
  font-weight: lighter;
}
.font-weight-inherit {
  font-weight: inherit;
}
.font-weight-initial {
  font-weight: initial;
}
.font-weight-bold {
  font-weight: bold;
}
.font-weight-bolder {
  font-weight: bolder;
}

.width-fit-content {
  width: fit-content;
}

.float-right {
  float: right;
}
.float-left {
  float: left;
}
.float-inherit {
  float: inherit;
}
.float-initial {
  float: initial;
}
.float-inline-end {
  float: inline-end;
}
.float-inline-start {
  float: inline-start;
}
.float-inline-revert {
  float: revert;
}
.float-unset {
  float: unset;
}
.float-none {
  float: none;
}

.margin-x-1 {
  margin: 1em 0em;
}
.margin-y-1 {
  margin: 0em 1em;
}

.daterangepicker {
  border-color: rgb(204.6, 223.2, 247.8);
  border-radius: 0 0 4px 4px;
  filter: drop-shadow(4px 4px 16px rgba(3, 60, 135, 0.08));
  margin-top: 0;
}
.daterangepicker:before, .daterangepicker:after {
  display: none;
}
@media (max-width: 1260px) and (min-width: 740px) {
  .daterangepicker {
    width: 323px;
  }
}
.daterangepicker .ranges {
  border-right: 1px solid rgb(242.4, 247.05, 253.2);
}
.daterangepicker .ranges ul {
  width: 320px;
}
.daterangepicker .ranges ul li {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: #6a6a6a;
  padding: 14px 56px 14px 16px;
}
.daterangepicker .ranges ul li:hover {
  background-color: #ededed;
}
.daterangepicker .ranges ul li.active {
  background: url(/img/icons/check.svg) no-repeat center right 16px, rgb(242.4, 247.05, 253.2);
  color: #212121;
}
.daterangepicker .drp-calendar {
  max-width: 100%;
}
.daterangepicker .drp-calendar.left {
  border-right: 1px solid #f7f7f7;
  padding: 16px 12px 12px 16px;
}
.daterangepicker .drp-calendar.left .calendar-table {
  padding-right: 0;
}
.daterangepicker .drp-calendar.right {
  padding: 16px 16px 12px 12px;
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  min-width: 40px;
  width: 40px;
  height: 40px;
  color: #6a6a6a;
  line-height: 40px;
}
.daterangepicker .calendar-table th.month,
.daterangepicker .calendar-table td.month {
  width: auto;
}
.daterangepicker .calendar-table th.disabled,
.daterangepicker .calendar-table td.disabled {
  text-decoration: none;
}
.daterangepicker .calendar-table th.holiday:not(.ends),
.daterangepicker .calendar-table td.holiday:not(.ends) {
  color: #fc4c16;
  cursor: not-allowed;
}
.daterangepicker .calendar-table th.holiday:not(.ends).active, .daterangepicker .calendar-table th.holiday:not(.ends).active:hover,
.daterangepicker .calendar-table td.holiday:not(.ends).active,
.daterangepicker .calendar-table td.holiday:not(.ends).active:hover {
  background-color: #0360db;
  color: #fc4c16;
}
.daterangepicker .calendar-table .prev span,
.daterangepicker .calendar-table .next span {
  width: 24px;
  height: 24px;
  border: none;
  background: no-repeat center/contain;
  transform: none;
}
.daterangepicker .calendar-table .prev span {
  background-image: url(/img/icons/arrowLeftIcon.svg);
}
.daterangepicker .calendar-table .next span {
  background-image: url(/img/icons/arrowRight.svg);
}
.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #ededed;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #0360db;
  color: #ffffff;
}
.daterangepicker td.in-range:not(.active):not(.off) {
  background-color: rgb(242.4, 247.05, 253.2);
}
.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  color: #ededed;
}
.daterangepicker .drp-buttons {
  border-color: #f7f7f7;
  padding: 16px;
}
.daterangepicker .drp-buttons .btn {
  margin-left: 16px;
}
.daterangepicker .drp-buttons .btn:first-child {
  margin-left: 0;
}
.daterangepicker .drp-buttons .btn.btn-default {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.daterangepicker .drp-buttons .btn.btn-default:hover .iconBlock .icon {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-default:hover .iconBlock .iconHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-default:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-default:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock:hover .icon {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock:hover .iconHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock.active .icon {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock.active .iconActive {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock .icon,
.daterangepicker .drp-buttons .btn.btn-default .iconBlock .iconHover,
.daterangepicker .drp-buttons .btn.btn-default .iconBlock .iconActive,
.daterangepicker .drp-buttons .btn.btn-default .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock .iconHover,
.daterangepicker .drp-buttons .btn.btn-default .iconBlock .iconActive,
.daterangepicker .drp-buttons .btn.btn-default .iconBlock .iconActiveHover {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.daterangepicker .drp-buttons .btn.btn-default > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock,
.daterangepicker .drp-buttons .btn.btn-default > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock:first-child,
.daterangepicker .drp-buttons .btn.btn-default > img:first-child {
  margin-left: 0;
}
.daterangepicker .drp-buttons .btn.btn-default .iconBlock:last-child,
.daterangepicker .drp-buttons .btn.btn-default > img:last-child {
  margin-right: 0;
}
.daterangepicker .drp-buttons .btn.btn-default {
  box-shadow: none;
  background: rgb(242.4, 247.05, 253.2);
  color: #0360db;
  border: unset;
}
.daterangepicker .drp-buttons .btn.btn-default:hover {
  color: rgb(2.25, 72, 164.25);
}
.daterangepicker .drp-buttons .btn.btn-primary {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.daterangepicker .drp-buttons .btn.btn-primary:hover .iconBlock .icon {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary:hover .iconBlock .iconHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-primary:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock:hover .icon {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock:hover .iconHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock.active .icon {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock.active .iconActive {
  opacity: 1;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock .icon,
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock .iconHover,
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock .iconActive,
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock .iconHover,
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock .iconActive,
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock .iconActiveHover {
  opacity: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock,
.daterangepicker .drp-buttons .btn.btn-primary > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock:first-child,
.daterangepicker .drp-buttons .btn.btn-primary > img:first-child {
  margin-left: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary .iconBlock:last-child,
.daterangepicker .drp-buttons .btn.btn-primary > img:last-child {
  margin-right: 0;
}
.daterangepicker .drp-buttons .btn.btn-primary {
  background: #0360db;
  color: #ffffff;
}
.daterangepicker .drp-buttons .btn.btn-primary:hover {
  background: rgb(2.25, 72, 164.25);
}
.daterangepicker .drp-selected {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: #6a6a6a;
  padding-right: 16px;
}
.daterangepicker.show-calendar .ranges {
  margin-top: 0;
}
.daterangepicker.show-calendar.ltr .drp-calendar.left {
  border-left: 0;
}

.custom-file-input {
  border-radius: 8px;
  position: relative;
}
.custom-file-input__dummy {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  border-radius: inherit;
  border: 1px dashed rgb(129, 175.5, 237);
  background: url(/img/icons/attach.svg) no-repeat center left 24px, rgb(242.4, 247.05, 253.2);
  color: #0360db;
  line-height: 24px;
  padding: 15px 15px 15px 55px;
}
.custom-file-input__upload, .custom-file-input__file {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-file-input__upload {
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.custom-file-input__file {
  display: flex;
  align-items: center;
  border: 1px solid #d2d2d2;
  border-radius: inherit;
  background: #f7f7f7;
  padding: 15px 15px 15px 23px;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
}
.custom-file-input__file-name {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 24px;
  flex: 1;
}
.custom-file-input__file-delete {
  width: 24px;
  height: 24px;
  object-fit: contain;
  background: url(/img/icons/delete.svg) no-repeat center/contain;
  margin-left: 8px;
}
.custom-file-input.custom-file-input--active .custom-file-input__file {
  opacity: 1;
  z-index: 3;
}

.modal-layout {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: auto;
}
.modal-layout.modal-layout--block {
  display: block;
  overflow-y: auto;
}
.modal-layout.modal-layout--block .modal-scroll {
  padding: 80px 0;
}

.modal-scroll {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-background {
  width: 100%;
  height: 100%;
  background: rgba(0, 64, 148, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.menu-box {
  box-shadow: 2px 2px 8px rgba(78, 78, 92, 0.15);
  width: 324px;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 0;
}
@media (max-width: 1260px) {
  .menu-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.menu-box-item {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  width: 100%;
  display: flex;
  align-items: center;
  color: #6a6a6a;
  padding: 16px 24px 16px 20px;
  transition: 0.4s;
}
@media (max-width: 1260px) {
  .menu-box-item {
    width: initial;
  }
}
.menu-box-item:hover, .menu-box-item.active {
  color: #212121;
  background: rgb(242.4, 247.05, 253.2);
}
.menu-box-item:hover .iconBlock .icon {
  opacity: 0;
}
.menu-box-item:hover .iconBlock .iconHover {
  opacity: 1;
}
.menu-box-item:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.menu-box-item:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.menu-box-item .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.menu-box-item .iconBlock:hover .icon {
  opacity: 0;
}
.menu-box-item .iconBlock:hover .iconHover {
  opacity: 1;
}
.menu-box-item .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.menu-box-item .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.menu-box-item .iconBlock.active .icon {
  opacity: 0;
}
.menu-box-item .iconBlock.active .iconActive {
  opacity: 1;
}
.menu-box-item .iconBlock .icon,
.menu-box-item .iconBlock .iconHover,
.menu-box-item .iconBlock .iconActive,
.menu-box-item .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.menu-box-item .iconBlock .iconHover,
.menu-box-item .iconBlock .iconActive,
.menu-box-item .iconBlock .iconActiveHover {
  opacity: 0;
}
.menu-box-item .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.menu-box-item > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.menu-box-item .iconBlock,
.menu-box-item > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.menu-box-item .iconBlock:first-child,
.menu-box-item > img:first-child {
  margin-left: 0;
}
.menu-box-item .iconBlock:last-child,
.menu-box-item > img:last-child {
  margin-right: 0;
}
.menu-box {
  width: 208px;
  margin-right: 24px;
}
@media (max-width: 1260px) {
  .menu-box {
    margin: 0 0 16px;
  }
}

body .WMBSC .slick-list-padding {
  padding-left: 64px !important;
}
body .WMBSC .slick-arrow.slick-prev, body .WMBSC .slick-arrow.slick-next {
  width: 56px;
  height: 56px;
  background: no-repeat center/24px, #ffffff;
  border-radius: 8px;
  box-shadow: none;
  top: calc(50% - 28px);
  transform: none;
  box-shadow: 2px 2px 8px rgba(78, 78, 92, 0.08);
  opacity: 0.55;
}
body .WMBSC .slick-arrow.slick-prev:hover, body .WMBSC .slick-arrow.slick-next:hover {
  opacity: 1;
}
body .WMBSC .slick-arrow.slick-prev.slick-disabled, body .WMBSC .slick-arrow.slick-next.slick-disabled {
  display: none !important;
}
body .WMBSC .slick-arrow.slick-prev {
  background-image: url(/img/icons/arrowLeftIcon.svg);
  left: 0;
}
body .WMBSC .slick-arrow.slick-next {
  background-image: url(/img/icons/arrowRight.svg);
  right: 0;
}
body .WMBSC .slick-arrow.slick-prev:before, body .WMBSC .slick-arrow.slick-next:before {
  content: "";
}

body {
  font-weight: 400;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  background: #ededed;
  color: #212121;
  word-break: break-word;
}

.layout {
  padding: 24px 0 32px;
}
.layout-container {
  width: 100%;
  max-width: calc(1368px + 36px * 2);
  padding: 0 36px;
  margin: 0 auto;
}
.layout-container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.layout-container-header-wrapper {
  display: flex;
  align-items: center;
}
.layout-container-header__logo {
  box-shadow: 2px 2px 8px rgba(78, 78, 92, 0.15);
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 12px;
}
.layout-container-header__title {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 28px;
  line-height: 36px;
}
.layout-container-header__tooltip-icon {
  padding: 8px;
  margin-left: 4px;
  cursor: pointer;
  background-image: url(/img/icons/tooltipIcon.svg);
  width: 24px;
  height: 24px;
}
.layout-container-header__button {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.layout-container-header__button:hover .iconBlock .icon {
  opacity: 0;
}
.layout-container-header__button:hover .iconBlock .iconHover {
  opacity: 1;
}
.layout-container-header__button:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.layout-container-header__button:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.layout-container-header__button .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.layout-container-header__button .iconBlock:hover .icon {
  opacity: 0;
}
.layout-container-header__button .iconBlock:hover .iconHover {
  opacity: 1;
}
.layout-container-header__button .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.layout-container-header__button .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.layout-container-header__button .iconBlock.active .icon {
  opacity: 0;
}
.layout-container-header__button .iconBlock.active .iconActive {
  opacity: 1;
}
.layout-container-header__button .iconBlock .icon,
.layout-container-header__button .iconBlock .iconHover,
.layout-container-header__button .iconBlock .iconActive,
.layout-container-header__button .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.layout-container-header__button .iconBlock .iconHover,
.layout-container-header__button .iconBlock .iconActive,
.layout-container-header__button .iconBlock .iconActiveHover {
  opacity: 0;
}
.layout-container-header__button .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.layout-container-header__button > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.layout-container-header__button .iconBlock,
.layout-container-header__button > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.layout-container-header__button .iconBlock:first-child,
.layout-container-header__button > img:first-child {
  margin-left: 0;
}
.layout-container-header__button .iconBlock:last-child,
.layout-container-header__button > img:last-child {
  margin-right: 0;
}
.layout-container-header__button {
  box-shadow: none;
  color: #0360db;
  padding: 0;
}
.layout-container-header__button:hover {
  color: rgb(2.25, 72, 164.25);
}
.layout-container-main {
  box-shadow: 2px 2px 8px rgba(78, 78, 92, 0.15);
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;
  margin-bottom: 24px;
}
.layout-container-main:last-child {
  margin-bottom: 0;
}
.layout-container-main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.layout-container-main-title-name {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 22px;
  line-height: 32px;
}
@media (max-width: 1260px) and (min-width: 740px) {
  .layout-container-main-title-name {
    font-size: 18px;
    line-height: 24px;
  }
}
.layout-container-main-title-name {
  color: #121217;
}
.layout-container-main-title-right {
  display: flex;
}
.layout-container-main-title-right__input {
  min-width: 260px;
  margin-right: 12px;
  position: relative;
}
.layout-container-main-title-right__selector {
  min-width: 260px;
}
.layout-container-main-info-form-row__item {
  flex: 1;
  box-sizing: border-box;
}
.layout-container-main-info-form-row__item.tile {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #6a6a6a;
}
.layout-container-main-footer .full-width-content-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.layout-container-main-footer .full-width-content-box__button {
  width: 100%;
}
.layout-container-main-footer .full-width-content-box__button_cancel {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.layout-container-main-footer .full-width-content-box__button_cancel:hover .iconBlock .icon {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel:hover .iconBlock .iconHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_cancel:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock:hover .icon {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock:hover .iconHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock.active .icon {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock.active .iconActive {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock .icon,
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock .iconHover,
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock .iconActive,
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock .iconHover,
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock .iconActive,
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock .iconActiveHover {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock,
.layout-container-main-footer .full-width-content-box__button_cancel > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock:first-child,
.layout-container-main-footer .full-width-content-box__button_cancel > img:first-child {
  margin-left: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel .iconBlock:last-child,
.layout-container-main-footer .full-width-content-box__button_cancel > img:last-child {
  margin-right: 0;
}
.layout-container-main-footer .full-width-content-box__button_cancel {
  box-shadow: none;
  background: rgb(242.4, 247.05, 253.2);
  color: #0360db;
}
.layout-container-main-footer .full-width-content-box__button_cancel:hover {
  color: rgb(2.25, 72, 164.25);
}
.layout-container-main-footer .full-width-content-box__button_confirm {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.layout-container-main-footer .full-width-content-box__button_confirm:hover .iconBlock .icon {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm:hover .iconBlock .iconHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_confirm:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock:hover .icon {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock:hover .iconHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock.active .icon {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock.active .iconActive {
  opacity: 1;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock .icon,
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock .iconHover,
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock .iconActive,
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock .iconHover,
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock .iconActive,
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock .iconActiveHover {
  opacity: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock,
.layout-container-main-footer .full-width-content-box__button_confirm > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock:first-child,
.layout-container-main-footer .full-width-content-box__button_confirm > img:first-child {
  margin-left: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm .iconBlock:last-child,
.layout-container-main-footer .full-width-content-box__button_confirm > img:last-child {
  margin-right: 0;
}
.layout-container-main-footer .full-width-content-box__button_confirm {
  background: #0360db;
  color: #ffffff;
}
.layout-container-main-footer .full-width-content-box__button_confirm:hover {
  background-color: rgb(2.25, 72, 164.25);
}
.layout-container-main-footer .full-width-content-box__button--inactive {
  opacity: 0.3;
}
.layout-container-main-footer .space-between-content-box {
  width: 100%;
  justify-content: space-between;
  display: flex;
}
.layout-container-main-footer .space-between-content-box__button {
  min-width: 150px;
}
.layout-container-main-footer .space-between-content-box__button_cancel {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.layout-container-main-footer .space-between-content-box__button_cancel:hover .iconBlock .icon {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel:hover .iconBlock .iconHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_cancel:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock:hover .icon {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock:hover .iconHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock.active .icon {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock.active .iconActive {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock .icon,
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock .iconHover,
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock .iconActive,
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock .iconHover,
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock .iconActive,
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock .iconActiveHover {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock,
.layout-container-main-footer .space-between-content-box__button_cancel > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock:first-child,
.layout-container-main-footer .space-between-content-box__button_cancel > img:first-child {
  margin-left: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel .iconBlock:last-child,
.layout-container-main-footer .space-between-content-box__button_cancel > img:last-child {
  margin-right: 0;
}
.layout-container-main-footer .space-between-content-box__button_cancel {
  box-shadow: none;
  background: rgb(242.4, 247.05, 253.2);
  color: #0360db;
}
.layout-container-main-footer .space-between-content-box__button_cancel:hover {
  color: rgb(2.25, 72, 164.25);
}
.layout-container-main-footer .space-between-content-box__button_confirm {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  box-shadow: 2px 2px 8px rgba(49, 136, 250, 0.2);
  display: inline-block;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
}
.layout-container-main-footer .space-between-content-box__button_confirm:hover .iconBlock .icon {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm:hover .iconBlock .iconHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_confirm:hover .iconBlock.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm:hover .iconBlock.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock:hover .icon {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock:hover .iconHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock:hover.active .iconActive {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock:hover.active .iconActiveHover {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock.active .icon {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock.active .iconActive {
  opacity: 1;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock .icon,
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock .iconHover,
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock .iconActive,
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock .iconActiveHover {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock .iconHover,
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock .iconActive,
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock .iconActiveHover {
  opacity: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock {
  width: 24px;
  height: 24px;
  padding: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm > img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock,
.layout-container-main-footer .space-between-content-box__button_confirm > img {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock:first-child,
.layout-container-main-footer .space-between-content-box__button_confirm > img:first-child {
  margin-left: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm .iconBlock:last-child,
.layout-container-main-footer .space-between-content-box__button_confirm > img:last-child {
  margin-right: 0;
}
.layout-container-main-footer .space-between-content-box__button_confirm {
  background: #0360db;
  color: #ffffff;
}
.layout-container-main-footer .space-between-content-box__button_confirm:hover {
  background-color: rgb(2.25, 72, 164.25);
}
.layout-container-main-footer .space-between-content-box__button--inactive {
  opacity: 0.3;
}

.capitalize-text {
  text-transform: capitalize;
}
.capitalize-text-first-letter::first-letter {
  text-transform: capitalize;
}

.profile-avatar-text {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: rgb(204.6, 223.2, 247.8);
  padding: 2px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 5px;
}
.profile-avatar-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: rgb(204.6, 223.2, 247.8);
  padding: 2px;
  position: relative;
  cursor: pointer;
  margin: 0px 5px;
}

.status--awaiting {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 6px 21px 2px;
  border-radius: 4px;
  color: #d79a00;
  background-color: #fffaed;
  background-color: #fffaed;
  color: #d79a00;
  text-align: center;
}
.status--partiallyauthorised {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 6px 21px 2px;
  border-radius: 4px;
  color: #d79a00;
  background-color: #fffaed;
  background-color: #fffaed;
  color: #d79a00;
  text-align: center;
}
.status--available {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 6px 21px 2px;
  border-radius: 4px;
  color: #0a9a0c;
  background-color: #edffed;
  background-color: #edffed;
  color: #0a9a0c;
  text-align: center;
}
.status--live {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 6px 21px 2px;
  border-radius: 4px;
  color: #0a9a0c;
  background-color: #edffed;
  background-color: #edffed;
  color: #0a9a0c;
  text-align: center;
}
.status--pending {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 6px 21px 2px;
  border-radius: 4px;
  color: #1199d6;
  background-color: rgb(242.4, 247.05, 253.2);
  background-color: #e0f6ff;
  color: #1199d6;
  text-align: center;
}
.status--removed {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 6px 21px 2px;
  border-radius: 4px;
  color: #fc4c16;
  background-color: #fff1ed;
  background-color: #fff1ed;
  color: #fc4c16;
  text-align: center;
}
.status--modifying {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 6px 21px 2px;
  border-radius: 4px;
  color: #9882fe;
  background-color: #f4f0ff;
  background-color: #f4f0ff;
  color: #7b62fe;
  text-align: center;
}

.cursor-pointer {
  cursor: pointer;
}

.underline-text {
  color: #6a6a6a;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.text-font-weight-bold {
  color: #212121 !important;
  font-weight: bold !important;
}

.xs-opacity {
  opacity: 0.1;
}

.sm-opacity {
  opacity: 0.3;
}

.md-opacity {
  opacity: 0.5;
}

.lg-opacity {
  opacity: 0.8;
}

.margin-x-0 {
  margin: 0px 0px;
}
.margin-x-3 {
  margin: 3px 0px;
}
.margin-x-5 {
  margin: 5px 0px;
}
.margin-x-10 {
  margin: 10px 0px;
}
.margin-y-0 {
  margin: 0px 0px;
}
.margin-y-3 {
  margin: 0px 3px;
}
.margin-y-5 {
  margin: 0px 5px;
}
.margin-xy-0 {
  margin: 0px 0px;
}
.margin-xy-3 {
  margin: 3px 3px;
}
.margin-xy-5 {
  margin: 5px 5px;
}

.padding-x-0 {
  padding: 0px 0px;
}
.padding-x-3 {
  padding: 3px 0px;
}
.padding-x-5 {
  padding: 5px 0px;
}
.padding-y-0 {
  padding: 0px 0px;
}
.padding-y-3 {
  padding: 0px 3px;
}
.padding-y-5 {
  padding: 0px 5px;
}
.padding-xy-0 {
  padding: 0px 0px;
}
.padding-xy-3 {
  padding: 3px 3px;
}
.padding-xy-5 {
  padding: 5px 5px;
}

.boder-radius-xy-5 {
  border-radius: 5px !important;
}
.boder-radius-xy-8 {
  border-radius: 8px !important;
}

.normal-opacity {
  opacity: 1;
}

.form-row {
  display: flex;
  margin: 10px 0px;
}
.form-group {
  margin: 5px;
  vertical-align: baseline;
  flex: 1;
}

.warning-box {
  margin: 5px 0px;
  display: flex;
}
.warning-box-main {
  flex: 1;
  border-radius: 12px;
  background: #f7f7f7;
  padding: 5px;
}
.warning-box-main-fragment {
  display: inline-grid;
  width: 100%;
}
.warning-box-main-fragment-flex {
  display: flex;
}
.warning-box-main-fragment-flex img {
  margin: 5px;
}
.warning-box-main-fragment-flex p {
  margin: 5px 10px;
  align-self: center;
  color: #fc4c16;
}
.warning-box-main-fragment-flex p.text-bolder {
  font-weight: bolder;
}
.warning-box-main-fragment-flex p.text-align-center {
  text-align: center;
}
.warning-box-main-fragment-flex.content-space-around {
  justify-content: space-around;
}

.main {
  padding: 10px 0px;
}
.main .container {
  padding: 0 36px;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}
.main .container-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.main .container-content .row {
  background: #ffffff;
  box-shadow: 2px 2px 8px rgba(78, 78, 92, 0.15);
  border-radius: 16px;
  padding: 24px;
}
.main .container-content .row-content-inline {
  display: inline-flex;
}
.main .container.card.row {
  display: flex;
  justify-content: space-around;
  margin: 10px;
}

.avatar-style {
  width: 36px !important;
  border-radius: 50% !important;
}

.link-button {
  color: #0360db;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.link-button:hover {
  color: rgb(2.25, 72, 164.25);
}

.gray-link-button {
  color: #6a6a6a;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.gray-link-button:hover {
  color: #212121;
}

.min-width__100 {
  min-width: 100px;
}
.min-width__150 {
  min-width: 150px;
}
.min-width__200 {
  min-width: 200px;
}
.min-width__250 {
  min-width: 250px;
}
.min-width__300 {
  min-width: 300px;
}

.max-width__unset {
  max-width: unset !important;
}
.max-width__100 {
  max-width: 100px;
}
.max-width__150 {
  max-width: 150px;
}
.max-width__200 {
  max-width: 200px;
}
.max-width__250 {
  max-width: 250px;
}
.max-width__300 {
  max-width: 300px;
}

/* This class should be used with max-width style */
.crop-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* This class allows text to wrap */
.wrap-text {
  white-space: normal !important;
  word-wrap: break-word !important;
}

.breadcrumbs {
  display: flex;
}
.breadcrumbs__item {
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #6a6a6a;
  padding: 4px 0;
  margin-right: 8px;
}
.breadcrumbs__item::after {
  content: "->";
  margin-left: 8px;
}
.breadcrumbs__item:last-child {
  margin-right: 0;
}
.breadcrumbs__item:last-child::after {
  display: none;
}
.breadcrumbs__item.active {
  color: #212121;
}
.breadcrumbs {
  margin-bottom: 8px;
}

.width-100 {
  width: 100% !important;
}
.width-80 {
  width: 80% !important;
}

.inactive {
  opacity: 0.3;
}

.space-beetween {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.space-beetween-item {
  display: flex;
  align-items: center;
}
.space-beetween-item p {
  margin: 0px !important;
}
.space-beetween-item label {
  margin: 0px !important;
}

.table-actionBtn-right__40 {
  right: 40px;
}
.table-actionBtn-left__40 {
  left: 40px;
}

.btn-tooltip {
  cursor: pointer;
  background-image: url(/img/icons/tooltipIcon.svg);
  width: 24px;
  height: 24px;
}

.icon-dropdown {
  background-image: url(/img/icons/dropdown.svg);
  width: 24px;
  height: 24px;
}
.icon-dropdown-revert {
  background-image: url(/img/icons/revertDropdown.svg);
  width: 24px;
  height: 24px;
}
.icon-pin-loader-active {
  background-image: url(/img/icons/pinCodeIconBlue.svg);
  width: 12px;
  height: 12px;
}
.icon-pin-loader-inactive {
  background-image: url(/img/icons/pinCodeIcon.svg);
  width: 12px;
  height: 12px;
}
.icon-dots-vertical {
  background-image: url(/img/icons/dotsIcon.svg);
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
}
.icon-dots-vertical:hover {
  background-image: url(/img/icons/dotsIcon_white.svg);
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  opacity: 1 !important;
}
.icon-dots-vertical__active {
  background-image: url(/img/icons/dotsIcon_white.svg);
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
}
.icon-dots-horizontal {
  background-image: url(/img/icons/dotsIcon.svg);
  width: 24px;
  height: 24px;
}
.icon-dots-horizontal:hover {
  background-image: url(/img/icons/dotsIcon_white.svg);
  width: 24px;
  height: 24px;
  opacity: 1 !important;
}
.icon-dots-horizontal__active {
  background-image: url(/img/icons/dotsIcon_white.svg);
  width: 24px;
  height: 24px;
}
.icon-arrow-header-goto {
  background-image: url(/img/icons/arrowRightDarkBlue.svg);
  width: 24px;
  height: 24px;
}
.icon-arrow-header-goto:hover {
  background-image: url(/img/icons/arrowRightHover.svg);
}
.icon-arrow-header-goto {
  display: inline-flex;
}

.layer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 900;
}

.layer-panel {
  position: relative;
  z-index: 901;
}