/*==============================
 Themes
==============================*/
:root {
  --brand_1: #3834F9;
  --brand_1_disabled: #3834F9;
  --brand_2: #FD82C6;
  --brand_3: #69D77D; 
  --brand_main: linear-gradient(90deg, #FE4E50 0%, #FE6E4E 100%);
  --link_1: #3834F9;
  --green_1: #62D062;
  --red_1: #FF4034;
  --br-0: 30px;
  --br-1: 25px;
  --br-2: 20px;
  --br-3: 15px;
  --br-4: 10px;
  --br-5: 5px;
}

:root, .light {
  --level_0: #FFFFFF; 
  --level_05: #F9FAFB; 
  --level_1: #F3F4F6; 
  --level_2: #E5E7EB; 
  --level_3: #D1D5DB; 
  --level_4: #9CA3AF; 
  --level_5: #6B7280; 
  --level_6: #4B5563;
  --level_100: #121212;
  --text_1: #000000; 
  --text_2: #777777; 
  --text_3: #555555; 
  --link_1_hover: #333333;
  --link_2: #191919; 
  --link_2_hover: #555555;
  --btn-text: #FFFFFF;
  --icon: #6B7280;
  --shadow_1: rgba(25, 28, 31, 0.1) 0px 3px 8px 0px;
  --focus: #9CA3AF;
} 

.dark {
  --level_0: #000000; 
  --level_05: #0C0C0C;
  --level_1: #151516; 
  --level_2: #1A1A1B; 
  --level_3: #222222; 
  --level_4: #272727; 
  --level_5: #4E4E4E; 
  --level_6: #AAAAAA;
  --level_100: #FFFFFF;
  --text_1: #FFFFFF; 
  --text_2: #999999; 
  --text_3: #555555; 
  --link_1_hover: #FFFFFF;
  --link_2: #FFFFFF; 
  --link_2_hover: #CCCCCC;
  --btn-text: #FFFFFF;
  --icon: #FCFCFB;
  --shadow_1: 0px 5px 20px rgba(0, 0, 0, .35);
  --focus: #4E4E4E;
}

/*==============================
  Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  min-width: 375px;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400;
  background-color: var(--level_0);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.5s ease;
  transition-property: background-color, border-color, box-shadow;
  cursor: pointer;
}

button:focus {
  outline: 0; 
  box-shadow: 0;
  border: 0;
}

a {
  color: var(--link_1);
  text-decoration: none;
  transition: 0.5s ease;
  transition-property: background-color, border-color, box-shadow;
}

a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

input,
textarea,
select {
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::-moz-selection {
  background: #fff;
  color: #222227;
  text-shadow: none;
}

::selection {
  background: #fff;
  color: #222227;
  text-shadow: none;
}

::-webkit-input-placeholder {
  color: #c0c0c0;
  opacity: 1;
}

::-moz-placeholder {
  color: #c0c0c0;
  opacity: 1;
}

:-moz-placeholder {
  color: #c0c0c0;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #c0c0c0;
  opacity: 1;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px;
}

body::-webkit-scrollbar {
  width: 16px;
}

body::-webkit-scrollbar-track {
  background: #222227;
}

body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  outline: 1px solid #222227;
}

.tab-content {
  width: 100%;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.fade {
  transition: opacity 0.4s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

:focus-visible {
  outline: 0px dotted;
}

.row--grid {
  margin-right: -10px;
  margin-left: -10px;
}

.row--grid .col-6,
.row--grid .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .row--grid {
    margin-right: -15px;
    margin-left: -15px;
  }

  .row--grid .col-6,
  .row--grid .col-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row--sidebar {
  margin-right: -10px;
  margin-left: -10px;
}

.row--sidebar .col-6,
.row--sidebar .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.owl-stage {
  display: flex;
  align-items: stretch;
}

.owl-carousel .owl-item {
  -webkit-transform: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {display: none;}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--text_1);
}

/*==============================
  Bottom Panel Exclude
==============================*/
.b-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.b-panel-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--level_1);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 0 20px 0 20px;
  box-shadow: var(--shadow_1);
}

.b-panel span {
  color: var(--text_2);
}

.b-panel .buttons {
  display: flex;
  flex-direction: row;
}

.b-panel .buttons button {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .b-panel-1 {
    padding: 0 10px 0 10px;
  }

  .b-panel span {
    display: none;
  }

  .b-panel .buttons {
    width: 100%;
  }

  .b-panel .buttons .btn-primary {
    width: 100%;
    margin-left: 20px;
  }
}

/*==============================
  Form
==============================*/
.field-icon {
  float: right;
  position: absolute;
  right: 15px;
  top: 20px;
  cursor: pointer;
  z-index: 3;
  opacity: .7;
}

.visibility {
  width: 20px;
  height: 20px;
  transition: 0.5s ease;
  background: transparent url("../img/icons/Eye.svg") no-repeat center/20px auto;
  border: 0;
  display: block;
}

.visibility-off {
  width: 20px;
  height: 20px;
  transition: 0.5s ease;
  background: transparent url("../img/icons/Eye-off.svg") no-repeat center/20px auto;
  border: 0;
  display: block;
}

.floating-label-1 {
  width: 100%;
  height: 60px;
  border-radius: var(--br-3);
  background: var(--level_1) url("../img/arrow.svg") no-repeat center right;
  background-size: 50px 20px;
  margin-bottom: 20px;
}

.multiselect {
  width: 100%;
}

.multiselect-native-select {
  display: block;
  height: 100%;
  width: 100%;
}

.multiselect-selected-text {
  display: block;
  color: var(--text_1);
  height: 60px;
  width: 100%;
  padding-top: 30px;
  padding-left: 15px;
  text-align: left;
}

.floating-label-2 {
  position: absolute;
  margin: 8px 0 0 15px;
  font-size: 13px;
  line-height: 140%;
  color: var(--text_2);
}

.floating-label-1 .btn-group {
  width: 100%;
}

.dropdown-menu.show {
  background-color: var(--level_0);
  width: calc(100% + 2px);
  border: 0;
  border-radius: var(--br-2);
  overflow: hidden;
  margin-left: -1px;
  box-shadow: var(--shadow_1);
  padding: 5px;
}

body.dark .dropdown-menu.show {
  background-color: var(--level_1);
  width: calc(100% + 2px);
  border: 0;
  border-radius: var(--br-2);
  overflow: hidden;
  margin-left: -1px;
  box-shadow: var(--shadow_1);
  padding: 5px;
}

.multiselect-container .multiselect-option,
.multiselect-container .multiselect-group,
.multiselect-container .multiselect-all {
  color: var(--text_1);
}

.multiselect-option.dropdown-item {
  background-color: var(--level_0);
  border-radius: var(--br-3);
  margin-bottom: 2px;
  padding: 10px 20px 3px 20px;
}

.dropdown-item {
  color: var(--text_1);
  background-color: var(--level_05);
}

body.dark .multiselect-option.dropdown-item, body.dark .dropdown-item {
  background-color: var(--level_1);
}

.dropdown-item:hover,
.dropdown-item .active:hover,
.multiselect-option:hover {
  color: var(--text_1);
  background-color: var(--level_1);
}

body.dark .dropdown-item:hover,
body.dark .dropdown-item .active:hover,
body.dark .multiselect-option:hover {
  background-color: var(--level_05)
}

.floating-label-1 .btn-group .active {
  color: var(--text_1);
  background-color: var(--level_05);
}

.form-check-label {
  padding: 1px 0 0 7px;
}

.form-check-input:checked {
  background-color: var(--brand_1);
  border-color: var(--brand_1);
}

.floating-label-1 .form-check-input:checked[type=checkbox],
.product-1 .form-check-input:checked[type=checkbox],
.product-2 .form-check-input:checked[type=checkbox] {
  width: 20px;
  height: 20px;
  text-align: center;
  transition: 0.5s ease;
  /*background: var(--brand_1) url("../img/checkmark.svg") no-repeat center/20px auto;*/
  border: 0;
  border-radius: var(--br-5);
}

.floating-label-1 .form-check-input:not(:checked)[type=checkbox],
.product-1 .form-check-input:not(:checked)[type=checkbox],
.product-2 .form-check-input:not(:checked)[type=checkbox] {
  width: 20px;
  height: 20px;
  background-color: var(--level_1);
  border: 1px solid var(--level_5);
  border-radius: var(--br-5);
}

.floating-label-1 .form-check-input:checked[type=radio] {
  width: 20px;
  height: 20px;
  text-align: center;
  transition: 0.5s ease;
  background: transparent url("../img/checkmark.svg") no-repeat center/20px auto;
  border: 0;
}

.floating-label-1 .form-check-input:not(:checked)[type=radio] {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 0;
}

.multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active {
  background-color: var(--level_05);
  color: var(--text_1);
}

.floating-label {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.floating-input,
.floating-select {
  font-size: 16px;
  display: block;
  padding: 21px 15px 0px 15px;
  width: 100%;
  height: 60px;
  background-color: var(--level_1);
  border: none;
  border: 1px solid var(--level_1);
  border-radius: var(--br-3);
  color: var(--text_1);
}

.floating-input_search svg {
  position: absolute;
  top: 20px;
  left: 15px;
}

.floating-input.search {
  padding: 0px 15px 0px 45px;
  background: var(--level_1);
  background-size: 50px 20px;
}

.floating-input.search::placeholder {
  color: var(--text_3);
}

.floating-input:focus,
.floating-select:focus {
  outline: none;
  border: 1px solid var(--focus);
}

.floating-input:focus.error,
.floating-input.error {
  border: 1px solid var(--red_1);
}

div.error {
  margin-top: -12px;
  margin-bottom: 20px;
}

.error-text {
  color: var(--red_1);
  font-size: 13px;
}

.common-form-error,
.common-form-success-message {
  margin-top: 20px;
  margin-bottom: 20px;
}

.success-text {
  color: var(--green_1);
  font-size: 16px;
}

.floating-label label {
  color: var(--text_2);
  font-size: 16px;
  line-height: 140%;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 18px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.floating-input:focus~label,
.floating-input:not(:placeholder-shown)~label {
  top: 9px;
  font-size: 13px;
  line-height: 140%;
  color: var(--text_2);
}

.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
  top: 9px;
  font-size: 13px;
  line-height: 140%;
  color: var(--text_2);
}

.floating-select {
  background: var(--level_1) url("../img/arrow.svg") no-repeat center right;
  background-size: 50px 20px;
  cursor: pointer;
}

.floating-label-3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: var(--br-3);
  background-color: var(--level_1);
  margin-bottom: 20px;
  padding-left: 15px;
  color: var(--text_1);
}

.floating-label-3 .form-check-label {
  width: auto;
  cursor: pointer;
  padding-top: 7px;
}

.floating-label-3 .form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: -1px;
}

.half {
  width: calc(50% - 10px);
}

@media (max-width: 768px) {
  .half {
    width: 100%;
  }
}

/* active state */
.floating-input:focus~.bar:before,
.floating-input:focus~.bar:after,
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after,
.floating-textarea:focus~.bar:before,
.floating-textarea:focus~.bar:after,
{
width: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.floating-textarea {
  min-height: 120px;
  padding: 26px 15px 0px 15px;
  overflow: hidden;
  overflow-x: hidden;
  height: auto;
}

/* active state */
.floating-input:focus~,
.floating-select:focus~ {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/*==============================
  Shopping List
==============================*/
.shopping-list h4:first-child {
  font-size: 24px;
  margin: 0 0 20px 0;
}

.shopping-list h4 {
  font-size: 24px;
  margin: 40px 0 20px 0;
}

.product-2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--level_2);
}

.product-2 input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.product-2 label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 10px 0 0 15px;
  color: var(--text_1);
  cursor: pointer;
  font-size: 16px;
}

.product-2 .name {
  color: var(--text_1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-2 .value {
  color: var(--text_1);
  white-space: nowrap;
}

.right-sidebar {
  position: sticky;
  top: 20px;
  height: 300px;
}

.result-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  padding: 30px 30px 5px 30px;
  background-color: var(--level_1);
  border-radius: var(--br-2);
  color: var(--text_1);
  text-align: left;
}

.result-banner span {
  width: 100%;
  text-align: left;
}

.result-banner .title {
  font-size: 13px;
  line-height: 140%;
  color: var(--text_2);
  margin-bottom: 5px;
}

.result-banner .value {
  font-size: 16px;
  line-height: 140%;
  color: var(--text_1);
  margin-bottom: 15px;
}

.result-banner .value.summ {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}

.compaund-banner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}

.compaund-cell {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 20px;
  background-color: var(--level_1);
  border-radius: var(--br-2);
  color: var(--text_1);
  text-align: left;
}

.compaund-cell.half {
  width: calc(50% - 10px);
}

.compaund-cell:last-child {
  margin-bottom: 0px;
}

.compaund-cell h3 {
  font-size: 24px;
  color: var(--text_1);
}

.compaund-cell span {
  font-size: 15px;
  line-height: 125%;
  color: var(--text_2);
  margin-bottom: 10px;
}

/*==============================
  Privacy
==============================*/
.privacy {
  padding-bottom: 80px;
}

.policy-subtitle {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--level_4);
}

.personal__legal-note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--level_4);
}

.personal__legal-note a {
  color: var(--text_2);
}

.privacy h3 {
  padding: 30px 0 20px 0;
}

.privacy a {
  color: var(--link_1);
}

.privacy-ul {
  color: var(--text_1);
}

.privacy-ul li {
  padding: 0 0 10px 30px;
  background: transparent url("../img/checkmark.svg") no-repeat 0px 0px/20px 20px;
}

.privacy-table {
  width: 100%;
  margin: 16px 0 24px;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--text_1);
}

.privacy-table th,
.privacy-table td {
  padding: 10px 12px;
  border: 1px solid var(--level_2);
  text-align: left;
  vertical-align: top;
}

.privacy-table thead th {
  background-color: var(--level_05);
  font-weight: 500;
}

@media (max-width: 575px) {
  .privacy-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/*==============================
  Complete
==============================*/
.complete {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-start;
}

.complete .chat-message {
  background-color: var(--brand_1);
  color: var(--btn-text);
  border-radius: var(--br-2);
  margin-left: 15px;
  padding: 15px 20px;
  font-size: 18px;
}

.cssanimation,
.cssanimation span {
  animation-duration: .5s;
  animation-fill-mode: both;
}

.cssanimation span {
  display: inline-block
}

.fadeInBottom {
  animation-name: fadeInBottom
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1
  }
}

/*==============================
  Recommendation
==============================*/
.recommendation {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  margin-bottom: 10px;
}

.recommendation li {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-end;
}

.recommendation li .chat-message-text {
  background-color: var(--level_1);
  color: var(--level_100);
  border-radius: var(--br-0);
  margin: 0 0 5px 50px;
  padding: 15px 20px;
  font-size: 16px;
  max-width: 500px;
}

.chat-message-1 img {
  display: none;
}

.chat-message-1:last-child img {
  display: block;
}

.chat-message-1:last-child .chat-message-text {
  margin: 0 0 5px 10px;
}

/*==============================
  Chat
==============================*/
.chat-title {
  position: fixed;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0 0 0;
  height: 40px;
  width: 100%;
}

.chat-title h4 {
  padding: 10px 0 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text_1);
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 375px) {
  .chat-title h4 {
    padding: 8px 0 0 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text_1);
    font-size: 20px;
    font-weight: 600;
  }
}

.chat-title span {
  display: block;
  font-size: 15px;
  color: var(--text_2);
  padding: 5px 0 0 0;
}

