* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: Helvetica, Arial, sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  min-width: 320px;
  height: 100%;
  min-height: 100%;
  background-color: #0C0C0C;
  color: #fff;
}
body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .sidebar {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  body.is-menu-open .sidebar__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
@media (min-width: 1025px) {
  body.is-menu-open {
    overflow: visible;
  }
  body.is-menu-open .header__toggle .line {
    background-color: transparent;
  }
  body.is-menu-open .header__toggle .line:before {
    top: calc(50% - 1.5px);
    transform: rotate(-225deg);
  }
  body.is-menu-open .header__toggle .line:after {
    bottom: auto;
    top: calc(50% - 1.5px);
    transform: rotate(225deg);
  }
  body.is-menu-open .wrapper-inner {
    padding-left: 250px;
  }
  body.is-menu-open .sidebar {
    width: 250px;
  }
  body.is-menu-open .sidebar__holder {
    display: block;
  }
  body.is-menu-open .sidebar__title {
    text-align: left;
  }
  body.is-menu-open .sidebar__nav-item {
    width: 100%;
    justify-content: flex-start;
    grid-gap: 10px;
    flex-direction: row;
    font-size: 16px;
  }
  body.is-menu-open .sidebar__nav-item svg {
    margin-bottom: 0;
  }
  body.is-menu-open .sidebar__nav-item:not(.is-active):hover {
    color: #fff;
    background-color: #205AD6;
  }
  body.is-menu-open .sidebar__nav-item span {
    display: block;
    width: auto;
    opacity: 1;
  }
}

body *::-webkit-scrollbar-track {
  width: 10px;
  height: 10px;
}

body *::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

body *::-webkit-scrollbar-thumb {
  width: 4px;
  border-radius: 2px;
  background-color: #1A1A1A;
}

.wrapper {
  display: table;
  overflow: hidden;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
@media (min-width: 1025px) {
  .wrapper-inner {
    position: relative;
    padding-left: 80px;
    transition: all 0.2s ease-in-out;
  }
}

.container {
  max-width: 1670px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 1025px) {
  .container {
    padding: 0 30px;
  }
}

.title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .title {
    font-size: 26px;
  }
}

h1 {
  font-size: 32px;
  margin: 0;
}

a {
  text-decoration: none;
  color: #205AD6;
  transition: all 0.2s ease-in-out;
}

p {
  margin: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
@media (min-width: 1025px) {
  button {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
}

.btn {
  margin: 0;
  outline: none;
  border: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  height: 40px;
  background-color: #205AD6;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  border-radius: 10px;
  width: 100%;
}
@media (min-width: 1025px) {
  .btn {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .btn:hover {
    background-color: #1c51c2;
  }
}

.select2-container * {
  outline: none;
}

.select2-container {
  width: 100% !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  z-index: 5;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding: 8px 32px 8px 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  overflow: hidden;
  min-height: 36px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  height: 36px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 12px 20px;
  display: block;
  -webkit-transition: color 0.4s, background 0.4s;
  -o-transition: color 0.4s, background 0.4s;
  transition: color 0.4s, background 0.4s;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  background: #000;
  -webkit-user-select: none;
  font-weight: 500;
}

.select2-results__option span {
  display: flex;
  align-items: center;
}

.select2-results__option img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

@media screen and (min-width: 1025px) {
  .select2-results__options .select2-results__option:hover {
    background-color: #205AD6 !important;
    color: #fff !important;
  }
}
.select2-results__option--highlighted {
  background-color: #252525;
  color: #fff;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-results__option:not([id]) {
  display: none;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open.select2-container--default .select2-selection--single {
  background-color: #000;
}

.select2-container--open.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
}

.select2-container--open .select2-selection--multiple .select2-selection__rendered:after {
  -webkit-transform: rotate(224deg);
  -ms-transform: rotate(224deg);
  transform: rotate(224deg);
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: none;
  padding: 10px;
  background-color: #fff;
}

.select2-search--dropdown .select2-search__field {
  width: 100%;
  height: 40px;
  line-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #727a8a;
  -webkit-transition: border-color 0.4s;
  -o-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: #205AD6;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  outline: none;
  height: 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  line-height: 20px;
  color: #727a8a;
  font-weight: 500;
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
  border: 2px solid #205AD6;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered:not([title="Select.."]) {
  border-color: #000;
  background-color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
  display: flex;
  align-items: center;
  line-height: inherit;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span img {
  margin-right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 14px;
  font-weight: 500;
}

.select2-container--open .select2-selection--single .select2-selection__placeholder {
  color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: -2px;
  border: solid #727a8a;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
  transform: translate3d(0, -50%, 0) rotate(45deg);
  left: 5px;
  position: absolute;
  -webkit-transition: border-color 0.4s, -webkit-transform 0.4s;
  transition: border-color 0.4s, -webkit-transform 0.4s;
  -o-transition: transform 0.4s, border-color 0.4s;
  transition: transform 0.4s, border-color 0.4s;
  transition: transform 0.4s, border-color 0.4s, -webkit-transform 0.4s;
  top: 50%;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #E3DDE3;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  -webkit-transform: rotate(224deg);
  -ms-transform: rotate(224deg);
  transform: rotate(224deg);
  border-color: #fff;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #727a8a;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 36px 0 5px;
  position: relative;
  width: 100%;
}

.select2-selection--multiple .select2-selection__rendered:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
  transform: translate3d(0, -50%, 0) rotate(45deg);
  border: solid #727a8a;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #E3DDE3;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  float: left;
  font-size: 12px;
  margin-right: 5px;
  margin: 3px 3px 3px 0;
  -webkit-transition: color 0.4s, background 0.4s, border-color 0.4s;
  -o-transition: color 0.4s, background 0.4s, border-color 0.4s;
  transition: color 0.4s, background 0.4s, border-color 0.4s;
  padding: 8px 38px 8px 18px;
}

@media screen and (min-width: 1025px) {
  .select2-container--default .select2-selection--multiple .select2-selection__choice:hover {
    background-color: #205AD6;
    color: #fff;
  }
  .select2-container--default .select2-selection--multiple .select2-selection__choice:hover .select2-selection__choice__remove {
    color: #fff;
  }
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 18px;
  height: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #727a8a;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #E3DDE3;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single .select2-selection__rendered,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple .select2-selection__rendered {
  border-color: #000;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 320px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #fff;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #205AD6;
  color: #fff;
  font-weight: 500;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #E3DDE3eee 100%);
  background-image: -o-linear-gradient(top, white 50%, #E3DDE3eee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#E3DDE3eee));
  background-image: linear-gradient(to bottom, white 50%, #E3DDE3eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #E3DDE3eee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #E3DDE3eee 50%, #cccccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #E3DDE3eee), to(#cccccc));
  background-image: linear-gradient(to bottom, #E3DDE3eee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #E3DDE3eee 50%);
  background-image: -o-linear-gradient(top, white 0%, #E3DDE3eee 50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #E3DDE3eee));
  background-image: linear-gradient(to bottom, white 0%, #E3DDE3eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #E3DDE3eee 50%, white 100%);
  background-image: -o-linear-gradient(top, #E3DDE3eee 50%, white 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #E3DDE3eee), to(white));
  background-image: linear-gradient(to bottom, #E3DDE3eee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--open {
  z-index: 7;
}

body > .select2-container--open {
  z-index: 99999 !important;
}

input,
textarea {
  width: 100%;
  height: 40px;
  background-color: #0C0C0C;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #727a8a;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #727a8a;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #727a8a;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #727a8a;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}

textarea {
  height: 100px;
  resize: none;
}

.icon {
  fill: currentColor;
}

.icon-like {
  stroke: none !important;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 12;
  overflow: hidden;
  padding: 20px;
  width: 280px;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
}
@media (min-width: 375px) {
  .sidebar {
    width: 340px;
  }
}
@media (min-width: 1025px) {
  .sidebar {
    top: 192px;
    border-radius: 0 10px 10px 0;
    width: 80px;
    height: auto;
    padding: 20px 10px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.sidebar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(7.5px);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
  margin-bottom: 35px;
}
@media (min-width: 1025px) {
  .sidebar__top {
    display: none;
  }
}
.sidebar__close {
  width: 24px;
  height: 24px;
}
.sidebar__close svg {
  width: 100%;
  height: 100%;
}
.sidebar__holder {
  max-height: calc(100vh - 185px);
  overflow: hidden;
  overflow-y: auto;
}
@media (min-width: 1025px) {
  .sidebar__holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: inherit;
  }
}
.sidebar__ctrl {
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .sidebar__ctrl {
    display: none;
  }
}
.sidebar__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .sidebar__title {
    text-align: center;
  }
}
.sidebar__nav-item {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 5px;
}
@media (min-width: 1025px) {
  .sidebar__nav-item {
    width: 60px;
    min-height: 60px;
    grid-gap: 0;
    justify-content: center;
    flex-direction: column;
    font-size: 10px;
  }
  .sidebar__nav-item svg {
    margin-bottom: 6px;
  }
  .sidebar__nav-item:hover {
    color: #205AD6;
    background-color: #111111;
  }
}
.sidebar__nav-item.is-active {
  background-color: #205AD6;
}
@media (min-width: 1025px) {
  .sidebar__nav-item.is-active {
    background-color: #111111;
    color: #205AD6;
    box-shadow: inset 0 0 0 2px #205AD6;
  }
}
.sidebar__nav-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
@media (min-width: 1025px) {
  .sidebar__nav-item span {
    transition: all 0.2s ease-in-out;
    display: block;
    width: auto;
    opacity: 1;
  }
}

.bottom-board {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .bottom-board {
    margin-bottom: 50px;
  }
}
.bottom-board__holder {
  border-radius: 10px;
  background-color: #000;
  padding: 15px 0 50px;
  overflow: hidden;
}
.bottom-board__title {
  color: #727a8a;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.bottom-board__list {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 15px;
}
.bottom-board__item {
  display: none;
  width: 300px;
  flex-shrink: 0;
  flex-grow: 0;
  height: 250px;
  overflow: hidden;
  background-color: #151315;
}
.bottom-board__item:first-child {
  display: flex;
}
@media (min-width: 680px) {
  .bottom-board__item:nth-child(2) {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .bottom-board__item:nth-child(3) {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .bottom-board__item:nth-child(4) {
    display: flex;
  }
}
@media (min-width: 1710px) {
  .bottom-board__item:nth-child(5) {
    display: flex;
  }
}

.comments {
  max-width: 1000px;
  margin-bottom: 30px;
}
.comments input,
.comments textarea {
  background-color: #000;
  margin-bottom: 10px;
}
.block-size {
  display: flex;
  flex-wrap: wrap;
}
.comments .embed-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #000;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}
.comments input {
  max-width: 400px;
}
.comments textarea {
  padding: 15px 20px;
}
.comments--add .comments__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 20px;
}
.comments--add .comments__form {
  display: none;
}
.comments__add-btn {
  width: auto;
  text-transform: uppercase;
}
.comments__form {
  margin-bottom: 30px;
}
.comments__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}
.comments__btn {
  max-width: 90px;
}
.comments__list {
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
}
.comments__item {
  display: flex;
  align-items: flex-start;
  grid-gap: 10px;
  font-size: 16px;
}
.comments__item-avatar {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  overflow: hidden;
  color: #727a8a;
}
.comments__item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comments__item-avatar svg {
  width: 25px;
  height: 25px;
}
.comments__item-content {
  flex-shrink: 1;
  flex-grow: 1;
}
.comments__item-head {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.comments__item-date {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-size: 14px;
  color: #727a8a;
}
.comments__item-date svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.footer {
  display: table-row;
  height: 1px;
}
.footer__inner {
  padding: 30px 0 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
@media (max-width: 1024px) {
  .footer__inner {
    padding: 30px 0 20px;
  }
}
.footer__logo {
  display: flex;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 8px 24px;
}
@media (min-width: 1280px) {
  .footer__nav {
    grid-gap: 8px 50px;
  }
}
.footer__nav-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .footer__nav-link:hover {
    color: #205AD6;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 954px;
  font-size: 14px;
  text-align: center;
}
.footer__desc {
  line-height: 24px;
  color: #727a8a;
}
.footer__desc-highlight {
  color: #fff;
}
.footer__copy {
  line-height: 24px;
  color: #727a8a;
}

.grid {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .grid {
    margin-bottom: 50px;
  }
}
.grid__headline {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 410px) {
  .grid__headline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.grid__headline-title {
  margin-bottom: 0;
}
.grid__headline-select {
  width: 100%;
}
@media (min-width: 410px) {
  .grid__headline-select {
    max-width: 160px;
  }
}
.grid__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.grid__list > * {
  min-width: 0;
}
@media (min-width: 480px) {
  .grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1550px) {
  .grid__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.grid--small .grid__list {
  grid-gap: 20px 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .grid--small .grid__list {
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid--small .grid__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1550px) {
  .grid--small .grid__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.header {
  margin-bottom: 20px;
}
.header__top-txt {
  text-align: center;
  padding: 10px 20px;
  color: #205AD6;
  font-weight: 700;
  background-color: #000;
  text-shadow: 0 0 8px #205AD6;
}
.header__top-list {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  background-color: #1A1A1A;
  padding: 10px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .header__top-list {
    overflow: visible;
    justify-content: center;
  }
}
.header__top-list-item {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  color: #fff;
  white-space: nowrap;
}
.header__top-list-item:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #205AD6;
  border-radius: 6px;
}
.header__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
  padding: 10px;
  background-color: #000;
}
@media (min-width: 1025px) {
  .header__middle {
    justify-content: flex-start;
    grid-gap: 30px;
  }
}
@media (min-width: 1025px) {
  .header__right {
    display: flex;
    align-items: center;
    grid-gap: 30px;
  }
}
.header__bottom {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
.header__bottom-item {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
  color: #fff;
  padding: 0 10px;
  text-transform: uppercase;
  height: 40px;
  background-color: #1A1A1A;
  flex-shrink: 1;
  flex-grow: 1;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.header__bottom-item:not(:last-child) {
  border-right: 1px solid #000;
}
.header__bottom-item:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #fff;
  flex-shrink: 0;
}
.header__bottom-item.green {
  color: #04F000;
  text-shadow: 0 0 9px rgba(240, 0, 224, 0.5);
}
.header__bottom-item.green:after {
  background-color: #04F000;
  text-shadow: 0 0 9px rgba(4, 240, 0, 0.5);
}
.header__bottom-item.purple {
  color: #F000E0;
  text-shadow: 0 0 9px rgba(240, 0, 224, 0.5);
}
.header__bottom-item.purple:after {
  background-color: #F000E0;
  text-shadow: 0 0 9px rgba(240, 0, 224, 0.5);
}
.header__bottom-item.red {
  color: #F00000;
  text-shadow: 0 0 9px rgba(240, 0, 0, 0.5);
}
.header__bottom-item.red:after {
  background-color: #F00000;
  text-shadow: 0 0 9px rgba(240, 0, 0, 0.5);
}
.header__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
}
.header__toggle.is-hidden {
  opacity: 0;
}
.header__toggle .line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}
@media (min-width: 1280px) {
  .header__toggle .line {
    transition: all 0.2s ease-in-out;
  }
}
.header__toggle .line:before, .header__toggle .line:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}
@media (min-width: 1280px) {
  .header__toggle .line:before, .header__toggle .line:after {
    transition: all 0.2s ease-in-out;
  }
}
.header__toggle .line:before {
  top: 0;
}
.header__toggle .line:after {
  bottom: 0;
}
.header__logo.is-hidden {
  opacity: 0;
}
@media (min-width: 1025px) {
  .header__logo {
    flex-shrink: 0;
    flex-grow: 0;
    width: 257px;
  }
  .header__logo img {
    width: 100%;
  }
}
.header__search {
  position: absolute;
  left: 10px;
  right: 45px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
  z-index: 6;
}
.header__search.is-active {
  transform: scale(1);
}
.header__search.is-show .header__search-result {
  display: block;
}
@media (min-width: 1025px) {
  .header__search {
    position: relative;
    flex-shrink: 1;
    flex-grow: 1;
    transform: none;
    transition: none;
    left: auto;
    right: auto;
  }
}
.header__search-form {
  position: relative;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .header__search-form {
    margin: 0 auto;
    max-width: 650px;
    width: 100%;
  }
}
.header__search-input {
  padding: 0 70px 0 20px;
}
.header__search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 40px;
  background-color: #205AD6;
  border-radius: 0 10px 10px 0;
}
.header__search-btn svg {
  width: 20px;
  height: 20px;
}
.header__search-toggle {
  position: relative;
}
.header__search-toggle.is-active .icon-close {
  transform: scale(1);
}
.header__search-toggle.is-active .icon-search {
  transform: scale(0);
}
@media (min-width: 1025px) {
  .header__search-toggle {
    display: none;
  }
}
.header__search-toggle svg {
  transition: all 0.2s ease-in-out;
}
.header__search-toggle .icon-close {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;
  transform: scale(0);
}
.header__search-result {
  position: absolute;
  top: calc(100% + 10px);
  border-radius: 10px;
  max-height: 320px;
  overflow: hidden;
  overflow-y: auto;
  background-color: #000;
  width: 100%;
  z-index: 10;
  display: none;
}
.header__search-result-item {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 20px;
  font-size: 16px;
  color: #727a8a;
  background-color: #0C0C0C;
}
@media (min-width: 1025px) {
  .header__search-result-item:hover {
    color: #fff;
    background-color: #205AD6;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.header__actions-btn {
  width: 24px;
  height: 24px;
}
@media (min-width: 1025px) {
  .header__actions-btn:hover {
    color: #205AD6;
  }
}
.header__actions-btn svg {
  width: 100%;
  height: 100%;
}
.header__ctrl {
  display: none;
}
@media (min-width: 1025px) {
  .header__ctrl {
    display: block;
  }
}
.header__ctrl.is-clone {
  display: block;
}
.header__ctrl-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
@media (min-width: 1025px) {
  .header__ctrl-buttons {
    display: flex;
    grid-gap: 30px;
    flex-shrink: 0;
    flex-grow: 0;
  }
}
.header__ctrl-btn {
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .header__ctrl-btn {
    padding: 0 30px;
  }
}
.header__ctrl-link {
  background-color: #1A1A1A;
}
@media (min-width: 1025px) {
  .header__ctrl-link {
    background: none !important;
    border-radius: 0;
    padding: 0;
  }
  .header__ctrl-link:hover {
    color: #205AD6;
  }
}
.header__user {
  display: flex;
  flex-direction: column;
  width: 100%;
  grid-gap: 10px;
  position: relative;
}
.header__user.is-active .header__user-btn {
  color: #205AD6;
}
.header__user.is-active .header__user-btn-arrow {
  transform: rotate(180deg);
}
.header__user-btn {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .header__user-btn {
    cursor: pointer;
    max-width: 250px;
  }
  .header__user-btn:hover {
    color: #205AD6;
  }
}
.header__user-btn-icon {
  flex-shrink: 0;
  flex-grow: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0C0C0C;
  overflow: hidden;
  color: #727a8a;
}
.header__user-btn-icon svg {
  width: 20px;
  height: 20px;
}
.header__user-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.header__user-btn-name {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__user-btn-arrow {
  position: absolute;
  right: 0;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .header__user-btn-arrow {
    position: static;
  }
}
.header__user-btn-arrow .icon-arrow {
  width: 12px;
  height: 12px;
  transform: rotate(90deg);
}
.header__user-drop {
  border-radius: 10px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.55);
  display: none;
  flex-direction: column;
  width: 100%;
  grid-gap: 10px;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .header__user-drop {
    position: absolute;
    top: calc(100% + 10px);
    width: 180px;
    right: 0;
    z-index: 5;
  }
}
.header__user-drop-link {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 20px;
  line-height: 1;
  color: #727a8a;
  background-color: #0C0C0C;
}
.header__user-drop-link.active {
  background-color: #1A1A1A;
  color: #205AD6;
}
@media (min-width: 1025px) {
  .header__user-drop-link {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .header__user-drop-link:hover {
    background-color: #1A1A1A;
    color: #205AD6;
  }
}
.header__user-drop-link svg {
  width: 20px;
  height: 20px;
}

.member {
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .member {
    display: flex;
    align-items: flex-start;
    grid-gap: 20px;
  }
}
.member__avatar {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 30px;
}
@media (min-width: 1025px) {
  .member__avatar {
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0;
  }
}
.member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member__head {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .member__head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
  }
}
.member__name {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  word-break: break-word;
  margin-bottom: 10px;
}
.member__name svg {
  position: relative;
  width: 18px;
  height: 18px;
  fill: #205AD6;
  top: 2px;
  margin-left: 5px;
}
.member__ctrl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
}
.member__ctrl-social {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.member__ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #000;
  overflow: hidden;
  color: #fff;
}
@media (min-width: 1025px) {
  .member__ctrl-btn:hover {
    color: #fff;
    background-color: #205AD6;
  }
}
.member__ctrl-btn svg {
  width: 18px;
  height: 18px;
}
.member__subscribe {
  display: flex;
}
.member__subscribe-btn {
  width: auto;
  border-radius: 10px 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.member__subscribe-count {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  background-color: #161616;
  padding: 0 10px;
  color: #727a8a;
}
.member__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px 5px;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .member__info {
    max-width: 1026px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px 10px;
  }
}
.member__info-item {
  font-size: 16px;
}
.member__info-item span {
  color: #727a8a;
}
.member__description {
  font-size: 16px;
  line-height: 1.5;
}

.pagination {
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination__holder {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
}
.pagination .page a,
.pagination .page-current span,
.pagination .prev a,
.pagination .next a,
.pagination .prev span.prev-item,
.pagination .next span.next-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #000;
  font-size: 14px;
  color: #727a8a;
}
.pagination .page a svg,
.pagination .page-current span svg,
.pagination .prev a svg,
.pagination .next a svg {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .pagination .page a:hover,
  .pagination .page-current span:hover,
  .pagination .prev a:hover,
  .pagination .next a:hover {
    background-color: #1A1A1A;
    color: #fff;
  }
  .pagination .page a:hover svg,
  .pagination .page-current span:hover svg,
  .pagination .prev a:hover svg,
  .pagination .next a:hover svg {
    color: #fff;
  }
}
.pagination .page-current span {
  background-color: #205AD6;
  color: #fff;
  pointer-events: none;
}
.pagination .page-current + .page {
  display: flex;
}
.pagination .page {
  display: none;
}
@media (min-width: 480px) {
  .pagination .page {
    display: flex;
  }
}
.pagination .next a,
.pagination .prev a,
.pagination .prev span.prev-item,
.pagination .next span.next-item  {
  padding: 0;
  align-items: center;
  width: 50px;
}
@media (min-width: 1025px) {
  .pagination .next a,
  .pagination .prev a,
  .pagination .prev span.prev-item,
  .pagination .next span.next-item  {
    width: auto;
    padding: 0 30px;
    grid-gap: 10px;
  }
}
.pagination .next svg,
.pagination .prev svg {
  color: #727a8a;
  width: 12px;
  height: 12px;
}
.pagination .next span,
.pagination .prev span {
  display: none;
}
@media (min-width: 1025px) {
  .pagination .next span,
  .pagination .prev span {
    display: block;
  }
}
@media (min-width: 1025px) {
  .pagination .prev {
    margin-right: 10px;
  }
}
.pagination .prev svg {
  transform: rotate(180deg);
}
.pagination .prev + .page {
  display: flex;
}
@media (min-width: 1025px) {
  .pagination .next {
    margin-left: 10px;
  }
}
.pagination .jump {
  display: none;
}
.pagination .jump span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #727a8a;
}
@media (min-width: 410px) {
  .pagination .jump {
    display: flex;
  }
  .pagination .jump + .page {
    display: flex;
  }
}

.partners {
  background-color: #000;
  margin: 0 -10px 30px;
  padding: 20px 10px;
}
@media (min-width: 1025px) {
  .partners {
    margin: 0 0 50px;
    border-radius: 10px;
  }
}
.partners__title {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  color: #FFB700;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .partners__title {
    margin-bottom: 20px;
  }
}
.partners__title svg {
  width: 20px;
  height: 20px;
}
.partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}
.partners__list-btn {
  width: auto;
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
  background-color: #0C0C0C;
}
@media (min-width: 1025px) {
  .partners__list-btn {
    padding: 0 20px;
  }
  .partners__list-btn:hover {
    background-color: #205AD6;
  }
}

.search-queries {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .search-queries {
    margin-bottom: 50px;
  }
}
.search-queries__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}
.search-queries__list-btn {
  width: auto;
  font-weight: 400;
  background-color: #000;
  color: #727a8a;
}
@media (min-width: 1025px) {
  .search-queries__list-btn:hover {
    background-color: #1A1A1A;
    color: #fff;
  }
}

.seo-block {
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .seo-block {
    margin-bottom: 50px;
  }
}

.single {
  margin: 0 0 30px;
}
@media (min-width: 1025px) {
  .single {
    margin: 0 0 50px;
  }
}
@media (min-width: 1280px) {
  .single__holder {
    display: flex;
    align-items: flex-start;
    grid-gap: 20px;
  }
}
@media (min-width: 1280px) {
  .single__content {
    flex-shrink: 1;
    flex-grow: 1;
    min-width: 0;
  }
}
.single__aside {
  display: none;
}
@media (min-width: 1280px) {
  .single__aside {
    width: 360px;
    flex-shrink: 0;
    flex-grow: 0;
    display: block;
    background-color: #000;
    border-radius: 10px;
    padding: 15px 30px 50px;
  }
  .single__aside-title {
    text-transform: uppercase;
    text-align: center;
    color: #727a8a;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3.6px;
    margin-bottom: 10px;
  }
  .single__aside-item {
    display: block;
  }
  .single__aside-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.single__video {
  /* padding-bottom: 56.25%; */
  margin: 0 0 20px;
  position: relative;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}
.single__video-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single__video-btn svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 1025px) {
  .single__video-btn {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 100px;
    height: 100px;
  }
  .single__video-btn:hover {
    color: #205AD6;
  }
}
.single__video img,
.single__video video,
.single__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 480px) {
  .single__video img,
  .single__video video,
  .single__video iframe {
    object-fit: contain;
  }
}
.single__video-board {
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.single__video-board img {
  margin: auto;
  height: 100%;
  object-fit: cover;
}
.single__content-row {
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .single__content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    flex-wrap: wrap;
  }
}
.single__content-meta {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .single__content-meta {
    margin-bottom: 0;
  }
}
.single__content-meta-item {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  color: #727a8a;
}
.single__content-meta-item svg {
  flex-shrink: 0;
  flex-grow: 0;
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.single__content-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}
.single__content-description {
  font-size: 16px;
  margin-bottom: 20px;
}
.single__info {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .single__info {
    margin-bottom: 50px;
  }
}
.single__info-inner {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.single__info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px;
}
.single__info-label {
  font-size: 16px;
  margin-top: 4px;
}
.single__info-tag {
  background-color: #000;
  color: #727a8a;
  width: auto;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 1025px) {
  .single__info-tag:hover {
    color: #fff;
    background-color: #205AD6;
  }
}
.single__ctrl {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
@media (min-width: 410px) {
  .single__ctrl {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .single__ctrl {
    margin-bottom: 0;
  }
}
.single__ctrl-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
.single__ctrl-btn {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 40px;
  grid-gap: 10px;
  border-radius: 10px;
  color: #727a8a;
  background-color: #000;
}
.single__ctrl-btn.like {
  color: #fff;
  background-color: #205AD6;
  padding: 0 20px;
  white-space: nowrap;
}
.single__ctrl-btn.dislike svg {
  transform: rotate(180deg);
}
.single__ctrl-btn .icon-comments,
.single__ctrl-btn .icon-share {
  stroke-width: 1.5px;
  stroke: currentColor;
}
@media (min-width: 1025px) {
  .single__ctrl-btn:hover {
    color: #fff;
    background-color: #205AD6;
  }
}
.single__ctrl-btn svg {
  width: 20px;
  height: 20px;
}
.single__ctrl-actions {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .single__ctrl-actions {
    margin-bottom: 0;
  }
}
.single__ctrl-actions-btn {
  color: #727a8a;
  background-color: #000;
  padding: 12px 20px;
  white-space: nowrap;
  font-weight: 400;
}
@media (min-width: 1025px) {
  .single__ctrl-actions-btn:hover {
    color: #fff;
    background-color: #205AD6;
  }
}
.single__ctrl-actions-btn svg {
  width: 18px;
  height: 18px;
}
.single__ctrl-actions-btn span {
  display: none;
}
@media (min-width: 1550px) {
  .single__ctrl-actions-btn span {
    transform: translateY(2px);
    display: block;
    font-size: 16px;
  }
}

.thumb {
  display: block;
  color: #fff;
}
@media (min-width: 1025px) {
  .thumb:hover {
    color: #205AD6;
  }
  .thumb:hover .thumb__img img {
    transform: scale(1.1);
  }
  .thumb:hover .thumb__actions {
    transform: translateX(0);
  }
}
@media (min-width: 1025px) {
  .thumb--exclusive:hover .thumb__img img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.thumb--exclusive .thumb__img img {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.thumb--exclusive .thumb__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #FFCB46 0%, #AE7D00 73.01%), rgba(0, 0, 0, 0.6);
}
.thumb--model {
  text-align: center;
}
.thumb--model .thumb__img {
  padding-bottom: 140%;
}
.thumb--model .thumb__title {
  font-size: 18px;
  font-weight: 700;
}
.thumb--model .thumb__meta {
  justify-content: center;
}
.thumb__img {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #727a8a;
  padding-bottom: 56.25%;
  margin-bottom: 15px;
}
.thumb__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.thumb__img video {
  z-index: 1;
}
@media (min-width: 1025px) {
  .thumb__img img {
    transition: all 0.2s ease-in-out;
  }
}
.thumb__actions {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  grid-gap: 5px;
}
@media (min-width: 1025px) {
  .thumb__actions {
    transition: all 0.2s ease-in-out;
    transform: translateX(-100px);
  }
}
.thumb__actions-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(7.5px);
  color: #fff;
}
.thumb__actions-btn.active {
  background: rgba(32, 90, 214, 0.6);
}
@media (min-width: 1025px) {
  .thumb__actions-btn {
    transition: all 0.2s ease-in-out;
  }
  .thumb__actions-btn:hover {
    background: rgba(32, 90, 214, 0.6);
  }
}
.thumb__actions-btn svg {
  width: 16px;
  height: 16px;
}
.thumb__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  grid-gap: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.thumb__info-item {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(7.5px);
  height: 22px;
  padding: 0 7px;
  color: #fff;
  font-size: 12px;
}
.thumb__info-item svg {
  width: 12px;
  height: 12px;
}
.thumb__info-label {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  height: 22px;
  padding: 0 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #FFCB46 0%, #FFB700 73.01%), rgba(0, 0, 0, 0.6);
}
.thumb__info-label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.thumb__title {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
}
.thumb__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px;
  margin-top: 10px;
}
.thumb__meta-item {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-size: 12px;
  color: #727a8a;
}
.thumb__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.thumb__meta-item svg.icon-video {
  stroke: none;
}

.top-bar {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.top-bar .swiper-wrapper {
  grid-gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
@media (min-width: 1025px) {
  .top-bar .swiper-wrapper {
    overflow: visible;
  }
}
.top-bar .swiper-slide {
  width: auto;
}
.top-bar__btn {
  width: auto;
  height: 36px;
  background-color: #000;
  color: #727a8a;
  font-weight: 400;
}
.top-bar__btn.active {
  background-color: #205AD6;
  color: #fff;
}
@media (min-width: 1025px) {
  .top-bar__btn:hover {
    color: #fff;
  }
}
.top-bar__arrow {
  display: none;
}
@media (min-width: 1025px) {
  .top-bar__arrow {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    padding: 0 10px;
    height: 36px;
    background-color: #000;
    color: #727a8a;
    z-index: 2;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .top-bar__arrow.swiper-button-disabled {
    opacity: 0;
  }
  .top-bar__arrow:hover {
    color: #205AD6;
  }
  .top-bar__arrow svg {
    width: 14px;
    height: 14px;
  }
  .top-bar__arrow.btn-prev {
    left: 0;
    justify-content: flex-start;
    background: linear-gradient(90deg, #0C0C0C 52.6%, rgba(12, 12, 12, 0) 100%);
  }
  .top-bar__arrow.btn-prev svg {
    transform: rotate(180deg);
  }
  .top-bar__arrow.btn-next {
    background: linear-gradient(270deg, #0C0C0C 52.6%, rgba(12, 12, 12, 0) 100%);
    right: 0;
    justify-content: flex-end;
  }
}

.player-wrap {
  position: relative!important;
}

.player-wrap #kt_player {
  position: absolute!important;
}

.thumb__img .no-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sort {
  position: relative;
  min-width: 160px;
}

.sort .sort-inner { 
  font-size: 14px;
  line-height: 20px;
  color: #727a8a;
  font-weight: 500;
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
  border: 2px solid #205AD6;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;

  display: block;
  padding: 8px 32px 8px 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;

  border-color: #000;
  background-color: #000;
}

.sort ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.sort ul a {
  padding: 12px 20px;
  display: block;
  color: #727a8a;
  -webkit-transition: color 0.4s, background 0.4s;
  -o-transition: color 0.4s, background 0.4s;
  transition: color 0.4s, background 0.4s;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  background: #000;
  -webkit-user-select: none;
  font-weight: 500;
  white-space: nowrap;
}

.sort .sort-inner::after {
  content: '';
  margin-top: -2px;
  border: solid #727a8a;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  right: 13px;
  position: absolute;
  -webkit-transition: border-color 0.4s, -webkit-transform 0.4s;
  transition: border-color 0.4s, -webkit-transform 0.4s;
  -o-transition: transform 0.4s, border-color 0.4s;
  transition: transform 0.4s, border-color 0.4s;
  transition: transform 0.4s, border-color 0.4s, -webkit-transform 0.4s;
  top: 50%;
}

@media (min-width: 1025px) {
 .sort ul a:hover {
    background-color: #205AD6;
    color: #fff;
  } 
}

.sort.sort-open ul {
  opacity: 1;
  visibility: visible;
}

.sort.sort-open .sort-inner {
  color: #ffffff;
}

.sort.sort-open .sort-inner::after {
  color: #ffffff;
  -webkit-transform: translate(-50%, 0%) rotate(223deg);;
  transform: translate(-50%, 0%) rotate(223deg);;
}

.grid__headline.list-sort {
  justify-content: flex-start;
}

.grid__headline.list-sort a {
  cursor: pointer;
}

.block-share.comments .row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.block-share.comments .row label {
  margin-bottom: 4px;
}

.block-share.comments .row:last-child {
  margin-bottom: 0;
}

.hidden {
  display: none!important;
}

.player-related-videos {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 5px 10px 30px 10px;
  background: #000000;
  overflow: hidden;
}

.player-related-videos .player-related-videos-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}

.player-related-videos .player-related-videos-item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
}

.player-related-videos .player-related-videos-item .title {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 52px;
  overflow: hidden;
  text-align: left;
  padding: 5px;
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(12, 12, 12, 0.8) 0px, transparent 50px);
}

.player-related-videos .player-related-videos-item .duration {
  display: block;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #ffffff;
  background: rgba(12, 12, 12, 0.8);
  padding: 2px 5px;
}

.no-touch .player-related-videos .player-related-videos-item .title, .no-touch .player-related-videos .player-related-videos-item .duration {
  display: none;
}

.single__ctrl-btn.active {
  color: #fff;
  background-color: #205AD6;
}

.fancybox-inner {
  background-color: #1A1A1A;
  padding: 25px 15px!important;
  border-radius: 10px;
  overflow: hidden;
}

.fancybox-inner .popup-title {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 20px;
  display: block;
}

form .field-label {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
  display: block;
}

form .textarea {
  padding: 20px;
}

.label-item {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.fancybox-inner .row {
  margin-bottom: 10px;
}

.fancybox-inner .row:last-child {
  margin-bottom: 10px;
}

.fancybox-close {
  top: -10px!important;
  right: -38px!important;
}

.captcha-control .image {
  display: flex;
  margin-bottom: 15px;
}

.captcha-control .image img {
  margin-right: 15px;
}