:root {
  --base-font: 17px;
}

/*reset*/
::selection {
  background: #ff2f58;
  color: white;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -webkit-crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
}

body {
  position: relative;
  background-color: white;
  font-family: "Inter", sans-serif;
  color: #131111;
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}

input,
select,
textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: inherit;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:visited, a:active, a:focus {
  color: inherit;
  text-decoration: none;
}

b, strong {
  font-weight: 700;
}

button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 6px 30px;
  border: none;
  outline: 0;
  background: #ff2f58;
  transition: .2s ease;
  margin: 0;
  font-size: 21px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}

button:hover {
  background: #ff963b;
}

button.featured {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ff2f58;
}

button.featured:hover {
  background: #ff2f58;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, label {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: "Kanit", sans-serif;
  color: #ff2f58;
  margin-bottom: 13px;
  font-weight: 400;
}

@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 7px;
  }
}

h1 {
  font-size: calc(var(--base-font) * 2.6);
}

h2 {
  font-size: calc(var(--base-font) * 2.3);
}

h3 {
  font-size: calc(var(--base-font) * 2);
}

h4 {
  font-size: calc(var(--base-font) * 1.8);
}

h5 {
  font-size: calc(var(--base-font) * 1.5);
}

h6 {
  font-size: calc(var(--base-font) * 1.3);
}

@media (max-width: 768px) {
  h1 {
    font-size: calc(var(--base-font) * 2.1);
  }
  h2 {
    font-size: calc(var(--base-font) * 1.9);
  }
  h3 {
    font-size: calc(var(--base-font) * 1.7);
  }
  h4 {
    font-size: calc(var(--base-font) * 1.5);
  }
  h5 {
    font-size: calc(var(--base-font) * 1.3);
  }
  h6 {
    font-size: calc(var(--base-font) * 1.2);
  }
}

p {
  margin: 5px 0;
}

li {
  position: relative;
  list-style-type: none;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: auto;
}

.page-wrap {
  flex-grow: 1;
  padding-top: 50px;
}

section {
  padding: 5% 0;
}

.container {
  width: 90%;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

.hide-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hide-desktop {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hide-tablet-h {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex_wrap > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 768px) {
  .flex_wrap {
    flex-direction: column;
  }
}

.row {
  width: 100%;
  margin: 0;
}

.card {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}

.close-icon {
  font-size: 24px;
  font-weight: 100;
  cursor: pointer;
  transition: .2s ease;
}

.close-icon:before {
  content: "close";
  font-family: 'Material Icons';
  z-index: 1;
  color: #ff963b;
}

.close-icon:hover:before {
  color: #7c7c7c;
}

.modal-content {
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  background: transparent;
}

:root {
  --base-font: 17px;
}

.logo {
  position: relative;
  cursor: pointer;
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}

@media (max-width: 768px) {
  .logo {
    width: 99px;
    min-width: 99px;
    max-width: 99px;
  }
}

@media (max-width: 479px) {
  .logo {
    width: 97px;
    min-width: 97px;
    max-width: 97px;
    margin: 0;
  }
  header .logo {
    height: fit-content;
  }
  header .logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*header*/
header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: #222222;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: .2s ease;
}

@media (max-width: 768px) {
  header {
    height: 50px;
  }
}

.wrapper-home header {
  box-shadow: none;
  background-color: rgba(34, 34, 34, 0);
}

.wrapper-home header.header-up {
  background-color: #222222;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  transition: .5s ease-in-out;
}

.wrapper-home header.header-down {
  transition: .3s ease-in-out;
}

@media (max-width: 768px) {
  .wrapper-home header {
    background-color: #222222;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  }
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  padding: 0 10px;
  transition: .2s ease;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 8px;
  }
}

header .container > button {
  display: none;
}

@media (max-width: 768px) {
  header .container > button {
    display: block;
  }
}

@media (max-width: 479px) {
  header .container {
    width: 100%;
  }
}

header .logo {
  margin-right: 15px;
}

@media (max-width: 1024px) {
  header .logo {
    margin-right: 0;
  }
}

header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 0;
  border-radius: 0;
}

@media (max-width: 768px) {
  header .navbar {
    display: none;
    background-color: #222222;
    position: fixed;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 20px 10px;
    top: 50px;
    left: 0;
    border-top: 1px solid #ff2f58;
    color: #ffffff;
  }
}

@media (max-width: 768px) {
  header .navbar.in, header .navbar.show {
    position: absolute;
    left: 0;
    height: 100vh;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
  }
}

header .navbar.in + .navbar-toggle:after, header .navbar.show + .navbar-toggle:after {
  content: 'close';
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header ul:last-child {
  margin-left: auto;
}

@media (max-width: 768px) {
  header ul {
    display: block;
  }
}

header ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: .2s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  padding: 3px 5px;
  margin: 0 5px;
  font-size: 15px;
  transition: .2s ease;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

@media (max-width: 1024px) {
  header ul li {
    padding: 3px 5px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  header ul li {
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    border: 0;
    text-align: left;
  }
}

header ul li:hover:not(.tel):not(.dropdown-toggle):not(.btn-wrap) {
  color: #ff2f58;
  border-color: #ff2f58;
}

header button {
  margin-right: 3px;
  margin-left: auto;
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 500;
}

header button.featured {
  border-color: #ffffff;
  border-width: 1px;
}

header button.featured:hover {
  background-color: #ffffff;
  color: #131111;
}

header .user-nav li {
  text-transform: none;
}

header .user-nav li.btn-wrap {
  padding: 0;
  margin: 0;
}

header .user-nav li.btn-wrap:hover {
  background-color: none;
}

@media (max-width: 768px) {
  header .user-nav li.btn-wrap {
    order: 1;
    display: none;
  }
}

@media (max-width: 768px) {
  header .user-nav li.sign {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 6px 30px;
    border: none;
    outline: 0;
    background: #ff2f58;
    transition: .2s ease;
    margin: 0;
    font-size: 21px;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    width: fit-content;
    font-size: 17px;
    margin-top: 20px;
    padding: 7px 15px;
    text-transform: none;
    font-weight: 400;
  }
  header .user-nav li.sign:hover {
    background: #ff963b;
  }
}

.dropdown-toggle {
  display: none;
  transition: none;
}

.dropdown-toggle.active {
  font-weight: bold;
}

.dropdown-toggle > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dropdown-toggle > span:after {
  content: "keyboard_arrow_down";
  font-family: 'Material Icons';
  z-index: 1;
  font-weight: bold;
}

@media (max-width: 768px) {
  .dropdown-toggle > span {
    display: block;
  }
}

.dropdown {
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .dropdown {
    position: relative;
    top: 0;
    padding: 20px 10px 10px;
    background: transparent;
    box-shadow: none;
  }
}

.dropdown li {
  width: 100%;
  margin: 0 0 5px 0;
  text-align: left;
}

@media (max-width: 768px) {
  .dropdown li {
    margin-bottom: 16px;
  }
}

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

.dropdown li span {
  width: 100%;
}

#touch-menu {
  display: none;
  width: 20px;
  height: 30px;
  position: relative;
  margin-right: 20px;
}

@media (max-width: 768px) {
  #touch-menu {
    display: block;
  }
}

#touch-menu span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  width: 100%;
  height: 2px;
  transition: .2s ease;
}