.sidebar.chat-sidebar {
  background-color: var(--level_1);
  width: 220px;
}

.chat__nav-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 0;
  width: 100%;
  padding: 0 10px;
}

.chat__nav-item-wrapper {
  width: 200px;
  margin-bottom: 10px;
  background-color: var(--level_1);
  border: 0;
  border-radius: var(--br-2);
}

.chat__nav-item-wrapper:hover {
  background-color: var(--level_2);
}

.chat__nav-item-wrapper.chat-active, .chat__nav-item-wrapper.chat-active:hover {
  background-color: var(--level_0);
}

.chat-active.active-1 {border: 0}

.chat__nav-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  color: var(--level_100);
}

.chat__nav-owner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  padding: 0;
  gap:10px;
}

.chat__nav-name {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.chat__nav-item img {
  width: 30px;
  height: 30px;
  border-radius: var(--br-4);
}

.chat__nav-info {
  padding: 5px 0 0 0;
}

.badge {
  min-width: 20px;
  max-width: 40px;
  text-align: center;
  line-height: 20px;
  padding: 0 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--btn-text);
  border-radius: var(--br-4);
  background: var(--brand_main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.chat {
  width: 100%;
  height: calc(100vh - 190px);
  min-height: 100%;
  padding: 0;
  margin: 0 auto;
  overflow-y: scroll;
  transform: rotate(180deg);
  direction: rtl;
}

.chat__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  
}

.chat__message {
  font-size: 16px;
  padding: 10px 20px;
  color: var(--level_100);
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 15px 0;
  transform: rotate(180deg);
  direction: ltr;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-start;
  gap: 20px;
}

.chat__message-avatar {
  background-color: var(--level_2);
  width: 45px;
  height: 45px;
  padding: 0px;
  border-radius: var(--br-3);
  overflow: hidden;
}

.chat__message-avatar-text,
.chat__message-avatar-text:hover {
  width: 45px;
  line-height: 45px;
  text-align: center;
  color: var(--level_6);
  font-size: 18px;
  font-weight: 600;
}

.chat__message-avatar img {
  max-width: 45px;
  border-radius: var(--br-3);
}

.chat__message-author {
  font-size: 18px;
}

.chat__message-author span {
  font-size: 13px;
  color: var(--level_6);
  padding: 0 0 0 10px;
}

.chat__form {
  width: 55%;
  position: fixed;
  z-index: 100;
  bottom: 30px;
}
@media (max-width: 1200px) {
  .chat__form {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .chat__form {
    width: 91%;
  }
}
@media (max-width: 768px) {
  .chat__form {
    width: 92%;
  }
}
@media (max-width: 576px) {
  .chat__form {
    width: 93%;
  }
}

.chat__form-wrapper {
  min-width: 100%;
  min-height: 65px;
  margin: 0;
  padding: 0;
  background: var(--level_1);
  border-radius: var(--br-3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.chat__form-wrapper textarea {
  min-width: 100%;
  height: 60px;
  background-color: transparent;
  font-size: 17px;
  color: var(--level_100);
}

.chat__form-wrapper textarea::placeholder {
  color: var(--level_6);
  opacity: .6;
}

.chat__form-wrapper button {
 position: absolute;
 right: 15px;
}

.auto-expand {
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  border-radius: var(--br-2);
  padding: 18px 60px 18px 25px;
  transition: all 0.2s ease;
  resize: none;
  border: 0;
  
  &:focus {
    outline: 0;
  }
}

.icon {
  width: 20px;
  height: 20px;
  fill: var(--icon);
}

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

.btn-primary {
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--btn-text);
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-weight: 400;
  margin: 15px 0px;
  padding: 0 15px;
  transition: 0.3s ease;
  white-space: nowrap;
  border: 0;
}

.btn-primary:hover {
  background-color: var(--brand_1);
  color: var(--btn-text);
  opacity: 1;
  transform: scale3d(1.02, 1.02, 1.02);
  outline: 0; 
  box-shadow: 0;
  border: 0;
}

.btn-primary:focus {
  background-color: var(--brand_1);
  color: var(--btn-text);
  transform: scale3d(.99, .99, .99);
  outline: 0; 
  box-shadow: 0;
  border: 0;
}

.btn-primary:active {
  background-color: var(--brand_1);
  color: var(--btn-text);
  outline: 0; 
  box-shadow: 0;
  border: 0;
}

.btn-primary:disabled,
.btn-primary[disabled],
.btn-primary[disabled]:hover,
.btn-primary[disabled]:visited,
.btn-primary[disabled]:active {
  background-color: var(--brand_1_disabled);
  cursor: not-allowed;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.2);
  transform: none;
}

.btn-secondary {
  border-radius: var(--br-3);
  background-color: var(--level_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-weight: 400;
  margin: 15px 0px;
  padding: 0 15px;
  transition: 0.3s ease;
  white-space: nowrap;
  border: 0;
}

.btn-secondary:hover {
  background-color: var(--level_1);
  color: var(--text_1);
  opacity: 1;
  transform: scale3d(1.02, 1.02, 1.02);
  outline: 0; 
  box-shadow: 0;
  border: 0;
}

.btn-secondary:focus {
  background-color: var(--level_1);
  color: var(--text_1);
  transform: scale3d(.99, .99, .99);
  outline: none;
  box-shadow: none;
  border: 0;
}

.btn-secondary:active {
  background-color: var(--level_1);
  color: var(--text_1);
  outline: 0; 
  box-shadow: 0; 
  border: 0;
}

.btn-outline {
  border-radius: var(--br-3);
  background-color: var(--level_0);
  border: 1px solid var(--level_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-weight: 400;
  margin: 15px 0px;
  padding: 0 15px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  color: var(--text_1);
  transform: scale3d(1.02, 1.02, 1.02);
  outline: 0; 
  box-shadow: 0;
}

.btn-outline:focus {
  color: var(--text_1);
  transform: scale3d(.99, .99, .99);
  outline: 0; 
  box-shadow: 0;
}

.btn-outline:active {
  color: var(--text_1);
  outline: 0; 
  box-shadow: 0;
}

.btn-icon-m {
  padding: 0 10px;
}
.icon-text-button svg {
  margin-right: 10px;
}

.btn-full {
  width: 100%;
}

.btn-s {
  height: 30px;
}

.btn-m {
  height: 40px;
}

.btn-l {
  height: 50px;
}

.btn-xl {
  height: 60px;
  padding: 0 25px;
}

/*==============================
  Dialog
==============================*/
.dialog {
  width: auto;
  max-width: 500px;
  max-height: calc(100% - 40px);
  padding: 30px 30px 20px 30px;
  position: fixed;
  z-index: 999;
  bottom: 20px;
  right: 20px;
  backdrop-filter: blur(30px);
  background-color: var(--level_1);
  border: 1px solid #333333;
  border-radius: var(--br-2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.dialog-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.dialog-body {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 0;
}

.dialog-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.dialog-bottom a {
  margin-left: 20px;
}

.close-dialog {
  position: absolute;
  top: -0px;
  right: 15px;
  margin-left: 15px;
}

@media (max-width: 576px) {
  .dialog {
    left: 20px;
  }
}

.dialog-hide {
  display: none;
}

/*==============================
  Autofill
==============================*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: inherit;
  -webkit-text-fill-color: var(--text_1);
  -webkit-box-shadow: inherit;
  transition: background-color 5000s ease-in-out 0s;
  font-size: inherit;
}

input:-webkit-autofill::first-line {
  font-size: 16px;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Roboto Rouble', sans-serif;
  font-weight: 400;
}

/*==============================
  Header
==============================*/
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 70px;
  background-color: var(--level_0);
  border-bottom: 0;
  z-index: 101;
}

.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  padding: 0 30px 0 15px;
}

@media (max-width: 1200px) {
  .header__content {
    padding: 0 15px 0 15px;
  }
}

@media (max-width: 576px) {
  .header__logo h3 {
    padding-right: 90px;
  }
}

.header__logo {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  width: auto;
  color: var(--text_1);
  font-size: 18px;
  font-weight: 600;
}

.header__logo a {
  color: var(--text_1);
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header__logo img {
  width: 100px;
  height: auto;
  display: block;
}

.header__actions {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-left: auto;
  margin-right: 0px;
  gap:30px;
}

@media (max-width: 992px) {
  .header__actions {
    margin-right: 0px;
  }
}

.header__action .icon {
  background-color: var(--level_0);
  width: 20px;
  height: 20px;
}

.header__action .avatar {
  background-color: var(--level_2);
  width: 40px;
  height: 40px;
  padding: 0px;
  border-radius: var(--br-0);
}

.avatar .avatar-text,
.avatar .avatar-text:hover {
  width: 100%;
  line-height: 40px;
  text-align: center;
  color: #666666;
  font-size: 18px;
  font-weight: 600;
}

.counter {
  margin-top: -15px;
  margin-left: -15px;
  width: 15px;
  height: 15px;
}

.counter.hide {
  display: none;
}

.ring-container {
  position: relative;
}

.circle {
  width: 5px;
  height: 5px;
  background-color: var(--brand_1);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.ringring {
  border: 3px solid var(--brand_1);
  -webkit-border-radius: 30px;
  height: 15px;
  width: 15px;
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-animation: pulsate 1.5s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0.0
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0.0;
  }

  50% {
    opacity: 1.0;
  }

  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0.0;
  }
}

.header__nav-chat {
  display: block;
  position: relative;
}

.header__nav-chat .badge {
  display: block;
  margin-top: 2px;
}

@media (max-width: 575px) {
  .header__nav-chat .badge {
    display: block;
    margin-top: -20px;
  }
}

.header__action:hover .header__drop {
  pointer-events: auto;
  opacity: 1;
  z-index: 99;
  margin-top: 0;
}

.header__action-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  cursor: pointer;
}

.header__action-btn span {
  display: none;
}

.header__action-btn svg {
  transition: fill 0.5s ease;
}

.header__action-btn span:hover {
  color: var(--link_2_hover);
}

.header__btn {
  position: absolute;
  width: 20px;
  height: 20px;
  display: block;
  right: 15px;
  top: 24px;
}

.header__btn span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: var(--text_1);
  border-radius: var(--br-5);
  transition: 0.5s ease;
}

.header__btn span:first-child {
  top: 2px;
}

.header__btn span:nth-child(2) {
  top: 10px;
  width: 20px;
}

.header__btn span:last-child {
  top: 18px;
  width: 20px;
}

.header__btn:hover span {
  background-color: var(--brand_1);
}

.header__btn--active span {
  background-color: var(--brand_1);
}

.header__btn--active span:first-child {
  transform: rotate(-45deg);
  top: 10px;
}

.header__btn--active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.header__btn--active span:last-child {
  width: 20px;
  transform: rotate(45deg);
  top: 10px;
}

.header__drop {
  position: absolute;
  top: 55px;
  right: 20px;
  background-color: var(--level_0);
  padding: 0px;
  border-radius: var(--br-2);
  width: 160px !important;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  transition: 0.4s ease;
  margin-top: -5px;
  overflow: hidden;
  box-shadow: var(--shadow_1);
}

.header__drop a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  color: var(--link_2);
  border-bottom: 1px solid var(--level_1);
  transition: 0.4s ease;
}

.header__drop a:hover {
  background-color: var(--level_05);
}

@media (min-width: 400px) {
  .header__action {
    margin-left: 0px;
  }

  .header__action:first-child {
    margin-left: 0;
  }
}

.header__action--signin {
  width: auto;
  padding-left: 20px;
}

@media (min-width: 576px) {
  .header__action--signin {
    width: auto;
    padding-left: 20px;
  }

  .header__action--signin:hover a span,
  .header__action--signin:hover button span {
    color: var(--link_2_hover);
  }

  .header__action--signin:hover a svg,
  .header__action--signin:hover button svg {
    fill: var(--brand_1);
  }

  .header__action-btn span {
    display: block;
    white-space: nowrap;
    color: var(--link_2);
    font-size: 16px;
    margin-right: 10px;
    transition: color 0.5s ease;
  }

  .header__action .icon {
    display: none;
  }

  .header__content {
    /*padding: 0 30px 0 30px;*/
  }

  .header__search {
    padding: 0 30px;
  }

  .header__search button {
    right: 75px;
  }

  .header__search button.close {
    right: 30px;
  }

  .header__btn {
    right: 30px;
  }

  .header__drop {
    width: 260px;
  }
}

@media (min-width: 768px) {
  .header__action {
    margin-left: 0px;
  }

  .header__action--signin {
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .header {
    position: relative;
    padding-left: 240px;
  }

  .header--mobile {
    display: none;
  }

  .header__logo,
  .header__btn,
  .header__btn-1 {
    display: none;
  }

  .header__actions {
    margin-right: 0px;
  }

  .header__action--search {
    display: none;
  }

  .header__action--cart .header__drop {
    display: block;
  }

  .header__search {
    position: relative;
    top: auto;
    left: auto;
    width: 320px;
    padding: 0;
    border: none;
    background-color: transparent;
  }

  .header__search input {
    padding: 0 60px 0 20px;
    width: 100%;
  }

  .header__search button {
    right: 20px;
  }

  .header__search button.close {
    display: none;
  }

  .header__search--active {
    top: auto;
  }

  .header__nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 60px;
  }

  .header__nav--user {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    margin-left: auto;
    margin-right: 0px;
  }

  .header__nav a,
  .header__nav--user a {
    font-size: 16px;
    color: var(--text_1);
    margin-right: 30px;
  }

  .header__nav a:last-child,
  .header__nav--user a:last-child {
    color: var(--text_1);
    margin-right: 30px;
  }

  .header__nav a:hover,
  .header__nav--user a:hover {
    color: var(--brand_1);
  }

  .header__all {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
    font-size: 13px;
    font-weight: 400;

    margin-bottom: 15px;
    height: 24px;
    border-radius: 8px 8px 0 0;
  }

  .header__all:hover {
    color: var(--brand_1);
  }
}

@media (max-width: 768px) {
  .header__action .username {
    display: none;
  }
}

/*==============================
  Header-1
==============================*/
.header-1 {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 70px;
  background-color: transparent;
  border-bottom: 0;
  z-index: 101;
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  padding-right: 30px;
  padding-left: 15px;
}

.close-button {
  position: fixed;
  right: 20px;
  top: 0px;
}

.nav-button {
  position: fixed;
  right: 80px;
  top: 0px;
}

@media (max-width: 576px) {
  .close-button {
    position: fixed;
    right: 10px;
    top: 0px;
  }

  .nav-button {
    position: fixed;
    right: 60px;
    top: 0px;
  }
}

/*==============================
  Sidebar
==============================*/
.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--level_1);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 101;
  width: 180px;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  border-right: 0;
}

.sidebar__logo {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  width: 280px;
}

.sidebar__logo-chat {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  width: 180px;
}

.sidebar__logo-text {
  padding: 0;
  color: var(--text_1);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text_1);
  transition: transform 0.5s ease;
}

.sidebar__logo-text:hover {
  color: var(--text_1);
}

.sidebar__logo.ml {
  padding-left: 20px;
}

.sidebar__logo img {
  width: auto;
  height: 50px;
  display: block;
  color: var(--text_1);
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 0px;
  width: 100%;
}

.sidebar__nav-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: var(--link_2);
  padding: 10px 20px 10px 20px;
  transition: 0.4s ease;
  position: relative;
  width: 100%;
}

.sidebar__nav-link svg {
  fill: #c0c0c0;
  width: 22px;
  height: auto;
  transition: fill 0.5s;
  margin-right: 12px;
  margin-bottom: 2px;
}

