@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@700&display=swap');

@font-face {
	font-style: normal;
	font-weight: normal;
	font-family: "Material Icons";
	font-display: swap;
	src: url("MaterialIcons.woff2") format("woff2");
}
:root {
	--primary: #632CBA;
	--accent: #4EA8DE;
	--color-default: #312F33;
	--accent-hover: #2c76e6;
	--transition: all 0.25s cubic-bezier(.39,0,.17,.99);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:focus {
  outline: 0;
}
a {
    text-decoration: none;
    transition: all 200ms cubic-bezier(.39,0,.17,.99);
    color: #000;
}
img {
  border: none;
}
ul {
  list-style: none;
}
.select-item[value=""] {
  display: none;
}
option[disabled] {
  display: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font: 400 16px/1.6 'Open Sans', Arial, sans-serif;
  color: var(--color-default);
  background-color: #fff;
}
.center {
  width: 100%;
  max-width: 1470px;
  padding: 0 20px;
  margin: 0 auto;
}
section {
  margin-bottom: 50px;
}

/* Header */
.header {
  padding: 10px 0;
  margin-bottom: 40px;
}
.header .center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header img {
  display: block;
  max-height: 40px;
  width: auto;
}

/* Text-block */
.text-block p {
  margin-bottom: 15px;
}
.text-block p:last-child {
  margin-bottom: 0;
}
.text-block-small p {
  font-size: 14px;
}
.text-title {
  font-family: Dosis;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Filters-block */
.filters-block {
  position: relative;
  padding: 0 10px;
  max-width: 726px;
  margin: 0 auto 50px;
  z-index: 1;
}
.filters-block:after {
  content: '';
  position: absolute;
  top: 114px;
  left: -20px;
  right: -20px;
  bottom: 0;
  background-color: #f0f0f0;
  border-radius: 20px 60px 20px 20px;
  z-index: -1;
}
.filters-block img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px 60px 20px 20px;
}
.filters-inner {
  padding: 20px 0;
}
.filter-title {
  font-family: Dosis;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}
.filters-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.filters-label {
  font-size: 14px;
  font-weight: 700;
}
.filters-field-block {
  width: 100%;
  max-width: 160px;
}
.filters-select {
  position: relative;
}
.filters-select:after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: 0;
  border: 4px solid var(--color-default);
  border-right-width: 4px;
  border-left-width: 4px;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
input, select {
  width: 100%;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid rgba(49, 47, 51, 0.5);
  border-radius: 10px;
  color: var(--color-default);
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.filters-btn {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: var(--accent);
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 30px;
  transition: var(--transition);
}
.filters-btn:hover {
  background-color: var(--accent-hover);
}

/* Profiles-block */
.profiles-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 25px;
  z-index: 1;
}
.profiles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 5px;
}
.profiles-name {
  color: var(--primary);
  text-decoration: underline;
  transition: var(--transition);
}
.profiles-name:hover {
  text-decoration: none;
}
.profiles-inner {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
.profiles-item img {
  display: block;
  max-width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
.profiles-text {
  position: relative;
  flex-grow: 1;
  font-size: 11px;
  line-height: 1.5;
  padding: 10px 0;
}
.profiles-text:after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  left: -60px;
  bottom: 0;
  background: #FEF1FB;
  border-radius: 10px 10px 30px 10px;
  z-index: -1;
}
.page-btn {
  display: block;
  width: 100%;
  max-width: 448px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: var(--accent);
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 auto;
  transition: var(--transition);
}
.page-btn:hover {
  background-color: var(--accent-hover);
}
.page-btn-secondary {
  color: var(--color-default);
  background-color: #F8F8F8;
}

.page-btn-secondary:hover {
  color: #fff;
  background-color: var(--primary);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  padding: 0 25px;
}
.sidebar:last-child .sidebar-block:last-child {
  order: -1;
}
.sidebar-block {
  font-size: 14px;
  margin-bottom: 50px;
}
.sidebar-title {
  display: block;
  font-family: Dosis;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-inner {
  padding: 27px 32px;
  background: #F8F8F8;
  border: 1px solid #632CBA;
  border-radius: 20px 20px 60px 20px;
}
.sidebar-inner p {
  font-size: 14px;
  margin-bottom: 10px;
}
.sidebar-inner p:last-child {
  margin-bottom: 0;
}
.sidebar-inner li {
  display: block;
  margin-bottom: 10px;
}
.sidebar-inner li:last-child {
  margin-bottom: 0;
}
.sidebar-inner a {
  display: block;
  text-decoration: none;
  color: var(--color-default);
  transition: var(--transition);
}
.sidebar-inner a:hover {
  text-decoration: underline;
}
.sidebar-inner-color {
  color: #fff;
  background-color: var(--primary);
}
.sidebar-inner-color a {
  color: #fff;
}

/* Category-block */
.category-item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding: 27px 32px;
  margin-bottom: 12px;
}
.category-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #F8F8F8;
}
.category-item:before {
  content: attr(data-text);
  position: absolute;
  top: 10px;
  right: 32px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.category-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.category-item:last-child:after {
  display: none;
}
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.category-rating {
  font-family: 'Dosis';
  font-size: 24px;
  font-weight: 700;
}
.category-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-footer .page-btn-secondary {
  font-size: 12px;
  padding: 10px 20px;
  margin-right: 10px;
}
.category-footer .page-btn-secondary:last-child {
  margin-right: 0;
}

/* Footer */
.footer {
  padding: 20px 0 10px;
  background-color: #f1f1f1;
  border-radius: 0px 100px 0px 0px;
}
.footer img {
  display: block;
  max-height: 40px;
  width: auto;
  margin-bottom: 20px;
}
#seo_copyrights {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .header {
    padding: 30px 0;
    margin-bottom: 70px;
  }
  .header .center {
    justify-content: space-between;
  }
  .header img {
    max-height: 100%;
  }
  
  section {
    margin-bottom: 70px;
  }
  
  .wrapper {
    background: url(bg-main-left.svg) top 22% left no-repeat,
                url(bg-main-right.svg) bottom right no-repeat;
  }
  
  /* Text-section */
  .text-section p {
    font-size: 16px;
  }
  .text-title {
    font-size: 38px;
    margin-bottom: 30px;
  }
  
  /* Filters-section */
  .filters-block {
    display: flex;
    padding: 30px 0;
    margin-bottom: 70px;
  }
  .filters-block:after {
    top: 0;
    left: 30px;
    right: 0;
    bottom: 0;
  }
  .filters-block img {
    max-width: 330px;
  }
  .filters-inner {
    flex-grow: 1;
    padding: 0 30px;
  }
  .filter-title {
    font-size: 24px;
  }
  .filters-field-block {
    max-width: 217px;
  }
  
  /* Profiles-section */
  .profiles-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-bottom: 15px;
  }
  
  /* Footer */
  .footer {
    padding: 30px 0;
  }
  .footer .center {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer img {
    margin: 0;
    max-height: 100%;
  }
  
  #seo_copyrights {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }
}