#touch-menu span:before, #touch-menu span:after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  background: #ffffff;
  transition: .2s ease;
}

#touch-menu span:before {
  top: -5px;
}

#touch-menu span:after {
  top: 5px;
}

#touch-menu.on span {
  background: transparent;
  height: 0;
}

#touch-menu.on span:before {
  top: -10px;
  transform: rotate(45deg) translate(6px, 5px);
  background: #ffffff;
}

#touch-menu.on span:after {
  transform: rotate(-45deg) translate(5px, -5px);
  background: #ffffff;
}

/*/header*/
/*FOOTER*/
footer {
  padding: 30px 0;
  font-size: 15px;
  background-color: #222222;
  -webkit-box-shadow: 0px 0px 39px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 39px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 39px -9px rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

footer .container {
  display: flex;
}

footer .container > div {
  flex: 1;
  padding-inline-end: 20px;
}

footer .container.legal {
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }
  footer .container > div {
    padding-inline-end: 0;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #ffffff;
  }
  footer .container > div:first-child {
    padding-top: 0;
    margin-top: 0;
    border: none;
  }
}

footer ul li {
  font-size: 13px;
}

footer ul li a:hover {
  color: #ff963b;
}

footer ul.footermenu a {
  display: inline-flex;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
}

footer ul.footermenu a:hover {
  font-weight: 500;
  border-bottom: 1px solid #ff963b;
}

footer .logo {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}

footer .company {
  font-size: 13px;
  margin-top: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: unset;
}

footer .copyright {
  font-size: 10px;
  margin-top: 20px;
}

footer .legal {
  padding: 30px 0 0;
}

footer .legal ul {
  display: flex;
}

footer .legal ul li {
  font-size: 11px;
  margin-inline-end: 20px;
}

footer .legal ul li:last-child {
  margin-inline-end: 0;
}

footer .legal ul li a {
  color: #ffffff;
}

footer .legal ul li a:hover {
  color: #ff2f58;
}

:root {
  --base-font: 17px;
}

.response {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 500;
  color: #EE0E0E;
}

input:focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-internal-autofill-selected,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-internal-autofill-selected,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-internal-autofill-selected {
  background-color: inherit !important;
}