.sidebar__nav-link svg:last-child {
  width: 16px;
  margin-right: 0;
  margin-top: 3px;
  margin-left: 2px;
  margin-bottom: 0;
}

.sidebar__nav-link:hover {
  color: var(--link_2_hover);
}

.sidebar__nav-link:hover svg {
  fill: var(--link_2_hover);
}

.sidebar__nav-link--active,
.sidebar__nav-link[aria-expanded="true"] {
  color: var(--btn-text);
  background-color: var(--brand_1);
}

.sidebar__nav-link--active:hover {
  color: var(--btn-text);
  background-color: var(--brand_1);
}

.sidebar__nav-link--active svg,
.sidebar__nav-link[aria-expanded="true"] svg {
  fill: var(--brand_1);
}

.sidebar__nav-link--active:hover svg,
.sidebar__nav-link[aria-expanded="true"]:hover svg {
  fill: var(--brand_1);
}

.sidebar__nav-link[aria-expanded="true"] {
  margin-bottom: 15px;
}

.sidebar__nav-link--active {
  cursor: default;
}

.sidebar__nav-item {
  width: 100%;
  display: block;
  position: relative;
}

.sidebar__nav-item:last-child {
  margin-bottom: 0;
}

.sidebar__menu {
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  overflow: hidden;
  background-color: #222227;
  transition: 0.4s ease;
  height: auto;
}

.sidebar__menu--scroll {
  height: 165px;
  overflow: hidden;
}

.sidebar__menu li {
  padding: 0;
  margin-bottom: 15px;
  position: relative;
}

.sidebar__menu li:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brand_1);
  top: 50%;
  left: 25px;
  margin-top: -2px;
}

.sidebar__menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.sidebar__menu li:last-child:before {
  top: 11px;
}

.sidebar__menu li:first-child {
  margin-top: 0;
  padding-top: 20px;
}

.sidebar__menu li:first-child:before {
  top: 31px;
}

.sidebar__menu a {
  font-size: 14px;
  color: var(--text_1);
  display: block;
  font-weight: 400;
}

.sidebar__menu a:hover {
  color: var(--brand_1);
}

.sidebar__menu a.active {
  color: var(--text_1);
  cursor: default;
}

.sidebar--active {
  transform: translateX(0);
}

@media (min-width: 375px) {
  .sidebar__logo {
    padding: 0 20px;
    color: var(--text_1);
  }

  .sidebar__nav-link {
    margin-left: 0px;
  }

  .sidebar__menu li {
    padding: 0px;
  }

  .sidebar__menu li:before {
    left: 0px;
  }
}

@media (min-width: 1200px) {
  .sidebar {
    transform: translateX(0);
  }

  .sidebar__nav {
    max-height: calc(100vh - 332px);
  }
}

@media (max-width: 576px) {
  .sidebar__logo.ml {
    padding-left: 15px;
  }

  .sidebar__nav-link {
    padding: 10px 20px 10px 15px;
  }
}

/*==============================
  Day Item
==============================*/
.list-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.sidebar.day {
  background-color: var(--level_0);
  width: 320px;
}

.day-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 0 20px 0 20px;
  width: 100%;
}

.nav-item {
  width: 100%;
  max-width: 280px;
  margin-bottom: 10px;
  background-color: var(--level_1);
  border: 1px solid var(--level_1);
  border-radius: var(--br-3);
}

.day-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 15px;
  color: var(--text_1);
}

.active-1 {
  border: 1px solid var(--focus);
}

.day-item img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: var(--br-4);
}

.day-item div {
  display: block;
  padding: 0px 0px 0px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.day-item span {
  display: block;
  font-size: 13px;
  color: var(--text_2);
}

.day-item-full {
  width: 100%;
  margin-bottom: 80px;
  background-color: var(--level_1);
  border-radius: var(--br-1);
}

.day-item-full img, .day-item-full video {
  display: block;
  width: 100%;
  border-radius: var(--br-1);
}

.day-item-full .day-content {
  border-bottom-left-radius: var(--br-1);
  border-bottom-right-radius: var(--br-1);
  padding: 30px;
}

.day-item-title {
  padding: 10px 0;
}

.description-title {
  font-size: 20px;
  margin: 30px 0 20px 0;
}

.day-item-full span {
  display: block;
  color: var(--text_2);
  padding-bottom: 10px;
}

.day-tr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 0 10px 0;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid var(--level_2);
}

.day-tr span {
  font-size: 18px;
  color: var(--text_1);
}

.day-item-full .day-buttons {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  padding-bottom: 0;
}

.day-item-full .day-buttons a {
  margin-bottom: 0;
  padding-bottom: 0;
}

/*.day-item-full .day-buttons button:first-child {
  margin: 20px 10px 0 0;
}
.day-item-full .day-buttons button:last-child {
  margin: 20px 0 0 10px;
}*/
.toolbar {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
}

.toolbar a,
.toolbar a img {
  margin-right: 10px;
}

@media (max-width: 576px) {
  .toolbar {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .toolbar a {
    margin: 0 0 20px 0;
  }
}

@media (min-width: 1200px) {
  .sidebar {
    transform: translateX(0);
  }

  .sidebar__nav {
    max-height: calc(100vh - 332px);
  }
}

/*==============================
  Player
==============================*/
.player {
  position: fixed;
  z-index: 102;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #16151a;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #222227;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.player__cover {
  width: 100%;
  max-width: 90px;
}

.player__cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--br-3);
  margin-bottom: 10px;
}

.player__track {
  font-size: 16px;
  line-height: 24px;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 400;
  color: #c0c0c0;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.player__track b {
  font-weight: 600;
  color: var(--text_1);
}

.player__content {
  width: 100%;
}

.player__btn {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #16151a;
  border-radius: 12px 12px 0 0;
  height: 40px;
  width: 90px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 103;
  color: var(--text_1);
  font-size: 14px;
  border: 1px solid #222227;
  border-bottom: none;
}

.player__btn svg {
  width: 18px;
  height: auto;
  fill: var(--brand_1);
  margin-right: 8px;
}

.player--active {
  transform: translateY(0);
}

@media (min-width: 1200px) {
  .player {
    width: 278px;
    padding: 20px 30px;
    transform: translateY(0);
  }

  .player__btn {
    display: none;
  }
}

.plyr__control {
  padding: 0;
}

.plyr__control svg {
  width: 24px;
  height: 24px;
  transition: fill 0.4s ease;
}

.plyr__control:hover {
  background-color: transparent !important;
}

.plyr__control:hover svg {
  fill: var(--brand_1);
}

.plyr__controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.plyr__actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.plyr__actions button {
  margin: 0 5px;
}

.plyr__tooltip {
  background-color: #222227;
  box-shadow: none;
  color: var(--text_1);
  font-size: 14px !important;
}

.plyr__tooltip:before {
  border-top-color: #222227;
}

.plyr__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.plyr__time {
  margin-left: 10px;
  color: #c0c0c0;
  font-size: 14px;
  line-height: 100%;
}

.plyr__volume {
  margin-right: auto;
}

.plyr__progress {
  width: 100%;
}

.plyr--audio .plyr__controls {
  padding: 0;
  color: var(--text_1);
  background-color: transparent;
}

.plyr--full-ui input[type="range"] {
  color: var(--brand_1);
}

/*==============================
  Main
==============================*/
.main {
  position: relative;
  margin-top: 70px;
  padding: 20px 0 60px;
}

.main-form {
  margin-bottom: 120px;
}

.main__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 80px;
}

.main-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 80px;
}

.main-title-1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 80px;
}

.main-title-1.no-header,
.main-title.no-header {
  /* margin-top: 40px; */
}

.main-form h4 {
  padding-bottom: 10px;
}

.main-form form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  border: 0;
}

.main-form-chart {
  padding-bottom: 40px;
}

.mtradio {
  /*justify-content: start;*/
  margin-top: 40px !important;
}

@media (max-width: 768px) {
  .mtradio {
    /* margin-top: 0px!important; */
  }

  .row--grid {
    margin-bottom: 60px;
  }

  .main {
    padding: 0;
  }
}

.mtradio h2 {
  margin-right: 20px;
}

h1,
.main__title h1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 600;
  color: var(--text_1);
  font-size: 36px;
  line-height: 120%;
  margin: 0px 20px 0px 0px;
  position: relative;
}

.main__title h1 b {
  font-weight: 600;
}

.main__title h1 a {
  color: var(--text_1);
}

.main__title h1 a:hover {
  color: var(--brand_1);
}

.main__title h2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 600;
  color: var(--text_1);
  font-size: 26px;
  line-height: 100%;
  margin: 0px 20px 0px 0px;
  position: relative;
}

.main__title h2 svg {
  width: 26px;
  height: auto;
  fill: var(--brand_1);
  margin-right: 10px;
}

.main__title h2 b {
  font-weight: 600;
}

.main__title h2 a {
  color: var(--text_1);
}

.main__title h2 a:hover {
  color: var(--brand_1);
}

.main__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 600;
  font-size: 24px;
  color: var(--text_1);
  margin-bottom: 0;
  line-height: 100%;
  position: relative;
}

.main__title p {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #c0c0c0;
  margin-top: 20px;
  margin-bottom: 0;
}

.main__title p b {
  font-weight: 600;
}

.main__title p a {
  color: var(--brand_1);
  text-decoration: underline;
}

.main__title p a:hover {
  text-decoration: none;
}

.main__title ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 0;
}

.main__title ol ol {
  padding-left: 15px;
  margin-top: 10px;
}

.main__title ol ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}

.main__title ol ol ol li {
  margin-top: 5px;
}

.main__title ol h4 {
  font-size: 16px;
  color: var(--text_1);
  display: inline-block;
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 600;
}

.main__title ol li {
  font-size: 16px;
  line-height: 24px;
  color: #c0c0c0;
  position: relative;
}

.main__title ol li b {
  font-weight: 600;
  color: #c0c0c0;
}

.main__title ol li a {
  color: #eb5757;
}

.main__title ol li a:hover {
  color: #eb5757;
  text-decoration: underline;
}

.main__title ol li:last-child {
  margin-bottom: 0;
}

.main__title ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}

.main__title--page {
  margin-bottom: 0;
  margin-top: 50px;
}

.main__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--level_100);
  font-weight: 400;
  background-color: var(--level_2);
  padding: 5px 10px;
  border-radius: var(--br-2);
}

.main__link svg {
  width: 22px;
  height: auto;
  fill: #c0c0c0;
  margin-left: 5px;
  transition: fill 0.5s ease;
}

.main__link:hover {
  color: var(--btn-text);
  background-color: var(--brand_1);
}

.main__link:hover svg {
  fill: var(--brand_1);
}

.main__carousel-wrap {
  position: relative;
  margin-top: 20px;
}

.main__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.main__carousel .owl-dot {
  margin-right: 10px;
}

.main__carousel .owl-dot:last-child {
  margin-right: 0;
}

.main__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: var(--br-5);
  background-color: #c0c0c0;
  transition: 0.5s ease;
}

.main__carousel .owl-dot.active span {
  width: 20px;
  background-color: var(--brand_1);
}

.main__nav {
  display: none;
}

.main__list {
  margin-top: 20px;
}

.main__list--dashbox {
  margin-top: 0;
}

.main__list--dashbox .single-item__title {
  max-width: 80px;
}

.main__list--dashbox .single-item__time {
  font-size: 12px;
}

.main__filter {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  background-color: #16151a;
  position: relative;
}

.main__filter:before {
  content: '';
  position: absolute;
  display: block;
  left: -15px;
  right: -15px;
  width: auto;
  top: 0;
  border-top: 1px solid #222227;
  border-bottom: 1px solid #222227;
  bottom: 0;
  background-color: #16151a;
}

