
.profile-worksheet td {
  padding-bottom: 10px;
}

.profile-worksheet table {
  max-width: 930px;
  width: 100%;
}

.profile-worksheet table img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-right: 10px;
}

.about {
  max-width: 100%;
  width: 100%;
  padding-top: 20px;
}

.about__title {
  font-weight: bold;
  font-size: 16px;
  color: #000;
  padding-bottom: 10px;
}

.about__paragraf {
  font-size: 16px;
  color: #000;
}

/*
Start selects
$$$$$$$$$$$$$*/
.ms-parent {
  border: 1px solid red;
}

.ms-parent .ms-choice {
  max-width: 330px;
  width: 100%;
  height: 36px !important;
  line-height: 0;
  position: absolute;
  border: none;
  left: 0;
  top: 0;
  border-radius: 0;
  outline: none;
}

.ms-parent .ms-choice span {
  height: 37px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.ms-drop.bottom {
  margin: 5px 0 0 -12px;
}

.ms-parent .ms-drop ul > li.hide-radio.selected {
  background-color: transparent;
  color: #000 !important;
}

.ms-parent .ms-drop ul > li.hide-radio label:hover {
  background: #560000;
  color: #fff;
}

.ms-parent .ms-drop.bottom {
  box-shadow: 0 0 0 !important;
  border: none !important;
}

.btnBlock {
  position: relative;
  background: #444;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  letter-spacing: 0.1rem;
  /*padding: 10px 30px;*/
  padding-left: 30px;
  padding-right: 30px;
  transition: 0.2s;
  margin: 0 15px;
}

.btnBlock:hover {
  background: #570000;
  color: #8A2BE2;
  animation: box 3s infinite;
}

.btnBlock::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #272822;
}

.btnBlock span {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.btnBlock i {
  position: absolute;
  inset: 0;
  display: block;
}

.btnBlock i::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 80%;
  top: -2px;
  border: 2px solid #570000;
  background: #570000;
  transition: 0.2s;
}

.btnBlock:hover i::before {
  width: 15px;
  left: 20%;
  animation: move 3s infinite;
}

.btnBlock i::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 20%;
  bottom: -2px;
  border: 2px solid #570000;
  background: #570000;
  transition: 0.2s;
}

.btnBlock:hover i::after {
  width: 15px;
  left: 80%;
  animation: move 3s infinite;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes box {
  0% {
    box-shadow: #570000;
  }
  50% {
    box-shadow: 0 0 25px #570000;
  }
  100% {
    box-shadow: #570000;
  }
}


.header #notification-link,
.header #chat-link,
.header .user-lk {
  font-size: 25px;
  margin-top: 0;
}

.header #notification-link, .header #chat-link, .header .user-lk {
  text-decoration: none;
}

.navbar-light .navbar-nav .nav-link {
  text-decoration: none !important;
  position: relative;
}

.btnBlockLine {
  position: relative;
  display: inline-block;
  padding: 6px 28px;
  margin: 0;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  overflow: hidden;
  font-size: 14px;
}

.btnBlockLine:hover {
  background: #570000;
  color: #ffffff;
  box-shadow: 0 0 5px #570000,
  0 0 25px #570000,
  0 0 50px #570000,
  0 0 200px #570000;
  /*-webkit-box-reflect: below 1px linear-gradient(transparent, #0005);*/
}

.btnBlockLine:hover span {
  opacity: 0;
}

.btnBlockLine span {
  position: absolute;
  display: block;
}

.btnBlockLine span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, white);
  animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.btnBlockLine span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, white);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}

.btnBlockLine span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, white);
  animation: animate3 1s linear infinite;
  animation-delay: 0.50s;
}

@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}


.btnBlockLine span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, white);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

.btnBlockLine.btnBlockLineSend {
  min-width: 170px !important;
}


.blockCheckbox {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
  max-width: 245px;
  width: 100%;
}

.blockCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.blockCheckbox img {
  margin: 0 auto;
  display: block;
}