input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
}

input:not([type="checkbox"]),
select,
textarea {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #c9c9c9;
  transition: .3s ease;
  font-size: 13px;
  color: #333;
}

input:not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  box-shadow: inset 0 0 0 2px #ff963b;
}

@media (max-width: 768px) {
  input:not([type="checkbox"]),
  select,
  textarea {
    height: 44px;
  }
}

input[type="checkbox"] {
  position: relative;
  background: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 19px;
  min-width: 19px;
  max-width: 19px;
  margin: 0;
  padding: 0;
  height: 19px;
  border: 0;
  outline: 0;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px #888888;
  transition: .3s ease;
  cursor: pointer;
}

input[type="checkbox"]:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: 'check';
  font-family: 'Material Icons';
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  width: 16px;
  height: 16px;
  opacity: 0;
}

input[type="checkbox"]:checked {
  box-shadow: none;
  background: #ff963b;
}

input[type="checkbox"]:checked:after {
  opacity: 1;
}

input[type="checkbox"]:hover input[type=checkbox]:after {
  opacity: .5;
}

select {
  position: relative;
  background-image: url(../img/arrow-down.svg);
  background-size: 13px;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
  background-repeat: no-repeat;
}

form label {
  font-size: 13px;
  font-weight: 500;
}

form textarea {
  height: 80px;
  padding: 10px;
}

form button {
  padding: 13px;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
}

@media (max-width: 768px) {
  form button {
    width: 100%;
  }
}

form .term-wrap-text {
  margin-left: 1rem;
}

form .no-match {
  color: #EE0E0E;
}

form .general-error {
  position: relative;
  height: 20px;
}

form p {
  font-weight: bold;
}

form p a {
  text-decoration: underline;
}

form p a:hover {
  text-decoration: underline;
  color: #ff2f58;
}

select {
  cursor: pointer;
}

.loader {
  position: relative;
  top: 10px;
  width: 0;
  height: 1px;
  transition: .2s all;
}

.loader-gradient, .loader, header .nav-loader {
  background: linear-gradient(to right, #ff2f58 50%, rgba(255, 255, 255, 0) 100%);
}

.modal-content {
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  background: transparent;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label:not(.cc-label) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  z-index: 1;
  color: #555;
  transition: .2s ease;
  user-select: none;
  cursor: text;
}

.form-group.active:not(.cc-input-wrap) label {
  top: -8px;
  left: 8px;
  z-index: 3;
  transform: none;
  padding: 0 4px;
  font-size: 13px;
  background: #fff;
  color: #ff963b;
}

.form-group .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-group .input-wrap span {
  color: #777;
}

.required,
.input-msg {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 500;
  color: #EE0E0E;
  line-height: 1;
}

.form-group .required, .form-group
.input-msg {
  right: 10px;
  bottom: -16px;
  position: absolute;
}

.term-wrap .required, .term-wrap
.input-msg {
  right: 0;
  bottom: 0;
  position: absolute;
}

.form > .input-msg {
  margin-bottom: 10px;
}

.signin-form {
  position: relative;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  z-index: 10;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  padding: 16px;
}

.signin-form h3 {
  text-align: center;
}

.signin-form .loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
}

.signin-form .close-icon {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 24px;
  font-weight: 100;
  cursor: pointer;
}

.signin-form .close-icon:before {
  content: "close";
  font-family: 'Material Icons';
  z-index: 1;
}

.signin-form button {
  width: 100%;
  margin: 20px auto 0;
  background-color: #ff963b;
  border-color: #ff963b;
}

.signin-form button:hover {
  background-color: #ff2f58;
  border-color: #ff2f58;
}

.signin-form .form-group label {
  left: 20px;
}

.signin-form .form-group input {
  border-radius: 50px;
  padding: 0 20px;
}

.support .phone-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #c9c9c9;
  transition: .3s ease;
  font-size: 13px;
  color: #333;
  box-shadow: inset 0 0 0 1px #c9c9c9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 4;
  padding: 0;
}

.support .phone-wrap:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  box-shadow: inset 0 0 0 2px #ff963b;
}

@media (max-width: 768px) {
  .support .phone-wrap {
    height: 44px;
  }
}

.support .phone-wrap:focus-within {
  box-shadow: inset 0 0 0 2px #ff963b;
}

.support .phone-wrap .prefix_wrap {
  position: relative;
  width: 80px;
  height: 44px;
  border-right: 1px solid #bbbbbb;
  z-index: 3;
}

.support .phone-wrap .prefix_wrap:focus, .support .phone-wrap .prefix_wrap:focus-within {
  outline: 0;
  box-shadow: 0;
}