.main__filter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.main__filter-search {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.main__filter-search input {
  width: 100%;
  height: 40px;
  background-color: #222227;
  color: var(--text_1);
  font-size: 14px;
  border-radius: var(--br-4);
  border: none;
  padding: 0 60px 0 20px;
}

.main__filter-search input:focus {
  border-color: #222227;
}

.main__filter-search button {
  position: absolute;
  right: 20px;
  top: 0;
  height: 40px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.main__filter-search button svg {
  width: 20px;
  height: auto;
  fill: #c0c0c0;
  transition: 0.5s ease;
}

.main__filter-search button:hover svg {
  fill: var(--brand_1);
}

.main__load {
  width: 160px;
  height: 50px;
 border-radius: var(--br-4);
  background-color: var(--brand_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 400;
  margin: 30px auto 0;
}

.main__load:hover {
  color: var(--brand_1);
  background-color: #222227;
}

.main__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}

.main__tabs li {
  margin-top: 15px;
  margin-right: 15px;
}

.main__tabs li:last-child {
  margin-right: 0;
}

.main__tabs a {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  color: #c0c0c0;
  font-size: 17px;
}

.main__tabs a span {
  font-size: 15px;
  font-weight: 600;
  margin-right: 3px;
  margin-top: 3px;
  color: #c0c0c0;
  transition: color 0.5s ease;
}

.main__tabs a:hover {
  color: var(--text_1);
}

.main__tabs a.active {
  color: var(--text_1);
}

.main__tabs a.active span {
  color: var(--brand_1);
}

.main__table {
  width: 100%;
  min-width: 520px;
  border-spacing: 0;
}

.main__table thead {
  border-bottom: 1px solid #222227;
}

.main__table thead th {
  font-size: 14px;
  color: #c0c0c0;
  font-weight: 400;
  padding: 0 10px 20px 0;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
}

.main__table thead th a {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #c0c0c0;
}

.main__table thead th a svg {
  width: 20px;
  height: auto;
  fill: #c0c0c0;
  transition: fill 0.5s ease;
}

.main__table thead th a:hover {
  color: var(--text_1);
}

.main__table thead th a:hover svg {
  fill: var(--brand_1);
}

.main__table thead th a.active {
  color: var(--text_1);
}

.main__table thead th a.active svg {
  width: 16px;
  fill: var(--brand_1);
}

.main__table tbody tr {
  border-bottom: none;
  background-color: transparent;
  border-top: 1px solid #222227;
}

.main__table tbody td {
  padding: 0;
  background-color: transparent;
  border: 0px solid transparent;
}

.main__table tbody td:first-child .main__table-text {
  border-radius: 12px 0 0 12px;
}

.main__table tbody td:last-child .main__table-text,
.main__table tbody td:last-child .main__table-btns {
  border-radius: 0 12px 12px 0;
}

.main__table tbody td .main__table-text {
  background-color: transparent;
  padding: 15px 20px 15px 0;
}

.main__table-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #c0c0c0;
  font-weight: 400;
  line-height: 30px;
  padding: 20px;
  white-space: nowrap;
}

.main__table-text svg {
  width: 18px;
  height: auto;
  transition: fill 0.5s ease;
  fill: #c0c0c0;
  margin-right: 5px;
}

.main__table-text a {
  font-size: 16px;
  color: var(--text_1);
}

.main__table-text a:hover {
  color: var(--brand_1);
}

.main__table-text--number a {
  font-size: 14px;
  line-height: 22px;
  border-bottom: 2px dashed var(--brand_1);
}

.main__table-text--price {
  font-weight: 600;
  color: #c0c0c0;
  font-size: 16px;
}

.main__table-text--red {
  color: #eb5757;
}

.main__table-text--red svg {
  fill: #eb5757;
}

.main__table-text--green {
  color: var(--brand_1);
}

.main__table-text--green svg {
  fill: var(--brand_1);
}

.main__table-text--grey {
  color: #c0c0c0;
}

.main__table-img {
  width: 100px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: var(--br-4);
  overflow: hidden;
  padding: 15px 20px 15px 0;
}

.main__table-img img {
  width: 100%;
  height: auto;
  border-radius: var(--br-4);
}

@media (min-width: 400px) {
  .main__list--dashbox .single-item__title {
    max-width: 110px;
  }
}

@media (min-width: 576px) {
  .main {
    padding: 20px 15px 50px;
  }

  .main__list--dashbox .single-item__title {
    max-width: 150px;
  }

  .main__list--dashbox .single-item__time {
    font-size: 14px;
  }

  .main__filter:before {
    left: -30px;
    right: -30px;
  }
}

@media (min-width: 768px) {
  .main {
    padding: 30px 15px 70px;
  }

  .main__title {
    margin-top: 80px;
    margin-bottom: 0;
  }

  .main__title h1 {
    font-size: 36px;
  }

  .main__title h2 {
    font-size: 30px;
  }

  .main__title h2 svg {
    width: 30px;
  }

  .main__title p:last-child {
    margin-bottom: 10px;
  }

  .main__title--sidebar {
    margin-bottom: 10px;
  }

  .main__carousel .owl-dots {
    margin-top: 30px;
  }

  .main__list {
    margin-top: 30px;
  }

  .main__list--dashbox {
    margin-top: 0;
  }

  .main__filter {
    padding: 0;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
    height: 70px;
  }

  .main__filter-wrap {
    padding: 0;
  }

  .main__load {
    margin: 40px auto 0;
  }

  .main__tabs li {
    margin-top: 20px;
    margin-right: 20px;
  }

  .main__tabs li:last-child {
    margin-right: 0;
  }

  .main__filter-search {
    margin-bottom: 0;
    width: 180px;
    margin-right: 30px;
  }

  .main__filter-search input {
    width: 180px;
  }
}

@media (min-width: 992px) {
  .main__filter-search {
    margin-bottom: 0;
    width: 250px;
  }

  .main__filter-search input {
    width: 250px;
  }

  .main__title--sidebar {
    margin-top: 30px;
  }

  .main__list--dashbox .single-item__title {
    max-width: 200px;
  }
}

@media (min-width: 1200px) {
  .main {
    padding: 0 40px 70px 220px;
    margin-top: 0;
  }

  .main.day {
    padding: 0 40px 70px 360px;
    margin-top: 0;
  }

  .nosb {
    padding: 0px !important;
  }

  .main__carousel .owl-dots {
    justify-content: center;
    padding-right: 20px;
  }

  .main__nav {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0 10px 0 10px;
    right: 0;
    top: calc(50% - 40px);
    z-index: 2;
    background-color: var(--level_1);
    border: 1px solid var(--level_0);
    border-radius: var(--br-4);
  }

  .main__nav svg {
    width: 30px;
    height: auto;
    fill: none;
    stroke: var(--text_1);
    transition: fill 0.5s ease;
  }

  .main__nav:hover svg {
    fill: none;
    stroke: var(--brand_1);
  }

  .main__nav--prev {
    left: -20px;
  }

  .main__nav--next {
    right: -20px;
  }

  .main__nav--hero {
    top: calc(50% - 40px);
  }

  .main__nav--hero svg {
    fill: none;
    stroke: white;
  }

  .main__nav--hero.main__nav--prev {
    left: 0px;
  }

  .main__nav--hero.main__nav--next {
    right: 0px;
  }

  .main__nav--hero:hover svg {
    fill: none;
    stroke: var(--brand_1);
  }

  .main__filter {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: var(--text_1);
    border: none;
  }

  .main__filter-search {
    margin-bottom: 0;
    width: 220px;
  }

  .main__filter-search input {
    width: 220px;
  }
}

/*==============================
  Breadcrumb
==============================*/
.breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.breadcrumb__item {
  font-size: 14px;
  color: #c0c0c0;
  transition: 0.5s ease;
  position: relative;
  margin-right: 34px;
}

.breadcrumb__item:before {
  content: '';
  position: absolute;
  left: 100%;
  top: 1px;
  bottom: 0;
  width: 34px;
  background: url("../img/breadcrumb.svg") no-repeat center/16px auto;
}

.breadcrumb__item:hover {
  color: #c0c0c0;
}

.breadcrumb__item:last-child {
  margin-right: 0;
}

.breadcrumb__item:last-child:before {
  display: none;
}

.breadcrumb__item--active {
  cursor: default;
  margin-right: 0;
}

.breadcrumb__item--active:before {
  display: none;
}

.breadcrumb__item--active:hover {
  color: #c0c0c0;
}

.breadcrumb a {
  color: #c0c0c0;
}

.breadcrumb a:hover {
  color: var(--brand_1);
}

@media (min-width: 1200px) {
  .breadcrumb {
    margin-top: 25px;
  }

  .breadcrumb--hidden-desk {
    display: none;
  }
}

/*==============================
  Profile
==============================*/
.profile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #16151a;
  padding: 20px 20px 0;
  border-radius: var(--br-4);
  position: relative;
  margin-top: 20px;
  border: 1px solid #222227;
}

.profile__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.profile__tabs li {
  margin-right: 20px;
}

.profile__tabs li:last-child {
  margin-right: 0;
}

.profile__tabs a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 40px;
  color: #c0c0c0;
  position: relative;
  font-size: 14px;
}

.profile__tabs a:hover {
  color: var(--text_1);
}

.profile__tabs a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-color: var(--brand_1);
  transition: 0.5s ease;
  transform: translateY(2px);
  opacity: 0;
  border-radius: 2px 2px 0 0;
}

.profile__tabs a.active {
  color: var(--text_1);
  cursor: default;
}

.profile__tabs a.active:before {
  opacity: 1;
  transform: translateY(0);
}

.profile__logout {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  position: absolute;
  top: 20px;
  right: 20px;
}

.profile__logout span {
  display: none;
  font-size: 16px;
  color: #c0c0c0;
  margin-right: 10px;
  transition: 0.5s ease;
}

.profile__logout svg {
  fill: #c0c0c0;
  width: 24px;
  height: auto;
  transition: fill 0.5s ease;
}

.profile__logout:hover span {
  color: var(--text_1);
}

.profile__logout:hover svg {
  fill: var(--brand_1);
}

.profile__user {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.profile__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.profile__meta h3 {
  color: var(--text_1);
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
  line-height: 100%;
}

.profile__meta span {
  color: #c0c0c0;
  font-size: 12px;
  line-height: 100%;
}

.profile__avatar {
  display: block;
  position: relative;
  width: 40px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--br-4);
  margin-right: 15px;
}

.profile__avatar img {
  width: 100%;
}

@media (min-width: 768px) {
  .profile {
    margin-top: 30px;
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .profile__tabs {
    border-bottom: none;
    margin-bottom: 0;
    width: auto;
    margin-right: auto;
  }

  .profile__tabs li {
    margin-right: 30px;
  }

  .profile__tabs li:last-child {
    margin-right: 0;
  }

  .profile__tabs a {
    align-items: center;
    height: 70px;
    font-size: 16px;
  }

  .profile__user {
    margin-bottom: 0;
    margin-right: 60px;
  }

  .profile__logout {
    position: relative;
    top: auto;
    right: auto;
  }

  .profile__logout span {
    display: block;
  }
}

/*==============================
  Hero
==============================*/
.hero {
  display: block;
  width: 100%;
}

/* for slider */
.hero-container {
  padding: 0px 0 40px 0;
}

.hero .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0px;
  position: relative;
  padding-top: 30px;
}

.hero .owl-dot {
  margin-right: 10px;
}

.hero .owl-dot:last-child {
  margin-right: 0;
}

.hero .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: var(--br-5);
  background-color: var(--text_1);
  transition: 0.5s ease;
}

.hero .owl-dot.active span {
  width: 20px;
  background-color: var(--brand_1);
}

.hero .owl-stage-outer {
  border-radius: var(--br-3);
}

.hero__slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  border-radius: var(--br-2);
  overflow: hidden;
  position: relative;
  background-color: var(--level_1);
}

.hero__title {
  position: relative;
  z-index: 2;
  color: var(--text_1);
  padding-top: 30px;
  line-height: 110%;
  text-align: left;
  font-size: 28px;
}

.hero__text {
  position: relative;
  z-index: 2;
  color: var(--text_1);
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 0;
  margin-top: 10px;
  padding: 0 20px;
  opacity: .7;
  text-align: center;
}

.main-title-1 .hero__text {
  padding: 0;
  text-align: left;
}

.hero__text-common {
  position: relative;
  z-index: 2;
  color: var(--text_1);
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 0;
  margin-top: 10px;
  padding: 0;
  opacity: .7;
  text-align: left;
}

.center {
  text-align: center;
}

.hero__btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 5px 0 20px 0;
}

.hero__btns a {
  margin-right: 15px;
}

.hero__btns a:last-child {
  margin-right: 0;
}

@media (min-width: 576px) {
  .hero__slide {
    min-height: auto;
  }

  .hero__title {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .hero .owl-dots {
    margin-top: 00px;
  }

  .hero__slide {
    padding: 40px;
  }

  .hero__title {
    font-size: 30px;
  }
}

@media (min-width: 1200px) {
  .hero {
    margin-top: 20px;
  }

  .hero .owl-dots {
    margin-top: 0;
    margin-bottom: 30px;
    padding-right: 20px;
    z-index: 2;
  }

  .hero .owl-dot span {
    background-color: var(--brand_1);
  }

  .hero .owl-dot.active span {
    background-color: var(--text_1);
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__text {
    font-size: 17px;
    line-height: 28px;
  }

  .hero__btn {
    margin-top: 40px;
  }

  .hero__slide {
    padding: 30px 40px 30px 40px;
  }
}

/*==============================
  Banner M
==============================*/
.banner-m-container {
  padding: 20px 0 40px 0;
}

.banner-m__slide {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  border-radius: var(--br-2);
  overflow: hidden;
  position: relative;
  background-color: var(--level_1);
  padding: 20px;
}

.banner-m__text {
  width: 100%;
  color: var(--text_1);
  font-size: 18px;
  line-height: 120%;
  margin: 0 15px 0 10px;
  margin-bottom: 0;
}

.banner-m__btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}

.banner-m__btns a {
  margin: 0 15px 0 0;
}

.banner-m__btns a:last-child {
  margin: 0;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

/*==============================
Pricing
==============================*/
.pricing__title {
  dispaly: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 20px 0 40px 0;}
.pricing__table {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform 5.s;
  transition: transform .5s, -webkit-transform .5s; }
.pricing__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 767px) {
    .pricing__row {
      display: block; } }

.pricing__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1; }
  @media only screen and (max-width: 767px) {
    .pricing__col {
      padding: 36px 36px 36px 36px;
      background: var(--level_100);
      border-radius: var(--br-0); } 
      body.dark .pricing__col {background: var(--level_1); } }
  .pricing__col:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px; }
    @media only screen and (max-width: 1179px) {
      .pricing__col:first-child {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 220px;
                flex: 0 0 220px; } }
    @media only screen and (max-width: 1023px) {
      .pricing__col:first-child {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 130px;
                flex: 0 0 130px; } }
    @media only screen and (max-width: 847px) {
      .pricing__col:first-child {
        display: none; } }

      body.dark .pricing__col:nth-child(3) .pricing__parameter {
        border-bottom: 1px solid var(--level_2); }
  
  .pricing__col:not(:first-child) {
    padding-bottom: 36px;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .pricing__col:not(:first-child) {
        text-align: left; } }
    .pricing__col:not(:first-child) .pricing__body {
      padding-top: 0px; }
    .pricing__col:not(:first-child) .pricing__parameter {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .pricing__col:not(:first-child) .pricing__label {
      display: none; }
      @media only screen and (max-width: 767px) {
        .pricing__col:not(:first-child) .pricing__label {
          display: block; } }
  @media only screen and (max-width: 767px) {
    .pricing__col:not(:last-child) {
      margin-bottom: 16px; }
    .pricing__col:not(:first-child) .pricing__parameter {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start;
      text-align: left; } }

.col__1 { 
  border-radius: var(--br-0); }
.col__2 {
  border-radius: var(--br-0); }
.col__3 {
  background: var(--level_100); 
  border-radius: var(--br-1); }
  @media only screen and (max-width: 767px) {
    .col__3 {
      background: var(--level_100); 
      border-radius: 36px 36px 36px 36px; } }
  body.dark .col__3 {
    background: var(--level_1); }
.col__4 { 
  border-radius: var(--br-0); }

.pricing__head {
  min-height: 284px;
  padding: 36px 36px 0 36px; }
  @media only screen and (max-width: 1023px) {
    .pricing__head {
      padding: 36px 36px 0 36px; } }
  @media only screen and (max-width: 767px) {
    .pricing__head {
      min-height: auto;
      padding: 0; } }

.pricing__more {
  display: none; }
  @media only screen and (max-width: 767px) {
    .pricing__more {
      display: block;
      position: absolute;
      right: 48px; 
      width: 24px;
      height: 24px; 
      margin-top: -36px;
      background: transparent url("../img/Plus.svg") no-repeat center/24px auto; }
      .pricing__more.active {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); } }

.pricing__package {
  color: var(--level_100);
  margin-bottom: 8px; }

.pricing__description {
  white-space: nowrap;
  color: var(--level_100);
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 20px; }

.pricing__cost {
  color: var(--level_100);
  position: relative;
  display: inline-block;
  margin-top: 16px; }
  @media only screen and (max-width: 767px) {
    .pricing__cost {
      margin-left: 0px; } }

.pricing__price { 
  color: var(--level_100);}

.pricing__sign {
  position: absolute;
  top: 0px;
  left: calc(100% + 10px);
  color: var(--level_100);
  font-size: 24px;}

.pricing__note {
  color: var(--level_6);
  line-height: 20px;
  margin: 7px 0 10px 0;}


@media only screen and (min-width: 767px) {
  .pricing__list {
    display: block !important; } }

@media only screen and (max-width: 767px) {
  .pricing__list {
    display: none;
    padding-top: 24px; }
    .pricing__list.visible {
      display: block; } }

.pricing__parameter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  border-bottom: 1px solid #E6E8EC; }
  body.dark .pricing__parameter {
    border-bottom: 1px solid var(--level_1); }

.pricing__label {
  text-align: left;
  margin-right: auto;
  color: var(--level_100);}
  @media only screen and (max-width: 1023px) {
    .pricing__label {
      margin-right: 16px; } }
  @media only screen and (max-width: 767px) {
    .pricing__label {
      margin-right: auto;
      padding-left: 0px; } }

.pricing__hint {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  background: transparent url("../img/Plus.svg") no-repeat center/24px auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 24px;
  cursor: pointer; }
  @media only screen and (max-width: 1023px) {
    .pricing__hint {
      display: none; } }
  .pricing__hint:hover .pricing__tooltip {
    visibility: visible;
    opacity: 1; }

.pricing__tooltip {
  color: var(--level_100);
  text-align: left;
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  min-width: 260px;
  padding: 16px 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: var(--br-3);
  background: var(--level_100);
  -webkit-box-shadow: 0px 10px 50px rgba(203, 206, 220, 0.5);
          box-shadow: 0px 10px 50px rgba(203, 206, 220, 0.5);
  font-size: 15px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s; }
  .pricing__tooltip:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent #FFFFFF transparent transparent; }
  body.dark .pricing__tooltip {
    background: var(--level_1);
    -webkit-box-shadow: 0 4px 12px rgba(20, 20, 22, 0.1);
            box-shadow: 0 4px 12px rgba(20, 20, 22, 0.1); }
    body.dark .pricing__tooltip:before {
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 6px 6px 6px 0;
      border-color: transparent var(--level_1); transparent transparent; }