@media (min-width: 1200px) {
  .main-section {
    display: grid;
    grid-template-columns: 230px 1fr 280px;
    grid-gap: 40px;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .main-section .center {
    padding: 0;
  }
  
  .page-btn,
  .filters-btn {
    padding: 16px 20px;
  }
  
  .sidebar {
    padding: 0;
    order: 2;
  }
  .sidebar:nth-child(2) {
    order: -1;
  }
  
  .sidebar:last-child .sidebar-block:last-child {
    order: 0;
  }
  
  .sidebar-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .category-footer .page-btn-secondary {
    padding: 10px 20px;
  }
  
  .filters-block img {
    max-width: 230px;
  }
  
  .filters-field-block {
    max-width: 160px;
  }
  
  /* Profiles-section */
  .profiles-item {
    font-size: 12px;
  }
  .profiles-item img {
    max-width: 124px;
  }
  .profiles-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .profiles-inner {
    padding: 0 20px;
  }
  .profiles-text {
    font-size: 12px;
    padding: 20px 0;
  }
}

@media (min-width: 1440px) {
  .header {
    margin-bottom: 100px;
  }
  .main-section {
    grid-template-columns: 264px 1fr 310px;
    grid-gap: 70px;
  }
  
  .filters-block img {
    max-width: 330px;
  }
  
  .filters-field-block {
    max-width: 217px;
  }
  
  .profiles-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .sidebar-inner {
    padding: 30px;
  }
  .sidebar-inner p,
  .sidebar-inner a {
    font-size: 16px;
  }
}

.header-nav-block {
    display: flex;
    align-items: center;
    font-size: 12px;
    position: relative;
    z-index: 3;
}
@media screen and (min-width: 980px){
.header-nav-block {
    order: 1;
    font-size: 16px;
}}
@media screen and (min-width: 980px){
.header-section-instanthookups5 .header-nav-item {
    margin-left: 44px;
}}
.header-section-instanthookups5 .header-nav-item {
    margin-left: 10px;
    color: inherit;
    text-transform: uppercase;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.header-section-instanthookups5 .header-nav-item {
    margin-left: 10px;
    color: inherit;
    text-transform: uppercase;
}
@media screen and (min-width: 980px){
.header-section-instanthookups5 .header-nav-item {
    margin-left: 44px;
}}
@media screen and (min-width: 980px){
.header-nav-item.dropdown-item span {
    padding-right: 26px;
}}
.header-nav-item.dropdown-item span {
    /*padding-right: 18px;*/
    position: relative;
    cursor: pointer;
}
.header-section-instanthookups5 {
    padding: 20px 0;
    background: var(--header);
    position: relative;
}
.header-section-instanthookups5 .center {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
}
@media screen and (min-width: 980px){
.header-section-instanthookups5 .center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}}
.header-nav-item.dropdown-item span::after {
    content: "\e91a";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 16px;
    color: rgba(0,0,0,.5);
    font-family: "Material Icons";
    line-height: 12px;
}
@media screen and (min-width: 980px){
.header-nav-item.dropdown-item span::after {
    font-size: 22px;
    line-height: 16px;
}}
.dropdown-child {
    display: none;
    min-width: 200px;
    font-size: 16px;
    padding: 10px;
}
.dropdown-child a:first-child {
    box-shadow: none;
}

.dropdown-child a {
    text-decoration: none;
    display: block;
    color: #5E5E5E;
    padding: 10px;
    box-shadow: 0 -1px 0 rgb(0 0 0 / 10%);
}
.header-section-instanthookups5 .header-nav-item:hover {
    color: var(--primary);
}
.header-nav-item.dropdown-item.hover {
	color: var(--primary);
}

.header-nav-item.dropdown-item.hidden {
	color: rgba(0, 0, 0, 0.85);
}

.header-nav-item.dropdown-item.hover+.dropdown-child {
	display: block;
	position: absolute;
	right: 0;
	background-color: #fff;
	min-width: 90px;
}

.header-nav-item.dropdown-item.hidden+.dropdown-child {
	display: none;
}

.header-section-instanthookups5 .header-nav-item:hover {
	color: var(--primary);
}
.dropdown:hover .dropdown-child {
	display: block;
	position: absolute;
	background-color: #fff;
	min-width: 200px;
}
.dropdown-child a:hover {
	color: var(--primary);
}

.footer-section-instanthookups5 {
    background: #F0F0F0;
    text-align: center;
    padding: 30px 0;
}
@media screen and (min-width: 980px){
.footer-section-instanthookups5 .logo {
    margin-bottom: 10px;
}}
.footer-section-instanthookups5 .logo {
    display: inline-block;
    margin-bottom: 30px;
}
@media screen and (min-width: 980px){
.footer-links {
    text-align: right;
    display: flex;
    padding-top: 50px;
}}
@media screen and (min-width: 980px){
.footer-links {
    text-align: right;
    display: flex;
    padding-top: 50px;
}}
.footer-section-instanthookups5 {
    background: #F0F0F0;
    text-align: center;
    padding: 30px 0;
}
.footer-links-item a {
    display: inline-block;
    margin: 0 19px;
    color: #2D2D2D;
    text-decoration-line: underline;
}
.footer-section-instanthookups5 .logo img {
    width: 160px;
    max-width: none;
}
.footer-section-instanthookups5 .copyright-block {
    color: #4F4F4F;
    font-size: 14px;
    margin-top: 40px;
}
@media screen and (min-width: 980px){
.footer-section-instanthookups5 .center {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}}


.filters-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  width:30%;
  max-height: 200px;
  overflow: auto;
}
.filters-items div {
  padding: 2px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.filters-items div:hover {
  background-color: var(--primary);
}
.filters-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}
/* Reg form */