.support .phone-wrap .prefix_wrap .ui-select-container {
  position: relative;
  top: 0;
  padding: 0;
  height: 44px;
  width: 80px;
  background: transparent;
  box-shadow: none;
}

.support .phone-wrap .prefix_wrap .ui-select-container .ui-select-match {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../img/arrow-down.svg);
  background-size: 13px;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
  background-repeat: no-repeat;
  height: 100%;
  padding: 0;
}

.support .phone-wrap .prefix_wrap .ui-select-container .ui-select-match input[type='search'] {
  width: 80px;
}

.support .phone-wrap .prefix_wrap .ui-select-container .ui-select-match i.caret {
  display: none;
}

.support .phone-wrap .prefix_wrap .ui-select-container .ui-select-match span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 44px;
  padding-left: 5px;
}

@media (max-width: 768px) {
  .support .phone-wrap .prefix_wrap .ui-select-container .ui-select-match span {
    height: 44px;
  }
}

.support .phone-wrap .prefix_wrap .ui-select-container .ui-select-choices {
  z-index: 100;
  width: auto;
}

.support .phone-wrap .btn-default,
.support .phone-wrap .btn-default-focus {
  outline: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.support .phone-wrap input {
  box-shadow: none;
  background-color: transparent !important;
  border: 0 3px 3px 0;
  border-radius: 0;
  padding: 10px;
  z-index: 2;
}

.support .phone-wrap #phoneNumber {
  height: 42px;
  top: 1px;
  left: -1px;
  z-index: 2;
  border-radius: 0 3px 3px 0;
}

.support .phone-wrap .form-group {
  min-height: 44px;
  width: 100%;
}

.support button {
  margin-top: 20px;
}

.term-wrap {
  margin: 30px 0 20px;
}

.term-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.term-wrap .terms-text {
  position: relative;
  margin-left: 10px;
  margin-top: 0px;
  font-size: 12px;
  font-weight: 400;
}

.links-wrap {
  margin-top: 30px;
  text-align: center;
}

.links-wrap a {
  font-weight: 600;
  color: #131111;
}

.captcha-wrap {
  margin-bottom: 20px;
}

:root {
  --base-font: 17px;
}

.home {
  margin-top: -50px;
}

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