.pricing__check {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .pricing__check .icon {
    width: 14px;
    height: 14px;
    fill: var(--green_1); }

.pricing__minus {
  opacity: 0;
  padding: 0 2px;
  font-size: 18px;
  font-weight: 600;
  color: var(--level_6); }

.pricing__btn {
  padding: 16px 0; 
  max-height: 60px;
  transition: all .5s; }
.pricing__btn:hover {
  webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
      transform: scale(1.05); }
  .pricing__btn .btn {
    padding: 10px 15px;
    color: var(--level_100);
    border-radius: var(--br-3); }
  .pricing__btn .btn_brand {
    background: var(--brand_1); }
  .pricing__btn .btn_secondary {
    background: var(--level_3); }
@media only screen and (max-width: 767px) {
  .pricing__btn {
    padding: 12px 0 0 0; } 
.pricing__btn a {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;} }

/*==============================
  Tariff
==============================*/
.tariff__banner {
  background-color: var(--level_1);
  border-radius: var(--br-2);
  padding: 15px 20px 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.tariff__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding-left: 20px;
}
.tariff__text h5 {
  font-size: 18px;
  margin: 10px 0 10px 0;
}
.tariff__text p {
  color: var(--green_1);
}
.tariff__text p.tariff__off {color: var(--red_1);}
.tariff__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0 20px 0;
}
.tariff__buttons button {
  width: calc(50% - 10px);
}
.tariff__history {
  padding: 15px 0 0 0;
}
.modal-history .modal__close {
  top: 0px;
  right: 20px;
}
.history__group {padding: 20px 0; }
.history__line {
  color: var(--level_100);
  max-width:600px;
  padding: 5px 0;
  display: flex;
  flex-direction: row;
}
.history__date, .history__method {
  width: 25%;
  padding: 6px 15px 0 0;
}
.history__status {
  color: var(--green_1);
  border: 1px solid var(--green_1);
  border-radius: var(--br-3);
  padding: 5px 10px;
  max-height: 40px;
}
.history__status.panding {
  color: var(--red_1);
  border: 1px solid var(--red_1);
}
.history__value {
  text-align: left;
  margin-left: auto;
  padding-top: 6px;
}

/*==============================
  Album
==============================*/
.album {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
}

.album__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: var(--br-3);
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #000;
}

.album__cover img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: 0.5s ease;
}

.album__cover a {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  top: 50%;
  left: 50%;
  margin: -28px 0 0 -28px;
  border-radius: var(--br-3);
  background-color: #222227;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.album__cover a svg {
  fill: #fff;
  width: 24px;
  height: auto;
  margin: 1px 0 0 1px;
  transition: fill 0.5s ease;
}

.album__cover a:hover svg {
  fill: var(--brand_1);
}

.album__cover:hover img {
  opacity: 0.6;
  transform: scale(1.08);
}

.album__cover:hover a {
  opacity: 1;
  transform: scale(1);
}

.album__cover:hover .album__stat {
  opacity: 1;
  transform: scale(1);
}

.album__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
}

.album__title h3 {
  display: block;
  width: 100%;
  color: var(--text_1);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.album__title h3 a {
  color: var(--text_1);
}

.album__title h3 a:hover {
  color: var(--brand_1);
}

.album__title span {
  display: block;
  width: 100%;
  color: #c0c0c0;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.album__title span a {
  color: #c0c0c0;
}

.album__title span a:hover {
  color: var(--brand_1);
}

.album__stat {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  left: 0;
  right: 0;
  color: var(--text_1);
  font-size: 12px;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.5s ease;
}

.album__stat span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 15px;
}

.album__stat span:last-child {
  margin-right: 0;
}

.album__stat svg {
  width: 14px;
  height: auto;
  fill: #fff;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .album {
    margin-top: 30px;
  }

  .album--sidebar {
    margin-top: 20px;
  }

  .album__stat {
    font-size: 13px;
  }

  .album__stat span {
    margin-right: 20px;
  }

  .album__stat span:last-child {
    margin-right: 0;
  }

  .album__stat svg {
    width: 16px;
  }
}

/*==============================
  Releases
==============================*/
.release {
  margin-top: 20px;
  border: 1px solid #222227;
  background-color: #16151a;
  padding: 20px;
  border-radius: var(--br-3);
  position: release;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.release__cover {
  display: block;
  position: relative;
  width: 100%;
  border-radius: var(--br-3);
  overflow: hidden;
}

.release__cover img {
  width: 100%;
}

.release__list {
  position: relative;
  height: 330px;
  width: 100%;
  overflow: hidden;
  padding-right: 14px;
  margin-top: 20px;
}

.release__stat {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #c0c0c0;
  font-size: 14px;
  transition: 0.5s ease;
  width: 100%;
  margin-top: 15px;
}

.release__stat span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
}

.release__stat span:last-child {
  margin-right: 0;
}

.release__stat svg {
  width: 20px;
  height: auto;
  fill: var(--brand_1);
  margin-right: 5px;
}

.release__buy {
  width: 100%;
  height: 50px;
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 25px;
  margin-top: 15px;
}

.release__buy svg {
  fill: #fff;
  width: 28px;
  height: auto;
  margin-right: 7px;
}

.release__buy:hover {
  background-color: #222227;
  color: var(--text_1);
}

@media (min-width: 768px) {
  .release {
    flex-direction: row;
    margin-bottom: 10px;
  }

  .release__list {
    margin-top: 0;
    width: calc(100% - 250px);
  }

  .release__content {
    width: 230px;
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .release__list {
    width: calc(100% - 310px);
    height: 388px;
  }

  .release__content {
    width: 290px;
  }
}

/*==============================
  Store-item
==============================*/
.store-item {
  margin-top: 20px;
  border: 1px solid #222227;
  background-color: #16151a;
  padding: 20px;
  border-radius: var(--br-3);
  position: release;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.store-item__cover {
  display: block;
  position: release;
  width: 100%;
  border-radius: var(--br-3);
  overflow: hidden;
}

.store-item__cover img {
  width: 100%;
}

.store-item__description {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.store-item__buy {
  width: 100%;
  height: 50px;
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 25px;
  margin-top: 15px;
}

.store-item__buy svg {
  fill: #fff;
  width: 28px;
  height: auto;
  margin-right: 7px;
}

.store-item__buy:hover {
  background-color: #222227;
  color: var(--text_1);
}

.store-item__content {
  width: 100%;
  display: block;
}

.store-item__carousel {
  position: relative;
  width: 100%;
}

.store-item__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.store-item__carousel .owl-dot {
  margin-right: 10px;
}

.store-item__carousel .owl-dot:last-child {
  margin-right: 0;
}

.store-item__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: var(--br-5);
  background-color: #c0c0c0;
  transition: 0.5s ease;
}

.store-item__carousel .owl-dot.active span {
  width: 20px;
  background-color: var(--brand_1);
}

@media (min-width: 768px) {
  .store-item {
    flex-direction: row;
  }

  .store-item__description {
    margin-top: 0;
    width: calc(100% - 250px);
  }

  .store-item__content {
    width: 230px;
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .store-item__description {
    width: calc(100% - 310px);
  }

  .store-item__content {
    width: 290px;
  }
}

/*==============================
  Artist
==============================*/
.artist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
}

.artist__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: var(--br-2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.artist__cover img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.artist__title {
  z-index: 3;
  color: var(--text_1);
  font-size: 16px;
  margin-bottom: 0;
  text-align: left;
  width: auto;
  height: auto;
  text-overflow: ellipsis;
  transition: color 0.5s ease;
  margin: 15px 15px 15px 15px;
  font-weight: 400;
}

.artist:hover .artist__cover:before {
  opacity: 0.3;
}

.artist:hover .artist__title {
  color: var(--brand_1);
}

@media (min-width: 768px) {
  .artist {
    margin-top: 0px;
  }
}

/*==============================
  Event
==============================*/
.event {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
  border-radius: var(--br-3);
  position: relative;
  overflow: hidden;
  padding: 20px;
  height: 300px;
}

.event:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.event__date {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 400;
  color: var(--text_1);
}

.event__time {
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: #c0c0c0;
  font-weight: 400;
  margin-bottom: 20px;
}

.event__title {
  position: relative;
  z-index: 2;
  font-weight: 400;
  color: var(--text_1);
  font-size: 24px;
  margin-bottom: 5px;
  width: 100%;
}

.event__title a {
  color: var(--text_1);
}

.event__title a:hover {
  color: var(--brand_1);
}

.event__address {
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: var(--text_1);
  line-height: 24px;
  margin-bottom: 0;
  width: 100%;
}

.event__ticket {
  position: absolute;
  top: 20px;
  left: 20px;
  min-width: 130px;
  height: 40px;
  border-radius: var(--br-3);
  background-color: #222227;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 14px;
  z-index: 2;
  font-weight: 500;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event__ticket svg {
  width: 18px;
  height: auto;
  margin-right: 7px;
  fill: var(--brand_1);
  transition: fill 0.5s ease;
}

.event__ticket:hover {
  color: var(--text_1);
  background-color: var(--brand_1);
  border-color: var(--brand_1);
}

.event__ticket:hover svg {
  fill: #fff;
}

.event__out {
  position: absolute;
  top: 20px;
  left: 20px;
  min-width: 120px;
  height: 40px;
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 14px;
  z-index: 2;
  font-weight: 500;
  padding: 0 15px;
}

.event:hover:before {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .event {
    margin-top: 30px;
    height: 320px;
  }

  .event__title {
    font-size: 26px;
  }
}

/*==============================
  Single
==============================*/
.single-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222227;
  height: 58px;
}

.single-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  height: 48px;
}

.single-item__number {
  color: #c0c0c0;
  font-size: 22px;
  min-width: 20px;
  width: auto;
  font-weight: 400;
}

.single-item__rate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #c0c0c0;
  width: 24px;
  margin-right: 10px;
}

.single-item__rate svg {
  fill: var(--brand_1);
  width: 20px;
  height: auto;
}

.single-item__rate--red svg {
  fill: #eb5757;
}

.single-item__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: var(--br-4);
  overflow: hidden;
  transition: 0.5s ease;
}

.single-item__cover img {
  width: 48px;
  height: auto;
  opacity: 1;
  transition: opacity 0.5s ease;
  position: relative;
}

.single-item__cover svg {
  position: absolute;
  opacity: 0;
  fill: #fff;
  width: 24px;
  height: auto;
  margin: 1px 0 0 1px;
  transition: 0.5s ease;
}

.single-item__cover svg:last-child {
  opacity: 0;
}

.single-item__cover:hover svg {
  fill: var(--brand_1);
}

.single-item__cover.active {
  background-color: #000;
}

.single-item__cover.active img {
  opacity: 0.35;
}

.single-item__cover.active svg {
  fill: var(--brand_1);
}

.single-item__cover.pause svg {
  opacity: 1;
}

.single-item__cover.pause svg:last-child {
  opacity: 0;
}

.single-item__cover.play svg {
  opacity: 0;
}

.single-item__cover.play svg:last-child {
  opacity: 1;
}

.single-item__title {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 15px;
  margin-right: auto;
}

.single-item__title h4 {
  display: block;
  width: 100%;
  color: var(--text_1);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.single-item__title h4 a {
  color: var(--text_1);
}

.single-item__title h4 a:hover {
  color: var(--brand_1);
}

.single-item__title span {
  display: block;
  width: 100%;
  color: #c0c0c0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.single-item__title span a {
  color: #c0c0c0;
}

.single-item__title span a:hover {
  color: var(--brand_1);
}

.single-item__time {
  margin-left: 15px;
  font-size: 13px;
  color: #c0c0c0;
}

.single-item__time--live {
  background-color: #eb5757;
  color: var(--text_1);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding: 0 12px;
  border-radius: var(--br-4);
  font-size: 12px;
  font-weight: 400;
}

.single-item__add {
  margin-left: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--br-4);
  background-color: rgba(37, 165, 106, 0.15);
}

.single-item__add svg {
  width: 18px;
  height: auto;
  fill: var(--brand_1);
}

.single-item__add:hover {
  background-color: rgba(37, 165, 106, 0.3);
}

.single-item__export {
  margin-left: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--br-4);
  background-color: rgba(128, 81, 212, 0.15);
}

.single-item__export svg {
  width: 18px;
  height: auto;
  fill: #8051d4;
}

.single-item__export:hover {
  background-color: rgba(128, 81, 212, 0.3);
}

.single-item:hover .single-item__cover {
  background-color: #222227;
}

.single-item:hover .single-item__cover img {
  opacity: 0.35;
}

.single-item:hover .single-item__cover svg {
  opacity: 1;
}

.single-item:hover .single-item__cover svg:last-child {
  opacity: 0;
}

.single-item:hover .single-item__cover.play svg {
  opacity: 0;
}

.single-item:hover .single-item__cover.play svg:last-child {
  opacity: 1;
}

/*==============================
  Post
==============================*/
.post {
  position: relative;
  margin-top: 20px;
  border-radius: var(--br-3);
  width: 100%;
  overflow: hidden;
  background-color: #222227;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: calc(100% - 20px);
}

.post__img {
  display: block;
  width: 100%;
  position: relative;
  background-color: #000;
}

.post__img:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.1;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.post__img img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.post__img:hover:before {
  opacity: 0.3;
}

.post__video {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: var(--br-3);
  background-color: #222227;
  font-weight: 500;
  font-size: 14px;
  color: var(--text_1);
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.post__video svg {
  fill: var(--brand_1);
  width: 24px;
  height: auto;
  margin-right: 7px;
  transition: fill 0.5s ease;
}

.post__video:hover {
  background-color: var(--brand_1);
  color: var(--text_1);
  border-color: var(--brand_1);
}

.post__video:hover svg {
  fill: #fff;
}

.post__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  background-color: #222227;
  border-radius: 0 0 12px 12px;
  height: 100%;
  position: relative;
}

.post__category {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 28px;
  min-width: 70px;
  width: auto;
  color: var(--text_1);
  font-size: 13px;
  background-color: #2f80ed;
  border-radius: var(--br-4);
  padding: 0 15px;
  margin-bottom: 20px;
  position: absolute;
  bottom: 100%;
  left: 20px;
  z-index: 2;
}

.post__category:hover {
  color: var(--text_1);
  background-color: var(--brand_1);
}

.post__title {
  display: block;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--text_1);
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%;
}

.post__title a {
  color: var(--text_1);
  display: block;
}

.post__title a:hover {
  color: var(--brand_1);
}

.post__meta {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 20px;
}

.post__date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: #c0c0c0;
}

.post__date svg {
  fill: #fff;
  width: 16px;
  height: auto;
  margin-right: 5px;
}

.post__comments {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: #c0c0c0;
}

.post__comments svg {
  fill: #fff;
  width: 16px;
  height: auto;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .post {
    margin-top: 30px;
    height: calc(100% - 30px);
  }
}

/*==============================
  Live
==============================*/

.live {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  background-color: var(--level_1);
  border-radius: var(--br-2);
}