.reg-form-block input, select {
  width: 100%;
  padding: 10px 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  border: none;
  background: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: rgba(0, 0, 0, 0.85);
}

.reg-form-block input::-ms-input-placeholder {
  color: transparent;
}

.reg-form-block input::placeholder {
  color: transparent;
}
input, select {
  width: 100%;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 10px;
  color: var(--color-default);
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.overflow-hidden {
  overflow-y: hidden;
}
.hidden {
  display: none !important;
}

.reg-form-block {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  background-color: var(--bg-color-1);
  
  position: relative;
  z-index: 2;
  
  transition: var(--transition);
  border:2px solid;
  margin-bottom:20px;
}
.reg-form-block.is-active {
  display: block;
  position: fixed;
  overflow-y: auto;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  
  background: rgba(0,0,0,0.6);
  
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.reg-form-block.is-active .reg-form-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.reg-form-inner {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  margin: 0 0 20px;
  overflow: hidden;
}
.reg-form-block.is-active .reg-form-inner {
  margin: 20px;
  padding: 0;
}

.reg-form-block.is-active .reg-form {
  padding: 20px;
}

.reg-form-block.is-active .reg-form-header {
  padding: 10px 0;
  background: var(--header);
}
.icon-arrow-left {
  width: 60px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 500;
}

.reg-form-block.is-active .reg-form-title {
  text-align: center;
}
.icon-arrow-left {
  display: flex;
}
.icon-arrow-left::after {
  content: "\e910";
  color: #ee1144;
  font-family: "Material Icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  
  font-size: 20px;
  margin: auto;
  font-weight: bold;
}
.overlay-block {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  display: none;
}
.overlay-block.is-active {
  display: block;
}

.reg-form-title {
  color: var(--text-color-1);
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 20px;
}

.form-item {
  position: relative;
  margin-bottom: 29px;
  margin-top: 15px;
}

.form-field-block .is-active .form-input::before {
  right: 0;
  left: 0;
  background: var(--primary);
}

.form-label-block {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  color: var(--text-color-1);
  font-size: 17px;
  padding: 10px 0;
  line-height: 20px;
  transition: var(--transition);
}

.is-focused .form-label-block {
  padding: 0;
  font-weight: 600;
  -webkit-transform: translateY(-14px);
  transform: translateY(-14px);
}

.form-label-block label {
  font-size: 14px;
  color: var(--text-color-1);
}

.form-input,
.form-select {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-input::before,
.form-select::before {
  content: '';
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

[data-form-item='password'] input {
  padding-right: 30px;
}

.form-select::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 6px;
  width: 0;
  height: 0;
  margin-left: -4px;
  border: solid transparent;
  border-width: 4px;
  border-color: transparent;
  border-top-color: #7f7f7f;
  transition: var(--transition);
  pointer-events: none;
}

.select-value {
  display: none;
}

.select-dropdown {
  display: none;
}

.select-item {
  font: 13px/2 inherit;
  position: relative;
  display: block;
  padding: 6px 20px;
  cursor: pointer;
  color: #000000;
}

.select-item:hover,
.select-item:focus {
  background: rgba(0, 0, 0, 0.06);
}

.form-error-block {
  margin-top: 3px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  color: var(--primary);
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--primary);
  word-break: break-word;
}

.error-field .form-input::before,
.error-field .form-select::before {
  right: 0;
  left: 0;
}

.error-field .form-error-block {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.form-error-block a {
  text-decoration: underline;
  color: var(--primary);
}

.form-success-block {
  margin-top: 3px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  font-size: 12px;
  color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  word-break: break-word;
}

.valid-field .form-success-block {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.valid-field .form-input::before,
.valid-field .form-select::before {
  background: var(--accent);
}

.form-success-block a {
  text-decoration: underline;
  color: var(--accent);
}

.submit-btn-block {
  margin: 10px auto;
}

.form-terms {
  margin: 25px auto 0;
  font-size: 11px;
  text-align: center;
}

.form-terms a {
  color: var(--primary);
}

.form-terms a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
}

/* Login & Recovery */

.recovery-form {
  display: none;
}

.recovery-form.visible {
  display: block;
}

.login-form.hidden {
  display: none;
}

.login-form-title {
  font-size: 20px;
  margin-bottom: 30px;
}

.login-form-error,
.recovery-form-error,
.recovery-form-success {
  margin-top: 3px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  font-size: 12px;
  color: var(--primary);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}

.error-field .login-form-error,
.error-field .recovery-form-error {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.login-form-error a,
.recovery-form-error a,
.recovery-form-success a {
  color: var(--primary);
}

.recovery-form-success {
  color: var(--accent);
}

.valid-field .recovery-form-success {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.recovery-password-btn,
.login-switch-btn {
  display: inline-flex;
  position: relative;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.recovery-password-btn:hover,
.recovery-password-btn:focus {
  color: var(--primary);
}

.login-switch-btn:hover {
  color: var(--primary);
}

.login-switch-btn::before {
  font: 400 20px/1 'Material Icons';
  content: '\e910';
  display: inline-block;
  vertical-align: top;
  color: currentColor;
  margin-right: 5px;
}

.recovery-form-submit,
.login-form-submit {
  width: 100%;
}

/* Media queries */

@media screen and (min-width: 860px) {
  /* SignIn Form */

  .reg-form-block select {
    visibility: hidden;
    opacity: 0;
  }
  
  .main-btn {
    display: none;
  }
  
  .reg-form-inner {
    background-color: var(--bg-color-1);
    border-radius: 20px;
  }
  
  .reg-form-block {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-radius: 20px;
  }
  
  .reg-form-block.is-active {
    position: static;
    background: transparent;
  }
  
  .reg-form-block.is-active .reg-form {
    padding: 0;
  }
  
  .reg-form-block.is-active .reg-form-inner {
    padding: 20px;
    margin: 0;
  }

  .signin-block .login-form-block,
  .signin-block .reg-form-block {
    padding: 32px 40px 40px;
  }

  .reg-form-title,
  .login-form-title {
    font-size: 24px;
  }
  
  .reg-form-title {
    text-align: center;
  }
  .icon-arrow-left {
    display: none;
  }

  .form-item {
    margin-top: 0;
  }

  /* Set select value & select dropdown */

  .select-value {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: auto;
    padding-right: 8%;
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    cursor: pointer;
  }

  .select-dropdown {
    display: block;
    position: absolute;
    z-index: 10;
    top: 100%;
    right: -20px;
    left: -20px;
    max-height: 212px;
    padding: 10px 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1), 0 4px 4px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
  }

  .form-field-block .is-visible .select-dropdown {
    visibility: visible;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    opacity: 1;
  }

  .select-item {
    position: relative;
    display: block;
    padding: 6px 20px;
    font-size: 13px;
    line-height: 2;
    font-family: inherit;
    cursor: pointer;
    color: #000000;
  }

  .select-item:hover,
  .select-item:focus {
    background: rgba(0, 0, 0, 0.06);
  }

  .form-field-block .is-visible .select-dropdown {
    visibility: visible;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    opacity: 1;
  }
}


@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}

@media screen and (max-width: 999px) {
  .header-section-dwsr-6gj90k .center {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .mobile-nav-visible section,
  .mobile-nav-visible footer,
  .mobile-nav-visible .header-description {
    display: none;
  }
  
  .mobile-nav-visible .header-nav-block {
    width: 100%;
    display: block;
    margin-top: 2rem;
  }
  
  .header-nav-item > .header-nav-item-inner {
    display: none;
  }
  
  .header-nav-item:hover > .header-nav-item-inner,
  .header-nav-item:active > .header-nav-item-inner {
    display: block;
  }
  
  .list-item {
    margin: 0 0 20px;
  }
  
  /******* FOOTER *******/
  .links-block {
    margin-top: 20px;
  }
}


/******* WEB *******/
@media screen and (min-width: 768px) {
  .header-section-dwsr-6gj90k .center {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  section {
    margin-bottom: 40px;
  }
  .info-summary-content {
    display: flex;
    justify-content: space-between;
  }
  .site-rating-block {
    display: flex;
    align-items: initial;
    flex-direction: row;
  }
  .site-rating .site-name {
    font-size: 36px;
    line-height: 54px;
  }
  .tariff-block {
    display: flex;
    align-items: flex-start;
  }
  .price-block {
    margin-right: 10px;
    margin-bottom: 0;
    max-width: 250px;
  }
  .info-wrapper {
    flex-direction: row;
  }
  .sections-wrapper-dwsr-6gj90k .center {
    display: grid;
    grid-template-columns: 1fr 260px;
    grid-gap: 20px;
  }
  .aside-block {
    display: block;
  }
  .aside-list-block .list-item {
    margin-bottom: 20px;
  }
  .short-review-block {
    grid-template-columns: 1fr 220px;
    grid-gap: 20px;
    align-items: start;
  }
  .appraisal-block {
    grid-row: initial;
  }
  .page-title-extended {
    margin: 0 0 40px;
  }
  .reviewer-block {
    margin: 0 0 40px;
  }
  .tabs-btns-block {
    display: flex;
  }
  .tabs-item {
    padding-bottom: 40px;
  }
  .table-content-item {
    justify-content: space-between;
  }
  .list-category {
    padding: 5px;
    font-size: 11px;
  }
  
  /******* FOOTER *******/
  .footer-section-dwsr-6gj90k {
    display: flex;
    justify-content: space-between;
  }
  .footer-col-1 {
    width: 100%;
    max-width: 306px;
  }
  .footer-col-2 {
    width: 35%;
    max-width: 690px;
    margin-top: 0;
  }
}

@media screen and (min-width: 1000px) {
  .mobile-btn-block {
    display: none;
  }
  .header-nav-block {
    display: flex;
  }
  .header-nav-item {
    white-space: nowrap;
  }
  .dropdown-item::before,
  .dropdown-item::after {
    content: none;
  }
  .dropdown-item .dropdown-item {
    padding-right: 20px;
  }
  .dropdown-item .dropdown-item::after {
    content: '';
  }
  .header-nav-item-inner {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    width: 280px;
    padding: 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    pointer-events: none;
  }
  
  .header-nav-item:hover > .header-nav-item-inner,
  .header-nav-item:active > .header-nav-item-inner {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  
  .header-nav-item .header-nav-item:hover > .header-nav-item-inner {
    visibility: visible;
    opacity: 1;
    top: -10px;
    left: 100%;
    width: auto;
  }
  
  .sections-wrapper-dwsr-6gj90k .center {
    grid-template-columns: 1fr 300px;
  }
  
  .list-category {
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1265px) {
  .header-nav-item-inner {
    left: auto;
    right: 0;
  }
  .header-nav-item .header-nav-item:hover > .header-nav-item-inner {
    left: auto;
    right: 100%;
  }
}
.main-btn {
  position: fixed;
  z-index: 1;
  right: 20px;
  left: 20px;
  width: auto;
  bottom: 20px;
}
.dropdown:hover:nth-child(even) .dropdown-child {
  display:grid;
}
.dropdown:nth-child(even) .dropdown-child{
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 2em;
    grid-gap: 2em;
    padding: 35px;
}
.dropdown:nth-child(even) .dropdown-child a{
      min-width: 120px;
}
.dropdown:hover:first-of-type .dropdown-child {
  display:grid;
}
.dropdown:first-of-type .dropdown-child{
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 2em;
    grid-gap: 2em;
    padding: 35px;
}
.dropdown:first-of-type .dropdown-child a{
      min-width: 120px;
}


/* MOBILE BTN */
.mobile-nav-visible .mobile-btn {
  right: 10px;
  width: 24px;
  transform: rotate(-270deg);
}
.mobile-nav-visible .mobile-btn .icon-line-1 {
  transform: rotate(-45deg);
}
.mobile-nav-visible .mobile-btn .icon-line-2 {
  transform: rotate(45deg);
}
.mobile-nav-visible .mobile-btn .icon-line-3 {
  display: none;
}
.mobile-nav-visible .mobile-btn .mobile-btn-item {
  position: absolute;
  background-color: #636e72;
}
.mobile-btn-block {
  display: none;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mobile-btn {
  position: relative;
  top: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 27px;
  height: 20px;
  padding: 0;
  overflow: initial;
  transition: none;
}
.mobile-btn .mobile-btn-item {
  z-index: 1;
  width: 100%;
  height: 3px;
  background-color: #636e72;
  transition: all 0.35s cubic-bezier(0.39, 0, 0.17, 0.99);
}





.btn-secondary-fix{
  display:none;
}
.mobile-logo{
  display:none;
}

@media screen and (max-width: 960px) {
  .header-nav-block{
    flex-direction: column;
    align-items: start;
  }
  
  
  .mobile-btn-block{
    margin-top:-65px;
  }
  .mobile-logo{
    display:block;
    margin:0 auto;
    width:15%;
  }
  .overlay-block.is-active{
    background: rgba(0,0,0,0.0);
  }
  
  
  .mobile-btn-block {
    display: flex;
    flex-direction:column;
    align-items:end;
    padding: 20px 20px 20px 20px;
  }
  .menu {
  	position: absolute;
  	/*top: 0;*/
  	left: 0;
  	width: 100%;
  	height: 100%;
  	/*padding: 15px;*/
    background: #fff;
  	transform: translateX(-100%);
  	transition: transform 0.5s; 
  	z-index:10;
  }
  .menu.active {
  	transform: translateX(0);
  }
  .menu li {
  	list-style-type: none;
  }
  .active .header-logo{
    display:none;
  }
  .breadcrumbs-section-instanthookups4{
    z-index:-1;
  }
  
  .header-nav-block{
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.85);
  padding-bottom:15px;
  }
  .header-nav-item{
  /*padding-bottom:10px;*/
  width:100%;
  box-shadow: 0px -1px 0px rgb(0 0 0 / 10%);
  }
  .wrapper .header-nav-item{
    padding-bottom: 10px;
    padding-top: 10px;
    margin:0;
  }
  .wrapper .dropdown{
    box-shadow: 0px -1px 0px rgb(0 0 0 / 10%);
        padding-bottom: 10px;
    padding-top: 10px;
    width:100%;
  }
  .dropdown:hover .dropdown-child{
    position:relative;
  }
  
  .dropdown .dropdown-child{
    /*display: block;*/
    position: relative;
    font-size: 14px;
    text-transform:none;
  }
  .dropdown:first-of-type .dropdown-child{
    padding:0;
  }
  .dropdown:hover:first-of-type .dropdown-child{
    display:block;
  }
  .dropdown:hover:nth-child(even) .dropdown-child{
    display:block;
  }
  .dropdown:nth-child(even) .dropdown-child{
    padding:0;
  }
  .container-section-instanthookups5{
    box-shadow: 5px 5px 5px #e7e7e7;
    height: 60px;
  }
  .header-nav-item.dropdown-item span{
    position:initial;
  }
  .header-nav-item.dropdown-item span::after{
    position:absolute;
    top: auto;
    bottom: auto;
  }
  .header-nav-item.dropdown-item.is-active span::after{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    color: var(--primary);
  }
  .btn.btn-secondary{
    display:none;
}
   .btn-secondary-fix{
    position: fixed;
    width: 100%;
    height: 65px;
    z-index: 100;
    margin: 0 auto;
    display: flex;
    bottom: 10px;
  }
    .btn.btn-mobile{
    min-width: 260px;
    min-height: 60px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    background: #4FD1C5;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px var(--primary);
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    margin:0 auto;
  }
}

@media screen and (max-width: 500px) {
    .mobile-logo{
    width:30%;
  }
}

.page-nav .nav-item:after{
    content: "\e91a";
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 16px;
    font-family: "Material Icons";
    line-height: 18px;
}

.users-label{
  color: #fff;
    position: absolute;
    left: 18px;
    top: 156px;
    width: 200px;
    background: linear-gradient(90deg,var(--primary) 0%,var(--accent) 100%);
    border-radius: 19px;
}
.users-item a{
  position:relative;
}

@media screen and (max-width: 1200px) {
.users-label{
  display:none;
}}