/*hero*/
.hero {
  height: 77vh;
  color: #131111;
  background: #ff2f58;
  background: -moz-linear-gradient(0deg, #ff2f58 0%, #ff963b 100%);
  background: -webkit-linear-gradient(0deg, #ff2f58 0%, #ff963b 100%);
  background: linear-gradient(0deg, #ff2f58 0%, #ff963b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$theme-color",endColorstr="$theme-color-second",GradientType=1);
  position: relative;
  display: flex;
}

.hero:before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  width: 77%;
  height: 400px;
  background-color: #222222;
  border-radius: 0 300px 300px 0;
  box-shadow: 33px 33px 27px -7px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 33px 33px 27px -7px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 33px 33px 27px -7px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

@media (max-width: 768px) {
  .hero:before {
    top: 20%;
  }
}

@media (max-width: 479px) {
  .hero:before {
    bottom: 0;
    top: auto;
    height: 230px;
    width: 93%;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 79vh;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
}

@media (max-width: 479px) {
  .hero {
    height: initial;
  }
}

.hero .container {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column-reverse;
  }
}

.hero .container > div {
  flex: 1;
  z-index: 1;
}

.hero .text {
  text-align: end;
}

@media (max-width: 768px) {
  .hero .text {
    text-align: center;
  }
}

.hero img {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  filter: drop-shadow(37px 19px 11px rgba(17, 21, 32, 0.7));
}

@media (max-width: 768px) {
  .hero img {
    max-width: 300px;
  }
}

.hero h2, .hero h3 {
  font-weight: 200;
}

.hero h2 strong, .hero h3 strong {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}

.hero h2 {
  font-size: 4em;
}

@media (max-width: 1024px) {
  .hero h2 {
    font-size: 3em;
  }
}

@media (max-width: 479px) {
  .hero h2 {
    font-size: 2em;
  }
}

.hero h3 {
  font-size: 3em;
}

@media (max-width: 1024px) {
  .hero h3 {
    font-size: 2em;
  }
}

@media (max-width: 479px) {
  .hero h3 {
    font-size: 1.5em;
  }
}

.hero button {
  font-size: 27px;
  padding: 13px 55px;
  font-weight: 400;
  margin-top: 50px;
  margin-left: auto;
  border-color: #ff963b;
}

@media (max-width: 768px) {
  .hero button {
    font-size: 19px;
    padding: 9px 33px;
    margin: 20px auto;
  }
}

.hero button:hover {
  background-color: #ff963b;
}

/*wrkt*/
.wrkt {
  text-align: center;
  background-color: #ff2f58;
  background: #ff2f58;
  background: -moz-linear-gradient(0deg, white 37%, #ff2f58 37%);
  background: -webkit-linear-gradient(0deg, white 37%, #ff2f58 37%);
  background: linear-gradient(0deg, white 37%, #ff2f58 37%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="white",endColorstr="$theme-color",GradientType=1);
  padding: 30px 0 0;
  color: #ffffff;
}

.wrkt h2 {
  text-align: center;
  padding: 0 20px 20px;
  color: #ffffff;
}

.wrkt h4 {
  color: #ff2f58;
  margin-top: 15px;
}

.wrkt .container {
  width: 100%;
  max-width: 100%;
  display: flex;
}

.wrkt .container > div {
  flex: 1;
  cursor: pointer;
  transition: .2s ease;
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  -webkit-box-shadow: 0px 9px 17px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 9px 17px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 9px 17px -9px rgba(0, 0, 0, 0.75);
}

.wrkt .container > div:hover .play-btn {
  opacity: 1;
}

.wrkt .container > div:hover .play-btn:before, .wrkt .container > div:hover .play-btn:after {
  opacity: 1;
}

.wrkt .container > div:hover:after {
  background-color: rgba(34, 34, 34, 0.2);
}

.wrkt .container > div:after {
  content: "";
  position: absolute;
  background-color: rgba(34, 34, 34, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: .3s ease;
}

@media (max-width: 768px) {
  .wrkt .container > div:after {
    background-color: rgba(34, 34, 34, 0.4);
  }
}

.wrkt .container > div:nth-child(n+1) {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.wrkt .container > div:nth-child(1) {
  background-image: url(../images/home-yoga.jpg);
  border-radius: 150px 150px 0 0;
}

.wrkt .container > div:nth-child(2) {
  background-image: url(../images/home-fitness.jpg);
  background-position: left top;
  background-color: white;
  border-radius: 150px 0 0 150px;
}

.wrkt .container > div:nth-child(3) {
  background-image: url(../images/home-strength.jpg);
  border-radius: 0 0 150px 150px;
}

.wrkt .container > div .play-btn {
  opacity: .5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wrkt .container > div .play-btn:before, .wrkt .container > div .play-btn:after {
  content: '';
  width: 70px;
  height: 70px;
  cursor: pointer;
  opacity: .8;
  transition: .2s ease;
  line-height: 1;
}

.wrkt .container > div .play-btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 calc(8.75px) #fff, 0 0 20px calc(8.75px) rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.wrkt .container > div .play-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "play_arrow";
  font-family: 'Material Icons';
  z-index: 1;
  background: transparent;
  font-size: 70px;
  text-align: center;
  color: #fff;
}

.wrkt .container > div .play-btn:hover:before, .wrkt .container > div .play-btn:hover:after {
  opacity: 1;
}

@media (max-width: 768px) {
  .wrkt .container > div .play-btn:before, .wrkt .container > div .play-btn:after {
    content: '';
    width: 33px;
    height: 33px;
    cursor: pointer;
    opacity: .8;
    transition: .2s ease;
    line-height: 1;
  }
  .wrkt .container > div .play-btn:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 calc(4.125px) #fff, 0 0 20px calc(4.125px) rgba(0, 0, 0, 0.2);
    border-radius: 50%;
  }
  .wrkt .container > div .play-btn:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "play_arrow";
    font-family: 'Material Icons';
    z-index: 1;
    background: transparent;
    font-size: 33px;
    text-align: center;
    color: #fff;
  }
  .wrkt .container > div .play-btn:hover:before, .wrkt .container > div .play-btn:hover:after {
    opacity: 1;
  }
}

.wrkt .container > div .text {
  z-index: 2;
}

@media (max-width: 768px) {
  .wrkt .container > div {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .wrkt .container {
    flex-direction: column;
  }
}

.wrkt p {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .wrkt p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .wrkt {
    background: #ff2f58;
  }
}

/*everywhere*/
.everywhere {
  padding: 50px 7%;
  background: #111520;
  background: -moz-linear-gradient(90deg, #ff963b 0%, #ff2f58 100%);
  background: -webkit-linear-gradient(90deg, #ff963b 0%, #ff2f58 100%);
  background: linear-gradient(90deg, #ff963b 0%, #ff2f58 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$theme-color-second",endColorstr="$theme-color",GradientType=1);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 0;
}

.everywhere h2 {
  color: #ffffff;
}

.everywhere p {
  color: #131111;
  font-weight: 300;
  font-size: 19px;
}

@media (max-width: 768px) {
  .everywhere p:last-child {
    margin-bottom: 30px;
  }
}

.everywhere .material-icons {
  font-size: 37px;
}

@media (max-width: 768px) {
  .everywhere {
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .everywhere {
    padding: 30px 20px;
    text-align: center;
    background: #ff963b;
  }
}

/*getfit*/
.getfit {
  background-image: linear-gradient(white, rgba(226, 231, 234, 0.6));
}

.getfit .container {
  padding: 3% 0;
  display: flex;
  flex-wrap: wrap;
}

.getfit .container > div {
  flex: 1 1 50%;
  padding: 0 33px;
  text-align: center;
  flex-flow: column;
  display: flex;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .getfit .container > div {
    padding: 0 20px;
  }
}

.getfit .container > div .material-icons {
  font-size: 3em;
  background: -webkit-linear-gradient(#222222, #7c7c7c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.getfit .container > div h3 {
  color: #ff2f58;
}

.getfit .container > div p:first-of-type {
  font-size: 19px;
  font-weight: 300;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .getfit .container > div p:first-of-type {
    font-size: 15px;
  }
}

.getfit .container > div p:last-of-type {
  font-size: 21px;
  margin-top: auto;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .getfit .container > div p:last-of-type {
    font-size: 18px;
  }
}

@media (max-width: 479px) {
  .getfit .container > div {
    padding: 33px 0;
    margin-bottom: 20px;
  }
  .getfit .container > div:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .getfit .container {
    flex-direction: column;
  }
}

.getfit button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 6px 30px;
  border: none;
  outline: 0;
  background: #ff2f58;
  transition: .2s ease;
  margin: 0;
  font-size: 21px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  margin: 3% auto;
}

.getfit button:hover {
  background: #ff963b;
}

@media (max-width: 479px) {
  .getfit button {
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .getfit {
    background-image: none;
  }
}

/* scroll button */
.scroll-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100px;
  height: 80px;
  bottom: 30px;
  cursor: pointer;
  animation: arrow-animation 2s infinite;
}

.scroll-btn:before, .scroll-btn:after {
  content: '';
  position: absolute;
  width: 46px;
  height: 8px;
  top: 16px;
  transition: .2s linear;
  background: #fff;
  border-radius: 10px;
}

.scroll-btn:before {
  left: 10px;
  transform: rotate(30deg);
}

.scroll-btn:after {
  right: 10px;
  transform: rotate(-30deg);
}

.scroll-btn:hover:before, .scroll-btn:hover:after {
  background: #cccccc;
}

@keyframes arrow-animation {
  0%, 100% {
  }
  50% {
    bottom: 20px;
  }
}

:root {
  --base-font: 17px;
}

.page {
  padding: 30px 0;
  background-color: white;
  color: #131111;
}

.page .container {
  display: flex;
}

.page .container > div {
  flex: 1;
  padding: 20px;
}

@media (max-width: 479px) {
  .page .container > div {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .page .container {
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .page.signup-wrap .container, .page.support-wrap .container {
    flex-direction: column-reverse;
  }
  .page.signup-wrap .container > div:first-child, .page.support-wrap .container > div:first-child {
    margin-top: 33px;
  }
}

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

.contact a, .contact .support-link span {
  color: #ff963b;
  font-weight: 600;
  cursor: pointer;
}

.contact a:hover, .contact .support-link span:hover {
  color: #131111;
}

/*form*/
.form {
  margin: 30px 0;
}

/*signup page*/
.signup-wrap ul {
  margin: 20px 0;
}

.signup-wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.signup-wrap li:before {
  content: "check";
  font-family: 'Material Icons';
  z-index: 1;
  position: relative;
  margin-right: 5px;
  font-size: 150%;
  font-weight: bold;
  color: #ff963b;
}

@media (max-width: 768px) {
  .signup-wrap li {
    display: block;
  }
}

/*support page*/
.qnas h5 {
  font-size: 23px;
}

.qnas .qna-wrap {
  margin-bottom: 10px;
  transition: .2s ease;
}

.qnas .qna-wrap:last-child .qna-content {
  border: 0;
}

.qnas .qna-title, .qnas .qna-content {
  position: relative;
  padding-left: 15px;
}

.qnas .qna-title:before, .qnas .qna-title:after, .qnas .qna-content:before, .qnas .qna-content:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.qnas .qna-title:before, .qnas .qna-content:before {
  left: 0;
  transition: .15s ease;
}

.qnas .qna-title {
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #7c7c7c;
  margin-bottom: 7px;
}

.qnas .qna-title:before {
  content: 'Q';
}

.qnas .qna-content {
  width: fit-content;
  padding: 0px 10px 17px 15px;
  border-bottom: 1px solid rgba(255, 150, 59, 0.3);
  font-size: 14px;
  transition: .2s;
  margin-bottom: 17px;
}

.qnas .qna-content:before {
  content: 'A';
  font-weight: bold;
}

.moneyback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
  padding: 13px;
  border-radius: 77px;
  background: rgba(124, 124, 124, 0.2);
}

@media (max-width: 768px) {
  .moneyback {
    padding: 9px;
  }
}

.moneyback p {
  font-size: 14px;
  padding-inline-end: 15px;
}

@media (max-width: 479px) {
  .moneyback p {
    font-size: 12px;
  }
}

.moneyback figure {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .moneyback figure {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
  }
}

.support-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 40px;
  font-size: 15px;
}

@media (max-width: 1200px) {
  .support-icons {
    flex-direction: column;
  }
}

.support-icons .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: initial;
  margin-inline-end: 30px;
  margin-bottom: 13px;
}

.support-icons .icon:last-child {
  margin-inline-end: 0;
  margin-bottom: 0;
}

.support-icons figure {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 13px;
}

.support-icons p span {
  font-weight: 600;
}

/*price list*/
.pricing .container {
  flex-direction: column;
}

.pricing .container > div {
  padding: 0;
}

.pricing h3 {
  text-align: center;
}

.pricing .info {
  margin: 30px 0;
  font-size: 13px;
  text-align: center;
}

.prices {
  display: flex;
  padding: 0 !important;
}

.prices .price-box {
  flex: 1;
  margin: 20px;
  border-radius: 12px;
  border: 2px solid #ff2f58;
}

.prices .price-box .inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.prices .price-box .inner h5 {
  min-height: 33px;
  display: block;
  text-align: center;
}

.prices .price-box .inner .price-desc {
  align-items: center;
}

.prices .price-box .inner .price-desc ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0;
}

.prices .price-box .inner .price-desc ul li {
  font-size: 13px;
  white-space: nowrap;
  padding: 3px 0;
}

.prices .price-box .inner .price-desc ul li:before {
  content: "circle";
  font-family: 'Material Icons';
  z-index: 1;
  font-size: 6px;
  color: #ff963b;
  margin-right: 5px;
}

.prices .price-box .inner .price-desc .price-num {
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.prices .price-box .inner .price-desc .price-num span {
  font-size: 21px;
}

.prices .price-box .inner button {
  font-size: 15px;
  font-weight: 600;
}

.prices .price-box .inner .desc {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .prices .price-box .inner {
    padding: 10px;
  }
}

.prices .price-box.featured {
  background: #ff2f58;
  background: -moz-linear-gradient(0deg, #ff2f58 0%, #ff963b 100%);
  background: -webkit-linear-gradient(0deg, #ff2f58 0%, #ff963b 100%);
  background: linear-gradient(0deg, #ff2f58 0%, #ff963b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$theme-color",endColorstr="$theme-color-second",GradientType=1);
  color: #ffffff;
  border: none;
}

.prices .price-box.featured h5 {
  color: #131111;
}

.prices .price-box.featured button {
  background-color: #131111;
  color: #ffffff;
}

.prices .price-box.featured button:hover {
  background-color: #ffffff;
  color: #131111;
}

.prices .price-box.featured .inner .price-desc ul li {
  color: #131111;
}

.prices .price-box.featured .inner .price-desc ul li::before {
  color: #131111;
}

@media (max-width: 768px) {
  .prices .price-box {
    margin: 20px 10px;
  }
}

@media (max-width: 479px) {
  .prices {
    flex-direction: column;
  }
}

:root {
  --base-font: 17px;
}

.thumbs-block,
.categories-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .thumbs-block,
  .categories-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }
}

@media (max-width: 479px) {
  .thumbs-block .thumb-wrap,
  .thumbs-block .category,
  .categories-wrap .thumb-wrap,
  .categories-wrap .category {
    width: calc(50% - 15px);
    margin-right: 0;
  }
  .thumbs-block .thumb-wrap:nth-child(odd),
  .thumbs-block .category:nth-child(odd),
  .categories-wrap .thumb-wrap:nth-child(odd),
  .categories-wrap .category:nth-child(odd) {
    margin: 0 5px 15px 10px;
  }
  .thumbs-block .thumb-wrap:nth-child(even),
  .thumbs-block .category:nth-child(even),
  .categories-wrap .thumb-wrap:nth-child(even),
  .categories-wrap .category:nth-child(even) {
    margin: 0 10px 15px 5px;
  }
}

.thumb {
  position: relative;
  cursor: pointer;
}

.thumb:before, .thumb:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.thumb:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .2s ease;
}

.thumb:after {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.thumb:hover:after {
  opacity: 1;
}

.thumb:hover .play-btn {
  opacity: 1;
}

.thumb .play-btn {
  opacity: 0;
}

/*movies*/
.thumb-wrap {
  width: calc(100% / 5 - 20px);
  margin-right: 20px;
  margin-bottom: 20px;
}

.thumb-wrap:nth-child(5n) {
  margin-right: 0;
}

.thumb-wrap:last-child:not(:nth-child(5n)) {
  margin-right: auto;
}

.thumb-wrap > .thumb img {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.08);
}

.thumb-wrap > .thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: .2s ease;
}

.thumb-wrap > .thumb .play-btn:before, .thumb-wrap > .thumb .play-btn:after {
  content: '';
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: .8;
  transition: .2s ease;
  line-height: 1;
}

.thumb-wrap > .thumb .play-btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 calc(6.25px) #fff, 0 0 20px calc(6.25px) rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.thumb-wrap > .thumb .play-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "play_arrow";
  font-family: 'Material Icons';
  z-index: 1;
  background: transparent;
  font-size: 50px;
  text-align: center;
  color: #fff;
}

.thumb-wrap > .thumb .play-btn:hover:before, .thumb-wrap > .thumb .play-btn:hover:after {
  opacity: 1;
}

.movie-title {
  width: 100%;
  margin-top: 10px;
  text-transform: capitalize;
  text-align: left;
}

@media (max-width: 768px) {
  .movie-title {
    margin-top: 7px;
  }
}

.movie-title h5 {
  font-family: "Inter", sans-serif;
  color: #7c7c7c;
  font-size: 17px;
}

@media (max-width: 1024px) {
  .movie-title h5 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .movie-title h5 {
    font-size: 12px;
  }
}

.genre {
  font-weight: 500;
  color: #ff2f58;
}

.thumb-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 5px;
}

.thumb-details > *:last-child {
  margin-left: auto;
}

.stars-wrap img {
  width: auto;
  height: 12px;
}

.full-details {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 95%;
  max-width: 1000px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  position: fixed;
}

@media (max-width: 768px) {
  .full-details {
    overflow-y: auto;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
  }
}

.full-details .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .full-details .content {
    display: grid;
    gap: 20px;
  }
}

.full-details .thumb {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .full-details .thumb {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    grid-column: 1 / 2;
    grid-row: 1;
    margin-right: 0;
  }
}

.full-details .close-icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
}

@media (max-width: 768px) {
  .full-details .close-icon {
    position: fixed;
  }
}

@media (max-width: 768px) {
  .details-title {
    grid-column: 2 / 6;
    grid-row: 1;
    padding-right: 30px;
  }
}

.details-text {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .details-text {
    margin-right: 0;
    grid-column: 1 / 5;
    grid-row: 2;
  }
}

.details-text > * {
  margin-bottom: 10px;
}

.details-text .description {
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trailer-wrap {
    grid-column: 1 / 5;
    grid-row: 3;
  }
  .trailer-wrap h5 {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .watch {
    margin-top: 20px;
    padding: 10px;
  }
}

.watch:before {
  content: "play_arrow";
  font-family: 'Material Icons';
  z-index: 1;
  font-size: 20px;
}

.video-player {
  width: 100%;
  height: 100%;
  min-height: 300px;
  margin-top: 30px;
  background: #000;
}

/*sports*/
.category {
  width: calc(100% / 3 - 20px);
  margin: 0 20px 20px 0;
  cursor: pointer;
  position: relative;
}

.category:before, .category:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.category:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .category {
    position: relative;
  }
  .category:before, .category:after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
  }
  .category:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .2s ease;
  }
  .category:after {
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

.category .cat-title {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 10px;
  transition: .2s ease;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-align: center;
  color: #ff2f58;
}

@media (max-width: 768px) {
  .category .cat-title {
    padding: 5px;
    background: transparent;
    font-size: 16px;
    color: #fff;
  }
}

.category:hover .cat-title {
  background: rgba(255, 47, 88, 0.9);
  color: #fff;
}

/*workout*/
.workout-page {
  background-color: white;
  padding: 30px 0;
}

.workout-page h3 {
  text-align: center;
  color: #7c7c7c;
}

@media (max-width: 479px) {
  .workout-page h3 {
    font-size: 23px;
  }
}

.workout-page .home-wrkt {
  display: flex;
  margin-bottom: 30px;
}

.workout-page .home-wrkt .col {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  background-color: #E2E7EA;
}

.workout-page .home-wrkt .col.active {
  background-color: #ff2f58;
}

.workout-page .home-wrkt .col:hover {
  opacity: .5;
}

.workout-page .home-wrkt h4 {
  margin: 5px 0;
  color: #131111;
  font-size: 19px;
}

.workout-page .home-wrkt h5 {
  margin-top: 17px;
}

.workout-page .level {
  margin: 20px 0;
  text-transform: capitalize;
  color: #7c7c7c;
}

@media (max-width: 768px) {
  .workout-page .level {
    margin: 20px 0 10px;
  }
}

@media (max-width: 479px) {
  .workout-page .level {
    font-size: 19px;
  }
}