.live__cover {
  width: 100%;
  border-radius: var(--br-2);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.live__cover img, .live__cover video {
  position: relative;
  width: 100%;
  z-index: 1;
  transition: 0.5s ease;
}

.live__cover svg {
  position: absolute;
  display: block;
  fill: #fff;
  width: 46px;
  height: auto;
  transition: 0.5s ease;
  z-index: 3;
  transform: scale(0.8);
  opacity: 0;
}

.live__value {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  pointer-events: none;
  height: 28px;
  width: auto;
  padding: 0 15px;
  border-radius: var(--br-4);
  background-color: rgba(34, 34, 39, 0.8);
  color: var(--text_1);
  font-size: 12px;
  font-weight: 400;
}

.live__status {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  pointer-events: none;
  height: 30px;
  width: auto;
  padding: 0 10px;
  border-radius: var(--br-3);
  background: var(--level_100);
  color: var(--level_1);
  font-size: 12px;
  font-weight: 400;
}

.live__title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text_1);
  padding: 15px 20px 0 20px;
  width: 100%;
  word-wrap: break-word;
  transition: color 0.5s ease;
}

.live__subtitle {
  color: var(--text_2);
  font-size: 14px;
  font-weight: 400;
  padding: 0px 20px 0 20px;
  margin-top: auto;
}

.live__title a {
  color: var(--link_2);
}

.live:hover .live__cover:before {
  opacity: 0.3;
}

.live:hover .live__cover svg {
  opacity: 1;
  transform: scale(1);
}

.live:hover .live__title {
  color: var(--link_2_hover);
}

.live:hover .live__title a {
  color: var(--link_2_hover);
}

/*==============================
  Replace
==============================*/
.replace__button {
  position: absolute;
	z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 30px;
  height: 30px;
  right: 15px;
  top: 15px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}
.replace__button:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale3d(1.02, 1.02, 1.02);
}
.replace__group {
  width: 100%;
  overflow: hidden;
  padding: 30px 0 0 0;
}
.btn-replace {
  margin: 0 0 20px 20px;
}

/*==============================
  Product
==============================*/
.product {
  position: relative;
  margin-top: 20px;
  border-radius: var(--br-2);
  width: 100%;
  overflow: hidden;
  background-color: #222227;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px;
}

.product__img {
  width: 100%;
  border-radius: var(--br-2);
  overflow: hidden;
  position: relative;
}

.product__img:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.product__img img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.product__img:hover:before {
  opacity: 0.3;
}

.product__img:hover .product__add {
  transform: scale(1);
  opacity: 1;
}

.product__add {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
  border-radius: var(--br-3);
  background-color: #222227;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.5s ease;
  transition-property: opacity, transform;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product__add svg {
  fill: #fff;
  width: 24px;
  height: auto;
  transition: fill 0.5s ease;
}

.product__add:hover svg {
  fill: var(--brand_1);
}

.product__title {
  display: block;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  color: var(--text_1);
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  margin-top: 15px;
}

.product__title a {
  color: var(--text_1);
}

.product__title a:hover {
  color: var(--brand_1);
}

.product__price {
  font-size: 16px;
  color: #c0c0c0;
  margin-top: 5px;
  display: block;
  width: 100%;
  font-weight: 400;
}

.product__new {
  font-size: 14px;
  color: #eb5757;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .product {
    margin-top: 30px;
  }
}

/*==============================
  Partners
==============================*/
.partners {
  margin-top: 60px;
}

.partners__img img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.5s;
}

.partners__img:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .partners {
    margin-top: 70px;
  }
}

/*==============================
  Stats
==============================*/
.stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--br-3);
  background-color: #16151a;
  width: 100%;
  border: 1px solid #222227;
}

.stats span {
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  color: var(--text_1);
  margin-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.stats span a {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: var(--text_1);
  margin-left: 10px;
  line-height: 100%;
  border-bottom: 2px dashed var(--brand_1);
}

.stats span a svg {
  width: 14px;
  height: auto;
  fill: var(--brand_1);
  position: relative;
  bottom: auto;
  right: auto;
  transition: 0.5s ease;
}

.stats span a:hover {
  color: var(--brand_1);
}

.stats span a:hover svg {
  fill: var(--brand_1);
}

.stats p {
  font-size: 14px;
  color: #c0c0c0;
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 400;
  line-height: 100%;
}

.stats p b {
  font-size: 20px;
  font-weight: 500;
}

.stats p a {
  color: #c0c0c0;
}

.stats p a:hover {
  color: var(--brand_1);
}

.stats svg {
  position: absolute;
  bottom: 15px;
  right: 20px;
  fill: var(--brand_1);
  width: 30px;
  height: auto;
}

.stats__form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.stats__form input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 24px;
  background-color: transparent;
  color: var(--text_1);
  font-size: 18px;
  border: none;
  padding: 0 50px 0 0;
}

.stats__form button {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 24px;
  color: var(--brand_1);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.stats__form button svg {
  position: relative;
  width: 18px;
  height: auto;
  top: auto;
  bottom: auto;
  right: auto;
  left: auto;
  transition: fill 0.5s ease;
}

.stats__form button:hover {
  color: var(--text_1);
}

.stats__form button:hover svg {
  fill: var(--brand_1);
}

.stats--green svg {
  fill: var(--brand_1);
}

.stats--purple svg {
  fill: #8051d4;
}

@media (min-width: 768px) {
  .stats {
    margin-top: 30px;
  }
}

/*==============================
  Dashbox
==============================*/
.dashbox {
  background-color: #16151a;
  margin-top: 20px;
  border-radius: var(--br-3);
  overflow: hidden;
  border: 1px solid #222227;
}

.dashbox__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #222227;
}

.dashbox__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--text_1);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 0;
}

.dashbox__title h3 svg {
  fill: var(--brand_1);
  margin-right: 10px;
  width: 22px;
  height: auto;
}

.dashbox__title h3 span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 18px;
  min-width: 18px;
  color: var(--text_1);
  padding: 0 5px;
  border-radius: var(--br-5);
  font-size: 10px;
  pointer-events: none;
  background-color: var(--brand_1);
  margin-bottom: auto;
  margin-left: 5px;
}

.dashbox__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.dashbox__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-left: 15px;
  color: #c0c0c0;
}

.dashbox__more:hover {
  color: var(--brand_1);
}

.dashbox__refresh {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 30px;
}

.dashbox__refresh svg {
  fill: #c0c0c0;
  width: 18px;
  height: auto;
  transition: fill 0.5s ease;
}

.dashbox__refresh:hover svg {
  fill: var(--brand_1);
}

.dashbox__table-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: auto;
  padding: 20px 20px 5px;
}

.dashbox__table-scroll {
  width: 100%;
  display: block;
}

.dashbox__list-wrap {
  padding: 20px;
  position: relative;
  display: block;
  width: 100%;
}

.dashbox__scroll {
  position: relative;
  max-height: 320px;
  width: 100%;
  overflow: hidden;
  padding-right: 14px;
}

.dashbox__note {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #222227;
  height: 58px;
}

.dashbox__note:last-child {
  height: 48px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.dashbox__note svg {
  width: 20px;
  height: auto;
  margin-right: 10px;
  fill: #c0c0c0;
}

.dashbox__note p {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  width: calc(100% - 30px);
  display: block;
  margin-bottom: 0;
  font-weight: 400;
}

.dashbox__note p a {
  color: var(--text_1);
  text-decoration: underline;
}

.dashbox__note p a:hover {
  color: var(--text_1);
  text-decoration: none;
}

.dashbox__note span {
  padding: 0;
  font-size: 13px;
  color: #c0c0c0;
  position: relative;
  background-color: transparent;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  margin-top: 5px;
}

.dashbox__note--succ svg {
  fill: var(--brand_1);
}

.dashbox__note--fail svg {
  fill: #eb5757;
}

.dashbox__note--info svg {
  fill: #c0c0c0;
}

.dashbox__note--gift svg {
  fill: #8051d4;
}

@media (min-width: 768px) {
  .dashbox {
    margin-top: 30px;
  }
}

/*==============================
  Feature
==============================*/
.feature {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222227;
}

.feature__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--br-3);
  background-color: rgba(37, 165, 106, 0.15);
}

.feature__icon svg {
  fill: var(--brand_1);
  width: auto;
  height: 26px;
}

.feature__icon--purple {
  background-color: rgba(128, 81, 212, 0.15);
}

.feature__icon--purple svg {
  fill: #8051d4;
}

.feature__icon--red {
  background-color: rgba(235, 87, 87, 0.15);
}

.feature__icon--red svg {
  fill: #eb5757;
}

.feature__icon--blue {
  background-color: rgba(47, 128, 237, 0.15);
}

.feature__icon--blue svg {
  fill: #2f80ed;
}

.feature__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text_1);
  margin-bottom: 0;
  margin-left: 15px;
}

.feature__text {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #c0c0c0;
  margin-bottom: 0;
  margin-top: 15px;
}

.feature--last {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .feature {
    margin-top: 30px;
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media (min-width: 1200px) {
  .feature {
    margin-top: 40px;
  }
}

/*==============================
  Step
==============================*/
.step {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--br-3);
  background-color: #16151a;
  border: 1px solid #222227;
}

.step__number {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: var(--br-3);
  width: 46px;
  height: 46px;
  line-height: 100%;
  font-weight: 500;
  font-size: 20px;
  color: var(--brand_1);
  background-color: rgba(37, 165, 106, 0.15);
}

.step__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text_1);
  margin-bottom: 0;
  margin-left: 15px;
}

.step__text {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #c0c0c0;
  margin-bottom: 0;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .step {
    margin-top: 30px;
  }
}

/*==============================
  Plan
==============================*/
.plan {
  display: block;
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--br-3);
  background-color: #16151a;
  position: relative;
  overflow: hidden;
  border: 1px solid #222227;
}

.plan--red .plan__title {
  color: #eb5757;
}

.plan--red .plan__list li.green svg {
  fill: #eb5757;
}

.plan--red .plan__btn {
  color: #eb5757;
}

.plan--red .plan__btn:hover {
  background-color: #eb5757;
}

.plan--green .plan__title {
  color: var(--brand_1);
}

.plan--purple .plan__title {
  color: #8051d4;
}

.plan--purple .plan__list li.green svg {
  fill: #8051d4;
}

.plan--purple .plan__btn {
  color: #8051d4;
}

.plan--purple .plan__btn:hover {
  background-color: #8051d4;
}

.plan__title {
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: var(--text_1);
  line-height: 100%;
  display: block;
  font-weight: 500;
  margin-bottom: 15px;
}

.plan__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.plan__list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #c0c0c0;
}

.plan__list li:last-child {
  margin-bottom: 0;
}

.plan__list li svg {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.plan__list li.red svg {
  fill: #c0c0c0;
}

.plan__list li.green {
  color: var(--text_1);
}

.plan__list li.green svg {
  fill: var(--brand_1);
}

.plan__price {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 32px;
  color: var(--text_1);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #222227;
  display: block;
  line-height: 100%;
}

.plan__price span {
  font-size: 16px;
}

.plan__btn {
  width: 100%;
  min-width: 140px;
  height: 50px;
  border-radius: var(--br-3);
  background-color: #222227;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--brand_1);
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 20px;
}

.plan__btn:hover {
  color: var(--text_1);
  background-color: var(--brand_1);
}

@media (min-width: 768px) {
  .plan {
    margin-top: 30px;
  }

  .plan__btn {
    margin-top: 30px;
  }
}

/*==============================
  Contacts
==============================*/
.contacts__list {
  margin-top: 20px;
}

.contacts__list li {
  margin-bottom: 15px;
}

.contacts__list li:last-child {
  margin-bottom: 0;
}

.contacts__list a {
  font-size: 16px;
  color: var(--text_1);
  font-weight: 400;
}

.contacts__list a:hover {
  color: var(--brand_1);
}

.contacts__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.contacts__social a {
  margin-top: 20px;
  margin-right: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
  transition-property: all;
}

.contacts__social a svg {
  width: 100%;
  height: auto;
}

.contacts__social a:last-child {
  margin-right: 0;
}

.contacts__social a:hover {
  opacity: 1 !important;
  -webkit-filter: grayscale(0) !important;
  filter: grayscale(0) !important;
}

.contacts__social:hover a {
  opacity: 0.7;
  -webkit-filter: grayscale(0.7);
  filter: grayscale(0.7);
}

@media (min-width: 768px) {
  .contacts__social {
    margin-top: 10px;
  }
}

/*==============================
  Cart
==============================*/
.cart {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #16151a;
  width: 100%;
  padding: 0;
  border: 1px solid #222227;
  border-radius: var(--br-2);
  min-height: 400px;
  margin-top: 20px;
}

.cart__table {
  width: 100%;
  min-width: 600px;
}

.cart__table th {
  font-size: 14px;
  font-weight: 400;
  color: #c0c0c0;
  line-height: 100%;
  padding: 0 20px 10px 0;
}

.cart__table th:last-child {
  width: 24px;
  padding: 0 0 10px 0;
}

.cart__table td {
  font-size: 16px;
  font-weight: 400;
  color: var(--text_1);
  padding: 10px 20px 10px 0;
}

.cart__table td a {
  color: var(--text_1);
  font-weight: 400;
}

.cart__table td a:hover {
  color: var(--brand_1);
}

.cart__table td:last-child {
  width: 24px;
  padding: 10px 0;
}

.cart__table td:first-child {
  width: 100px;
}

.cart__img {
  width: 100px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: var(--br-4);
  overflow: hidden;
}

.cart__img img {
  width: 100px;
  height: auto;
}

.cart__delete {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
}

.cart__delete svg {
  fill: #c0c0c0;
  width: 18px;
  height: auto;
  transition: 0.5s ease;
}

.cart__delete:hover svg {
  fill: var(--brand_1);
}

.cart__price {
  font-size: 16px;
  color: #c0c0c0;
  font-weight: 500;
}

.cart__price span {
  font-weight: 400;
  font-size: 12px;
  text-decoration: line-through;
  margin-left: 5px;
  color: #eb5757;
}

.cart__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
  padding: 10px 20px 20px;
}

.cart__total {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.cart__total p {
  font-size: 14px;
  color: #c0c0c0;
  margin-bottom: 10px;
}

.cart__total span {
  font-size: 28px;
  color: var(--text_1);
  line-height: 100%;
  font-weight: 500;
}

.cart__systems {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  color: #c0c0c0;
  width: 100%;
  margin-top: 20px;
}

.cart__systems i {
  margin-right: 15px;
}

.cart__systems i:last-child {
  margin-right: 0;
}

.cart__promo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.cart__promo .sign__btn {
  width: 80px;
  margin: 0;
  height: 40px;
  border-radius: var(--br-3);
}

.cart__promo .sign__input {
  width: calc(100% - 90px);
  height: 40px;
}

.cart__amount {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #222227;
  height: 36px;
  border-radius: var(--br-3);
  padding: 0 10px;
}

.cart__amount input {
  width: 30px;
  height: 36px;
  border: none;
  text-align: center;
  background-color: transparent;
  font-size: 16px;
  color: var(--text_1);
  pointer-events: none;
}

.cart__amount button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 36px;
}

.cart__amount button svg {
  width: 18px;
  height: auto;
  fill: #c0c0c0;
  transition: fill 0.5s ease;
}

.cart__amount button:hover svg {
  fill: var(--brand_1);
}

.cart__table-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: auto;
  padding: 20px 20px 10px;
}

.cart__table-scroll {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .cart {
    margin-top: 30px;
  }

  .cart__table-wrap {
    padding: 25px 20px 10px;
  }

  .cart__table th {
    padding: 0 20px 15px 0;
  }

  .cart__table th:last-child {
    padding: 0 0 15px 0;
  }

  .cart__total {
    order: 1;
  }

  .cart__systems {
    margin-top: 0;
    width: auto;
    order: 2;
    margin-right: auto;
    margin-left: 20px;
  }

  .cart__promo {
    width: 250px;
    margin-top: 0;
    order: 3;
  }
}