.checkmark {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.blockCheckbox input:checked ~ .checkmark span {
  display: block;
  color: red;
}

.blockCheckbox input:checked ~ .checkmark:after {
  content: "";
  border: 1px solid red;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5px;
  border-radius: 5px;
}

.blockCheckbox__title {
  font-weight: normal;
  font-size: 35px;
  color: #580000;
  text-align: center;
}

.blockRadio {
  max-width: 530px;
  width: 100%;
}

.index-form {
  height: 95vh !important;
}

.mt100 {
  margin-top: 150px;
}

.navbar-toggler {
  z-index: 1000 !important;
}

.warningSearch,
.warningPol {
  text-align: center;
  color: red;
  font-size: 20px;
}

.headerBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.headerBtn i {
  position: relative;
  top: -7px;
}

.headerBtn span {
  font-size: 12px;
}

.index-form {
  background: none !important;
  padding: 0;
  position: relative;
}

.videoBackground {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 95vh;
  object-fit: cover;
}

.checkmark.iconMan:before,
.checkmark.iconWoman:before {
  content: "";
  display: block;
  background: url('/images/woman.png') no-repeat center;
  width: 135px;
  height: 144px;
}

.checkmark.iconMan:before {
  background: url('/images/man.png') no-repeat center;
}

.blockCheckbox input:checked ~ .checkmark.iconWoman:before {
  background: url('/images/girl-2.png') no-repeat center;
  background-size: contain;
}

.blockCheckbox input:checked ~ .checkmark.iconMan:before {
  background: url('/images/man-2.png') no-repeat center;
  background-size: contain;
}

.animated-button1 {
  background: linear-gradient(-30deg, #3d0b0b 50%, #2b0808 50%);
  padding: 10px 30px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button1:hover {
  color: #ffffff;
  text-decoration: none;
}

.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.btn.enterBtn {
  cursor: pointer;
  background: transparent;
  border: none !important;
  outline: none;
  transition: 1s ease-in-out;
  position: relative;
}

.enterBtn svg {
  position: absolute;
  left: 0;
  top: -2px;
  fill: none;
  width: 100%;
  stroke: #570000;
  stroke-dasharray: 150 0480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
  height: 42px;
}

.enterBtn:hover {
  transition: 1s ease-in-out;
  background: #560000;
}

.enterBtn:hover svg {
  stroke-dashoffset: -480;
}

.enterBtn span {
  color: black;
  font-size: 18px;
  font-weight: 100;
}

.enterBtn:hover span {
  color: #ffffff;
}

.nav-link.enterBtn {
  background: #444;
}

.nav-link.enterBtn svg {
  height: 40px;
  top: 3px;
}

.nav-link.enterBtn span {
  color: #ffffff;
}

.navbar-nav .nav-item {
  margin-right: 10px;
}

.index-map .indexMapFilter {
  position: relative !important;
  top: 0 !important;
  width: 100% !important;
  text-align: center !important;
  z-index: 1 !important;
  background: #580000 !important;
  padding: 10px !important;
}

.btn {
  border-radius: 0 !important;
  cursor: pointer;
}

.index-promo {
  border-top: none;
}

.index-form .h1 {
  padding-top: 20px;
  color: #8b0000;
}

.btn.mainBtn {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 2em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

.btn.mainBtn {
  border-color: #560000;
  color: #fff;
  box-shadow: 0 0 40px 40px #560000 inset, 0 0 0 0 #560000;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.btn.mainBtn:hover {
  box-shadow: 0 0 10px 0 #560000 inset, 0 0 10px 4px #560000;
  background: transparent
}

.btn.mainBtn:hover span {
  color: red;
}

.mainBtn.active {
  border-color: #560000;
  color: #fff;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  box-shadow: 0 0 10px 0 #560000 inset, 0 0 10px 4px #560000;
  background: transparent
}

.mainBtn.active span {
  color: red;
}

.effect {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  /* background-color: - add your own background-color */
  font-family: "Roboto", sans-serif;
  /* put your font-family */
  font-size: 18px;
  padding: 7px 0;
  width: 110px;
  overflow: hidden;
}

/* effect-1 styles */
.effect.effect-1 {
  transition: all 0.2s linear 0s;
}

.effect.effect-1:before {
  content: "";
  font-family: FontAwesome;
  font-size: 15px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 40px;
  transition: all 0.2s linear 0s;
}

.effect.effect-1:hover {
  text-indent: -20px;
}

.effect.effect-1:hover:before {
  opacity: 1;
  text-indent: 0;
}

.effect.effect-5 {
  transition: all 0.2s linear 0s;
}

.effect.effect-5:before {
  content: "";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 50% 50% 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: all 0.2s linear 0s;
}

.effect.effect-5:hover {
  text-indent: 30px;
}

.effect.effect-5:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}

.panel_blur {
  position: absolute;
  background: url("https://image.ibb.co/jGk9RR/bg.jpg") no-repeat center fixed;
  background-size: 100% 100%;
  filter: blur(5px);
}

.panel_blur2,
.panel2 {
  width: 100%;
  overflow-y: auto;
}

@media screen and (min-width: 768px) {
  .panel_blur2,
  .panel2 {
    width: 350px;
    overflow-y: visible;
  }
}

/**
 * Panel
 */
.panel {
  position: relative;
  z-index: 1;
}

.panel__register-form, .panel__password-form {
  display: none;
}

.panel__register-form .form__submit {
  margin-top: 5px !important;
  border: none;
  cursor: pointer;
}

.panel__register-form .form__submit span {
  color: #ffffff;
  font-weight: 600;
}

.panel__form-wrapper {
  width: 100%;
  height: 100%;
  padding: 10%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.panel__prev-btn2,
.panel__prev-btn {
  border: none;
}

@media screen and (min-width: 768px) {
  .panel__form-wrapper {
    padding: 10% 15%;
    border-radius: 0;
    overflow-y: visible;
  }
}

.panel__prev-btn2,
.panel__prev-btn {
  width: 24px;
  height: 24px;
  background: none;
  padding: 0;
}

.panel__prev-btn2 svg,
.panel__prev-btn svg {
  transition: fill 0.3s;
}

.panel__prev-btn:hover > svg,
.panel__prev-btn:hover > svg {
  fill: #580000;
}

.panel__headers {
  padding: 10px 0 0;
  text-align: center;
  list-style: none;
  margin-bottom: 10px;
}

.panel__header {
  font-size: 1.375rem;
}

.panel__header:first-child {
  padding-bottom: 5px;
}

.panel__header.active > .panel__link {
  color: #ff1552;
  font-size: 16px;
}

.panel__link {
  transition: all 0.3s;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  font-size: 24px;
}

.orText {
  max-width: 100%;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  padding: 20px 0;
}

.form__rowSubmit {
  padding-top: 0 !important;
}

.form__submitReg {
  display: block;
  text-align: center;
}

.form__submit:hover {
  color: #ffffff;
  text-decoration: none;
}

/**
 * Styles for <form>
 */
.form__row {
  position: relative;
  padding-top: 20px;
}

.form__row.has-error > .form__error:after {
  display: block;
}

.form__input {
  width: 100%;
  padding: 5px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  color: #ffffff;
}

.form__input:focus, .form__input:active {
  outline: 0;
}

.form__input:focus ~ .form__label, .form__input:active ~ .form__label, .form__input:valid ~ .form__label {
  bottom: 24px;
  font-size: 0.75rem;
}

.form__input:focus ~ .form__bar, .form__input:active ~ .form__bar {
  left: 0;
  right: 0;
  width: 100%;
}

.form__bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  display: block;
  width: 0;
  height: 2px;
  background-color: #580000;
  transition: all 0.3s;
}

.form__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  pointer-events: none;
  color: #ffffff;
}

.form__submit {
  width: 100%;
  padding: 10px 0;
  margin-top: 0;
  border: none;
  border-radius: 0;
  font-weight: 600;
  background-color: #580000;
  cursor: pointer;
  color: #ffffff;
}

.panelEnter {
  position: absolute;
  top: 80px;
  right: -110px;
}

.conteinerrelative {
  position: relative;
}

.form__retrieve-pass {
  display: block;
  padding: 15px 0 35px;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  font-size: 12px;
}

.form__retrieve-pass:hover {
  color: #fff;
}

.form__error {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 100%;
  height: 20px;
  color: #ff1552;
  font-size: 0.75rem;
  line-height: 20px;
}

.form__error:after {
  content: "x";
  position: absolute;
  bottom: 20px;
  right: -20px;
  display: none;
  width: 20px;
  height: 25px;
  font-size: 1.125rem;
  line-height: 25px;
  text-align: center;
  color: #ff1552;
}

.form__info {
  text-align: center;
  color: #ffffff;
}

.panelEnter {
  display: none;
}

.logoInPopup{
  margin: 0 auto;
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
}

.search .anketa .item .box-link.searchBtnBlock {
  width: 260px;
}

.search .anketa .item .box-link a {
  border-radius: 0 !important;
}

.iconItem__icon {
  position: absolute;
  top: 7px;
  left: -36px;
  width: 25px;
}

.hrefBlog {
  display: block;
  text-transform: uppercase;
  color: #585454 !important;
  font-size: 24px !important;
  padding-left: 17px;
  position: relative;
  top: -8px;
}

.search .filter .item.last-child .btn {
  width: 48%;
  margin-left: 0;
}

.search .filter .item.last-child {
  display: flex;
  justify-content: space-between;
}

/*
Start responsive
*/

@media (max-width: 1380px) {
  .search .filter .item.last-child .btn {
    height: 37px;
  }
}

@media (max-width: 1290px) {
  .index-form .h1 {
    font-size: 30px;
  }

  .blockCheckbox__title {
    font-size: 25px;
  }

  .header-wannayou span {
    font-size: 25px;
  }

  .header-logo a img {
    width: 30px;
  }

  .panelEnter {
    right: -35px;
    max-width: 330px;
    width: 100%;
  }
}

@media (max-width: 1190px) {
  .headerBtn span {
    display: none;
  }

  .index-form .h1 {
    font-size: 25px;
  }

  .header #notification-link, .header #chat-link, .header .user-lk {
    margin-top: 6px;
  }

  .navbar-nav.mr-auto {
    background-color: #fff;
    padding: 12px 0 10px 10px;
  }

  .navbar-nav .nav-item:last-child .btn.mainBtn {
    margin-bottom: 0;
  }

  .search .filter .item.last-child {
    flex-direction: column;
  }

  .search .filter .item.last-child .btn {
    width: 100%;
  }
}

@media (max-width: 985px) {
  .menu-top {
    margin-top: 100px;
  }

  .index-form .h1 {
    font-size: 25px;
  }

  .search .filter .item.last-child .btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 760px) {
  .header-desc {
    display: none;
  }

  .header-wannayou span {
    font-size: 18px;
  }

  .videoBackgroundText.mt100 {
    margin-top: 20px !important;
  }

  .videoBackground,
  .index-form {
    height: 84vh !important;
  }

  .profile-worksheet td {
    font-size: 14px;
  }

  .videoBackground, .index-form {
    height: 850px !important;
  }
}

@media (max-width: 510px) {
  .menu-top {
    margin-top: 190px;
  }

  .profile-worksheet table img {
    width: 25px;
    height: 25px;
  }

  .profile-worksheet td {
    font-size: 12px;
  }

  .header-wannayou span {
    display: none;
  }

  .index-form .h1 {
    font-size: 20px;
  }

  .panelEnter {
    right: 15px;
    width: 280px;
  }

  .videoBackground, .index-form {
    height: 800px !important;
  }

  .mt100 {
    margin-top: 20px;
  }
}