@media (min-width: 1200px) {
  .cart__systems {
    margin-left: 40px;
  }
}

/*==============================
  Article
==============================*/
.article {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.article--page {
  margin-top: 0;
}

.article__category {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 30px;
  min-width: 70px;
  width: auto;
  color: var(--text_1);
  font-size: 13px;
  background-color: #2f80ed;
  border-radius: var(--br-4);
  padding: 0 15px;
}

.article__category:hover {
  color: var(--text_1);
  background-color: var(--brand_1);
}

.article__date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: #c0c0c0;
  height: 30px;
}

.article__date svg {
  fill: #fff;
  width: 16px;
  height: auto;
  margin-right: 5px;
}

.article__place {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #c0c0c0;
  min-height: 30px;
  width: 100%;
  margin-bottom: 10px;
}

.article__place svg {
  fill: #fff;
  width: 18px;
  height: auto;
  margin-right: 5px;
}

.article__place:hover {
  color: var(--brand_1);
}

.article__content {
  position: relative;
}

.article__content img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: var(--br-3);
}

.article__content iframe {
  display: block;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  border-radius: var(--br-3);
  border: none;
}

.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  font-weight: 400;
  color: var(--text_1);
  margin-bottom: 15px;
  line-height: 140%;
}

.article__content h1:last-child,
.article__content h2:last-child,
.article__content h3:last-child,
.article__content h4:last-child,
.article__content h5:last-child,
.article__content h6:last-child {
  margin-bottom: 0;
}

.article__content h1 {
  font-size: 30px;
}

.article__content h2 {
  font-size: 28px;
}

.article__content h3 {
  font-size: 24px;
}

.article__content h4 {
  font-size: 22px;
}

.article__content h5 {
  font-size: 18px;
}

.article__content h6 {
  font-size: 16px;
}

.article__content p {
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.article__content p b {
  font-weight: 600;
}

.article__content p a {
  color: var(--brand_1);
  text-decoration: underline;
}

.article__content p a:hover,
.article__content p a:focus {
  color: var(--brand_1);
  text-decoration: none;
}

.article__content p:last-child {
  margin-bottom: 0;
}

.article__content blockquote {
  display: block;
  position: relative;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 28px;
  color: var(--text_1);
  font-weight: 400;
  margin-bottom: 20px;
}

.article__content blockquote:before {
  content: '';
  position: absolute;
  display: block;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  background-color: var(--brand_1);
  border-radius: var(--br-5);
}

.article__content blockquote:last-child {
  margin-bottom: 0;
}

.article__content ul {
  margin-bottom: 20px;
  display: block;
}

.article__content ul li {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #c0c0c0;
  padding-left: 20px;
  position: relative;
}

.article__content ul li:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brand_1);
  left: 0;
  top: 50%;
  margin-top: -2px;
}

.article__content ul:last-child {
  margin-bottom: 0;
}

.article__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}

.article__price {
  font-size: 30px;
  line-height: 100%;
  color: var(--text_1);
  display: block;
  width: 100%;
  font-weight: 500;
  margin-bottom: 15px;
}

.article__amount {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #222227;
  height: 36px;
  border-radius: var(--br-3);
  padding: 0 10px;
  margin-bottom: 20px;
}

.article__amount input {
  width: 30px;
  height: 36px;
  border: none;
  text-align: center;
  background-color: transparent;
  font-size: 16px;
  color: var(--text_1);
  pointer-events: none;
}

.article__amount button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 36px;
}

.article__amount button svg {
  width: 18px;
  height: auto;
  fill: #c0c0c0;
  transition: fill 0.5s ease;
}

.article__amount button:hover svg {
  fill: var(--brand_1);
}

.article__buy {
  width: 180px;
  height: 50px;
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 25px;
  margin-bottom: 20px;
}

.article__buy svg {
  fill: #fff;
  width: 28px;
  height: auto;
  margin-right: 7px;
}

.article__buy:hover {
  background-color: #222227;
  color: var(--brand_1);
}

.article__artist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}

.article__artist img {
  height: auto;
  width: 200px !important;
  margin-right: 20px;
  border-radius: var(--br-3);
}

.article__artist div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.article__artist div h1 {
  margin-bottom: 0;
}

.article__artist div span {
  font-size: 14px;
  color: #c0c0c0;
  display: block;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .article__content iframe {
    height: 280px;
  }
}

@media (min-width: 768px) {
  .article {
    margin-top: 30px;
  }

  .article--page {
    margin-top: 0;
  }

  .article__content h1 {
    font-size: 36px;
  }

  .article__content h2 {
    font-size: 32px;
  }

  .article__content h3 {
    font-size: 28px;
  }

  .article__content h4 {
    font-size: 24px;
  }

  .article__content h5 {
    font-size: 20px;
  }

  .article__content h6 {
    font-size: 18px;
  }

  .article__content iframe {
    height: 400px;
  }

  .article__meta {
    margin-bottom: 25px;
  }

  .article__place {
    margin-bottom: 0;
    width: auto;
  }

  .article__artist {
    flex-direction: row;
  }

  .article__artist img {
    margin-bottom: 0 !important;
  }

  .article__artist div {
    width: calc(100% - 220px);
  }

  .article__artist div span {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .article--page {
    margin-top: 30px;
  }

  .article__content iframe {
    height: 460px;
  }
}

/*==============================
  Share
==============================*/
.share {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.share__link {
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 15px;
  height: 30px;
  border-radius: var(--br-4);
  color: var(--text_1);
  font-size: 14px;
  background-color: var(--brand_1);
}

.share__link svg {
  fill: #fff;
  margin-right: 10px;
  margin-top: 1px;
}

.share__link:last-child {
  margin-right: 0;
}

.share__link--fb {
  background-color: #3b5998;
}

.share__link--tw {
  background-color: #55acee;
}

.share__link--vk {
  background-color: #4c6c91;
}

.share__link:hover {
  background-color: var(--brand_1);
  color: var(--text_1);
}

/*==============================
  Comments
==============================*/
.comments {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #222227;
}

.comments__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
}

.comments__title h4 {
  color: var(--text_1);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 0;
  position: relative;
}

.comments__title span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--br-5);
  background-color: var(--brand_1);
  font-size: 12px;
  color: var(--text_1);
  font-weight: 400;
  margin-left: 10px;
}

.comments__title--tabs li {
  position: relative;
  margin-right: 20px;
}

.comments__title--tabs li:last-child {
  margin-right: 0;
}

.comments__title--tabs a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0.5;
  transition: opacity 0.4s linear;
}

.comments__title--tabs a:hover {
  opacity: 1;
}

.comments__title--tabs a.active {
  opacity: 1;
  cursor: default;
}

.comments__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 20px;
}

.comments__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  border-radius: var(--br-4);
}

.comments__name {
  display: block;
  font-size: 16px;
  color: var(--text_1);
  line-height: 20px;
  font-weight: 400;
}

.comments__time {
  display: block;
  font-size: 12px;
  color: #c0c0c0;
  line-height: 20px;
  font-weight: 400;
}

.comments__text {
  display: block;
  margin-bottom: 0;
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  padding: 20px 0;
  position: relative;
  border-top: 1px solid #222227;
  border-bottom: 1px solid #222227;
}

.comments__text b {
  font-weight: 600;
}

.comments__text a {
  color: var(--brand_1);
}

.comments__text a:hover {
  color: var(--brand_1);
  text-decoration: underline;
}

.comments__text span {
  display: block;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  min-height: 80px;
  border-radius: var(--br-3);
  color: #c0c0c0;
  background-color: #222227;
}

.comments__item {
  margin-bottom: 20px;
  display: block;
  background-color: #16151a;
  border: 1px solid #222227;
  padding: 20px;
  border-radius: var(--br-3);
}

.comments__item--answer,
.comments__item--quote {
  margin-left: 20px;
}

.comments__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0 0;
  position: relative;
}

.comments__actions button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  height: 20px;
}

.comments__actions button span {
  font-size: 12px;
  color: #c0c0c0;
  text-transform: uppercase;
  transition: color 0.5s ease;
  display: none;
}

.comments__actions button svg {
  width: 16px;
  height: auto;
  fill: #c0c0c0;
  transition: fill 0.5s ease;
}

.comments__actions button:hover span {
  color: var(--text_1);
}

.comments__actions button:hover svg {
  fill: var(--brand_1);
}

.comments__actions button:last-child {
  margin-right: 0;
}

.comments__actions button:last-child svg {
  width: 18px;
}

.comments__rate {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 0;
  top: 20px;
}

.comments__rate button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #c0c0c0;
  font-size: 14px;
  margin-right: 24px;
  position: relative;
  height: 20px;
}

.comments__rate button svg {
  width: 16px;
  height: auto;
  opacity: 0.6;
  transition: 0.5s ease;
  margin-top: 1px;
}

.comments__rate button:last-child {
  margin-right: 0;
}

.comments__rate button:last-child svg {
  margin-left: 8px;
  fill: #eb5757;
  width: 16px;
}

.comments__rate button:first-child svg {
  margin-right: 8px;
  fill: var(--brand_1);
  width: 16px;
}

.comments__rate button:first-child:before {
  content: '';
  position: absolute;
  display: block;
  left: 100%;
  margin-left: 12px;
  width: 1px;
  height: 16px;
  background-color: #222227;
  top: 50%;
  transform: translateY(-50%);
}

.comments__rate button:hover {
  color: var(--text_1);
}

.comments__rate button:hover svg {
  opacity: 1;
}

.comments__form {
  border-radius: var(--br-3);
  padding: 20px;
  border: 1px solid #222227;
  background-color: #16151a;
  margin-top: 30px;
}

.comments__form .row {
  margin-left: -10px;
  margin-right: -10px;
}

.comments__form .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}

.comments__form .sign__btn {
  margin: 0;
}

@media (min-width: 576px) {
  .comments__actions button span {
    display: block;
    margin-left: 6px;
  }

  .comments__form .sign__btn {
    width: 180px;
  }
}

@media (min-width: 768px) {
  .comments {
    margin-top: 60px;
    padding-top: 60px;
  }

  .comments__item--answer,
  .comments__item--quote {
    margin-left: 30px;
  }

  .comments__title--tabs li {
    margin-right: 30px;
  }

  .comments__title--tabs li:last-child {
    margin-right: 0;
  }
}

/*==============================
  Footer
==============================*/
.footer {
  background-color: var(--level_0);
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer__logo {
  margin-top: 60px;
}

.footer__logo img {
  width: 100px;
  height: auto;
}

.footer__tagline {
  margin-top: 15px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #c0c0c0;
  margin-bottom: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
}

.footer__links a {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  color: #c0c0c0;
  font-size: 16px;
}

.footer__links a svg {
  width: 20px;
  height: auto;
  fill: var(--brand_1);
  margin-right: 10px;
}

.footer__links a:hover {
  color: var(--brand_1);
}

.footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.footer__social a {
  margin-top: 20px;
  margin-right: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
  transition-property: all;
}

.footer__social a svg {
  width: 100%;
  height: auto;
}

.footer__social a:last-child {
  margin-right: 0;
}

.footer__social a:hover {
  opacity: 1 !important;
  -webkit-filter: grayscale(0) !important;
  filter: grayscale(0) !important;
}

.footer__social:hover a {
  opacity: 0.6;
  -webkit-filter: grayscale(0.6);
  filter: grayscale(0.6);
}

.footer__content {
  border-top: 1px solid var(--level_1);
  display: flex;
  justify-content: space-between;
}

.footer__wrap {
  border-top: 1px solid var(--level_1);
  padding-top: 16px;
}

.footer__policy-nav {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.footer__policy-nav a {
  color: var(--text_2);
  margin-right: 16px;
}

.footer__policy-nav a:last-child {
  margin-right: 0;
}

.footer__policy-nav a:hover {
  color: var(--brand_1);
}

.footer__legal {
  font-size: 12px;
  line-height: 1.4;
  color: var(--level_4);
  padding: 6px 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 1.4;
  color: var(--level_4);
  padding: 6px 0;
}

@media (max-width: 767px) {
  .footer__policy-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__policy-nav a {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .footer__policy-nav a:last-child {
    margin-bottom: 0;
  }
}

.footer__copyright {
  display: block;
  font-size: 15px;
  color: var(--text_3);
  margin-top: 20px;
}

.footer__copyright a {
  color: var(--text_1);
}

.footer__copyright a:hover {
  color: var(--brand_1);
}

.footer__info {
  display: block;
  font-size: 13px;
  color: var(--text_3);
  margin-top: 20px;
  opacity: 0.6;
}

.footer__title {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  color: var(--text_1);
  margin-bottom: 15px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer__nav a {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #c0c0c0;
}

.footer__nav a:last-child {
  margin-bottom: 0;
}

.footer__nav a:hover {
  color: var(--brand_1);
}

@media (min-width: 576px) {
  .footer {
    padding: 30px 15px 20px;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 20px 15px 25px;
  }

  .footer__content {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .footer__logo {
    margin-top: 50px;
  }

  .footer__title {
    margin-top: 50px;
  }

  .footer__social {
    width: auto;
    order: 2;
  }

  .footer__social a {
    margin-top: 0;
  }

  .footer__copyright {
    margin-top: 0;
    order: 1;
  }
}

@media (min-width: 1200px) {
  .footer {
    padding-left: 220px;
    padding-right: 40px;
  }

  .footer.wide {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer.day {
    padding-left: 360px;
    padding-right: 40px;
  }

  .footer.wide {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer__social {
    display: inline-flex;
    width: auto;
  }
}

/*==============================
  Sign
==============================*/
.sign {
  display: block;
  position: relative;
  margin-bottom: 80px;
}

.mb-0 {
  margin-bottom: 0px;
}

.sign .hero__title {
  margin: 50px 0 40px 0;
}

.sign .hero__title.mb0 {
  margin: 50px 0 0 0;
}

.sign__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0;
}

.sign__form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  border: 0;
}

.sign__form--contacts,
.sign__form--profile,
.sign__form--cart {
  margin-top: 20px;
  max-width: 100%;
  padding: 20px 20px 5px;
  align-items: flex-start;
}

.sign__form--contacts .sign__btn,
.sign__form--profile .sign__btn,
.sign__form--cart .sign__btn {
  margin: 0 0 15px;
}

.sign__form--contacts .row,
.sign__form--profile .row,
.sign__form--cart .row {
  margin-left: -10px;
  margin-right: -10px;
}

.sign__form--contacts .col-12,
.sign__form--profile .col-12,
.sign__form--cart .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}

.sign__form--profile .sign__btn {
  margin: 5px 0 15px;
}

.sign__logo {
  display: block;
  margin-bottom: 30px;
}

.sign__logo a {
  max-width: 100%;
  width: auto;
}

.sign__logo img {
  width: 100px;
}

.sign__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text_1);
  margin-bottom: 20px;
}

.sign__label {
  font-weight: 400;
  font-size: 14px;
  color: #c0c0c0;
  margin-bottom: 5px;
  padding-left: 20px;
}

.sign__label b {
  font-weight: 600;
  color: var(--text_1);
}

.sign__input {
  background-color: #222227;
  border: 1px solid transparent;
  border-radius: var(--br-3);
  height: 46px;
  position: relative;
  color: var(--text_1);
  font-size: 16px;
  width: 100%;
  padding: 0 20px;
}

.sign__input:focus {
  border-color: var(--brand_1);
}

.sign__select {
  background: url("../img/arrow2.svg") no-repeat center right 20px #222227;
  background-size: 18px auto;
  border: 1px solid transparent;
  border-radius: var(--br-3);
  height: 46px;
  position: relative;
  color: var(--text_1);
  font-size: 16px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
}

.sign__select:focus {
  border-color: var(--brand_1);
}

.sign__textarea {
  background-color: #222227;
  border: 1px solid transparent;
  border-radius: var(--br-3);
  height: 144px;
  position: relative;
  color: var(--text_1);
  font-size: 16px;
  width: 100%;
  padding: 15px 20px;
  resize: none;
}

.sign__textarea:focus {
  border-color: var(--brand_1);
}

.sign__group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  margin: 10px 0 10px 0;
  width: 100%;
}

.sign__group--row .sign__label {
  padding-left: 0;
}

.sign__group--checkbox {
  width: 100%;
  text-align: left;
}

.sign__group--checkbox input:not(:checked),
.sign__group--checkbox input:checked {
  position: absolute;
  left: -9999px;
}

.sign__group--checkbox input:not(:checked)+label,
.sign__group--checkbox input:checked+label {
  font-size: 15px;
  color: var(--text_2);
  font-weight: normal;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  line-height: 1.4;
  margin: 0;
}

.sign__group--checkbox input:not(:checked)+label a,
.sign__group--checkbox input:checked+label a {
  color: var(--text_3);
}

.sign__group--checkbox input:not(:checked)+label a:hover,
.sign__group--checkbox input:checked+label a:hover {
  color: var(--text_2);
}

.sign__group--checkbox input:not(:checked)+label:before,
.sign__group--checkbox input:checked+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background-color: var(--level_0);
  border: 2px solid var(--level_3);
  border-radius: var(--br-5);
}

.sign__group--checkbox input:not(:checked)+label:after,
.sign__group--checkbox input:checked+label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  transition: 0.5s ease;
  background: #4557ED url("../img/checkmark_white.svg") no-repeat center/20px auto;
  border-radius: var(--br-5);
}

.sign__group--checkbox input:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
}

.sign__group--checkbox input:checked+label:after {
  opacity: 1;
  transform: scale(1);
}

.sign__group--checkbox label::-moz-selection {
  background: transparent;
  color: #c0c0c0;
}

.sign__group--checkbox label::selection {
  background: transparent;
  color: #c0c0c0;
}

.sign__btn {
  width: 100%;
  height: 60px;
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-weight: 400;
  margin: 15px auto;
}

.sign__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 140%;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 10px 0 30px 0;
  border: 1px solid var(--level_1);
}

.sign__social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 15px;
}

.sign__social-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.sign__social-1 a img {
  position: absolute;
  left: 15px;
}

.sign__social a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 100%;
  border-radius: var(--br-3);
  color: var(--text_1);
  font-size: 16px;
  margin-bottom: 20px;
  background-color: var(--level_0);
  border: 1px solid var(--level_1);
}

.sign__social a svg {
  height: auto;
  fill: #fff;
  transition: 0.5s ease;
}

.sign__social a.fb {
  background-color: var(--level_1);
}

.sign__social a.fb svg {
  width: 10px;
}

.sign__social a.gl {
  background-color: var(--level_1);
}

.sign__social a.gl svg {
  width: 18px;
}

.sign__social a.tw {
  background-color: var(--level_1);
}

.sign__social a.tw svg {
  width: 20px;
}

.sign__social a:hover {
  background-color: transparent;
}

.sign__social a:hover.fb svg {
  fill: #3b5999;
}

.sign__social a:hover.gl svg {
  fill: #df4a32;
}

.sign__social a:hover.tw svg {
  fill: #1da1f2;
}

.sign__value {
  font-size: 24px;
  color: var(--text_1);
  display: block;
  font-weight: 500;
  margin-left: 10px;
}

.sign__radio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
}

.sign__radio li {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.sign__radio li:last-child {
  margin-bottom: 0;
}

.sign__radio input:not(:checked),
.sign__radio input:checked {
  position: absolute;
  left: -9999px;
}

.sign__radio label {
  display: block;
  margin: 0;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  color: #c0c0c0;
  line-height: 24px;
  padding-left: 32px;
  transition: 0.5s ease;
}

.sign__radio label:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 6px solid #222227;
  background-color: transparent;
  border-radius: 50%;
  left: 0;
  top: 2px;
  transition: 0.5s ease;
}

.sign__radio label:hover {
  color: var(--text_1);
}

.sign__radio input:checked+label {
  color: var(--text_1);
}

.sign__radio input:checked+label:before {
  border-color: var(--brand_1);
}

@media (min-width: 576px) {
  .sign__form {
    padding: 0px;
  }

  .sign__form--contacts,
  .sign__form--profile,
  .sign__form--cart {
    padding: 20px 20px 5px;
  }

  .sign__logo {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {

  .sign__form--contacts,
  .sign__form--profile {
    margin-top: 30px;
  }

  .sign__form--contacts .sign__btn,
  .sign__form--profile .sign__btn {
    margin: 10px 0 15px;
  }

  .sign__form--cart {
    margin-top: 30px;
  }

  .sign__form--cart .sign__btn {
    margin-top: 10px;
  }

  .sign__content {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .sign__form--profile .sign__btn {
    width: 180px;
  }
}

.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  padding: 20px;
  background-color: var(--level_1);
  border-radius: var(--br-2);
  color: var(--text_1);
  text-align: center;
}

.banner-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  padding: 30px 30px 15px 30px;
  background-color: var(--level_1);
  border-radius: var(--br-2);
  color: var(--text_1);
  text-align: left;
}

.banner-steps {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.custom-counter {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.custom-counter li {
  counter-increment: step-counter;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.custom-counter .stephere::before {
  content: counter(step-counter);
  margin-right: 15px;
  height: 40px;
  width: 45px;
  background-color: var(--brand_1);
  color: var(--btn-text);
  padding: 8px 10px 0 16px;
  border-radius: var(--br-2);
}

.custom-counter .stepany::before {
  content: counter(step-counter);
  margin-right: 15px;
  height: 40px;
  width: 45px;
  background-color: var(--level_0);
  color: var(--text_3);
  padding: 8px 10px 0 16px;
  border-radius: var(--br-2);
}

.stepany {
  color: var(--text_3);
}

.stephere {
  color: var(--text_1);
}

.join-banner {
  padding-top: 20px;
}

.join-banner h3 {
  padding-top: 10px;
}

.sign__banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  padding: 40px 20px 20px 20px;
  background-color: var(--level_1);
  border-radius: var(--br-2);
  color: var(--text_1);
  text-align: center;
}

.sign__banner.chart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  padding: 20px;
  background-color: var(--level_1);
  border-radius: var(--br-2);
}

.sign__banner img {
  margin-bottom: 20px;
}

.sign__banner a h2 {
  color: var(--link_2);
  transition: 0.5s ease;
}

.sign__banner a h2:hover {
  color: var(--link_2_hover);
}

@media (max-width: 1200px) {

  .sign__banner,
  .sign__banner.chart {
    margin-top: 0px;
  }
}

.result-indicator {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--brand_1);
  margin: 20px 0 20px 0;
}

/*==============================
  Page 404
==============================*/
.page-404 {
  display: block;
  position: relative;
}

.page-404__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 20px 0 0;
}

.page-404__content {
  background-color: #16151a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--br-3);
  padding: 20px;
  position: relative;
  width: 100%;
  max-width: 420px;
  border: 1px solid #222227;
}

.page-404__title {
  position: relative;
  color: var(--text_1);
  line-height: 100%;
  font-size: 100px;
  margin-bottom: 10px;
  font-weight: 500;
}

.page-404__text {
  text-align: center;
  display: block;
  width: 100%;
  color: #c0c0c0;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.page-404__btn {
  width: 100%;
  height: 50px;
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text_1);
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto;
}

.page-404__btn:hover {
  color: var(--text_1);
  background-color: #222227;
}

@media (min-width: 576px) {
  .page-404__content {
    padding: 40px;
  }
}

@media (min-width: 768px) {
  .page-404__wrap {
    padding: 30px 0 0;
  }
}

/*==============================
  Modal
==============================*/
.modal {
  position: relative;
  display: block;
  background-color: var(--level_1);
  border-radius: var(--br-2);
  border: 1px solid var(--level_1);
  margin: 40px auto;
  width: 100%;
  max-width: 960px;
  min-width: 375px;
  padding: 20px;
  overflow: hidden;
}

.modal__icon {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 15px;
  right: 15px;
  pointer-events: none;
  opacity: 0.35;
}

.modal__icon svg {
  width: 70px;
  height: auto;
  fill: #c0c0c0;
}

.modal__icon--green svg {
  fill: var(--brand_1);
}

.modal__icon--red svg {
  fill: #eb5757;
}

.modal__icon--purple svg {
  fill: #8051d4;
}

.modal h3 {
  width: 100%;
  padding-bottom: 20px;
}

.modal--form {
  padding: 20px 20px 5px;
}

.modal--info {
  background-color: var(--level_1);
  padding: 20px;
  border-radius: var(--br-2);
  border: 1px solid var(--level_2);
}

.modal--info .modal__icon {
  display: flex;
}

.modal--info .sign__text {
  padding-right: 70px;
}

.modal .mfp-close {
  display: none;
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
}

@media (max-width: 768px) {
  .close-button.modal__close {
    position: absolute;
    top: 0px;
    right: 20px;
  }
}

.modal__close svg {
  fill: #c0c0c0;
  opacity: 0.6;
  transition: 0.5s ease;
  height: auto;
  width: 24px;
}

.modal__close:hover svg {
  opacity: 1;
  fill: var(--level_5);
}

@media (min-width: 768px) {
  .modal {
    padding: 40px;
  }

  .modal__icon {
    bottom: 30px;
    right: 30px;
  }

  .modal--form {
    padding: 60px;
  }

  .modal--form .modal__close {
    top: 30px;
    right: 40px;
  }

  .modal--form .sign__btn {
    margin-top: 30px;
  }

  .modal--info {
    padding: 40px 40px 20px;
  }

  .modal--info .modal__close {
    top: 30px;
    right: 40px;
  }
}

.mfp-bg {
  background: rgba(0, 0, 0, 0.75);
}

.mfp-container {
  padding: 0 15px !important;
}

.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: scale(1);
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  transform: scale(0.8);
  opacity: 0;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.mfp-iframe-scaler iframe {
  border-radius: var(--br-3);
  box-shadow: none;
  background-color: #16151a;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  transition: opacity 0.4s;
}

.mfp-iframe-holder .mfp-close:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 44px;
  background: url("../img/close.svg") no-repeat center;
  background-size: 30px auto;
}

.mfp-iframe-holder .mfp-content {
  max-width: 910px;
}

.mfp-figure::after {
  box-shadow: none;
  background-color: #222227;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-bg.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*==============================
  Slider radio
==============================*/
.slider-radio {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--level_0);
  padding: 5px 0;
  border-radius: var(--br-3);
  margin-top: 10px;
  position: relative;
  width: auto;
  z-index: 2;
}

.slider-radio label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 35px;
  padding: 0 15px;
  font-size: 16px;
  color: var(--link_2);
  margin-bottom: 0;
  cursor: pointer;
  border-radius: var(--br-3);
  margin: 0 5px;
  position: relative;
  z-index: 100;
  transition: color 0.5s;
  font-weight: 400;
}

.slider-radio label:hover {
  color: var(--link_2_hover);
}

.slider-radio .sliding-piece {
  border-radius: var(--br-3);
  background-color: var(--brand_1);
  z-index: 99;
}

.slider-radio input[type=radio]:checked+label {
  color: var(--btn-text);
  background-color: var(--brand_1);
}

@media (min-width: 768px) {
  .slider-radio {
    margin-left: 0;
    margin-top: 0;
    width: auto;
  }
}

/*==============================
  Select2
==============================*/
.select2-container {
  width: auto !important;
  margin-right: 30px;
}

.select2-container .select2-selection--single {
  height: 40px;
  background-color: var(--level_1);
  border-radius: 0;
  border: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  color: var(--text_1);
  padding: 0 18px 0 0;
  font-size: 14px;
  font-weight: 400;
  transition: 0.5s ease;
}

.select2-container .select2-selection--single[aria-expanded="true"] {
  background-color: transparent;
}

.select2-container .select2-selection--single:hover .select2-selection__rendered {
  color: var(--brand_1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px;
  width: 18px;
  top: 10px;
  right: 0;
  background: url("../img/arrow.svg") no-repeat center right;
  background-size: 18px auto;
  margin-top: 1px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--brand_1);
  color: var(--text_1);
  white-space: nowrap;
}

.select2-container--default .select2-results__option--selected {
  color: var(--text_1);
  background-color: var(--brand_1);
  cursor: default;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: transparent;
  color: var(--brand_1);
  cursor: default;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  color: var(--brand_1);
}

.select2-results__option {
  padding: 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text_1);
  height: 40px;
  line-height: 40px;
  transition: 0.5s ease;
}

.select2-dropdown {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: none;
  border-radius: 12px !important;
  min-width: 180px;
  padding: 5px 0 5px 15px;
  background-color: #222227;
}

.select2-container--open .select2-dropdown--below {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.select2-container--open .select2-dropdown--above {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/*==============================
  Scrollbar-track
==============================*/
.scrollbar-track-y {
  background: #222227 !important;
  top: 0px !important;
  bottom: 0px !important;
  height: auto !important;
  width: 4px !important;
  border-radius: 4px !important;
  right: 0px !important;
  overflow: hidden;
}

.scrollbar-thumb-y {
  background: var(--brand_1) !important;
  width: 4px !important;
  border-radius: 4px !important;
}

.scrollbar-track-x {
  background: #222227 !important;
  left: 0px !important;
  right: 0px !important;
  height: 4px !important;
  width: auto !important;
  border-radius: 4px !important;
  bottom: 0px !important;
  overflow: hidden;
}

.scrollbar-thumb-x {
  background: var(--brand_1) !important;
  height: 4px !important;
  border-radius: 4px !important;
}

/*==============================
  Theme Switch
==============================*/

.switch-wrapper {
  position: fixed;
  z-index: 999;
  bottom: 10px;
  left:10px;
}

.switch {
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  margin: 0 20px 0 0;
}

.switch__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; 
}

.switch__in {
  position: relative;
  display: inline-block;
  border: 0
  border-radius: 25px;
  transition: all .2s; 
}

.switch__box {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 25px;
  transition: all .2s; 
}

.switch__icon {
  position: absolute;
  top: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  transition: opacity .2s; 
}

.switch__icon .icon {
  width: 20px;
  height: 20px;
  fill: var(--level_6); 
}

.switch__icon_light {
  left: 15px; 
}

.switch__icon_dark {
  left: 15px;
  opacity: 0; 
}

.switch__input:checked + .switch__in {
  border-color: transparent; 
}

.switch__input:checked + .switch__in .switch__box {
  background: transparent; 
}

.switch__input:checked + .switch__in .switch__box:before {
  width: 10px;
  height: 20px;
  -webkit-transform: translate(50px, -50%);
          transform: translate(50px, -50%);
  border-radius: var(--br-1);
}

.switch__input:checked + .switch__in .switch__icon_light {
  opacity: 0; 
}

.switch__input:checked + .switch__in .switch__icon_dark {
  opacity: 1; 
}

@media (hover: hover) {
  .switch:hover {
    opacity: 1; } 
}
