/* General Styles */
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

/*=========== 
|   reset    |
=============*/
::selection {
  background: #bb0050;
  color: #fff;
}

*,
*: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;
  font-family: "Muli", sans-serif;
  color: #252121;
}

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%;
  height: 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;
}

ol, ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.clear {
  clear: both;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

section {
  position: relative;
}

#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;
  background: #fff;
  color: #222;
}

@media (max-width: 768px) {
  .page-wrap {
    width: 100%;
    margin-top: 47px;
  }
}

.page-wrap .container {
  padding: 0;
}

@media (max-width: 768px) {
  .page-wrap .container {
    padding: 1rem 0;
  }
}

.page {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 768px) {
  .page .container {
    box-shadow: none;
  }
}

button {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px 20px;
  border-radius: 0;
  border: 0;
  outline: 0;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #e50914;
  transition: .2s ease;
  font-size: calc(var(--base-font-s) * 1.25);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  
  color: #e50914;
  cursor: pointer;
}

button:hover {
  background: #e50914;
  color: #fff;
}

.home button, button.featured,
.featured button {
  background: #e50914;
  color: #fff;
}

.home button:hover, button.featured:hover,
.featured button:hover {
  background: #b40710;
  box-shadow: none;
}

.logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 160px;
}

header .logo {
  cursor: pointer;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

body {
  font-family: "Muli", sans-serif;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h6 {
  font-weight: 600;
}

p, li {
  font-size: 14px;
}

label {
  font-weight: 300;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: calc(var(--base-font-s) * 2);
  }
  h2 {
    font-size: calc(var(--base-font-s) * 1.75);
  }
  h3 {
    font-size: calc(var(--base-font-s) * 1.5);
  }
  h4 {
    font-size: calc(var(--base-font-s) * 1.25);
  }
  h5 {
    font-size: calc(var(--base-font-s) * 1.2s);
  }
  h6 {
    font-size: calc(var(--base-font-s) * 1.1);
  }
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.logo {
  position: relative;
  cursor: pointer;
  width: 160px;
  margin-right: 30px;
}

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

header.dark, footer.dark {
  background: #000;
  color: #fff;
}

/*===========
|   header    |
=============*/
header {
  position: relative;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 0 10px;
  background: #fff;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
  z-index: 120;
}

.wrapper-home header {
  position: fixed;
}

.wrapper-home header.header-up {
  transform: translateY(-80px);
  opacity: 0;
  transition: transform .5s ease-in-out, opacity 1s ease-in-out;
}

@media (max-width: 768px) {
  .wrapper-home header.header-up {
    transform: translateY(0);
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  header {
    position: fixed;
    max-height: 46px;
  }
}

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;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 10px;
  transition: .2s ease;
}

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

@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;
  }
}

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

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

@media (max-width: 768px) {
  header .logo {
    padding-top: 0;
  }
}

header button {
  margin-left: auto;
  padding: 5px 10px;
  font-size: 14px;
}

@media (max-width: 767px) {
  header button {
    padding: 5px 7px;
    font-size: 10px;
  }
}

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%;
  margin: 0;
  padding: 10px 0;
}

@media (max-width: 768px) {
  header .navbar {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 20px 10px;
    top: 46px;
    left: 0;
    background: #111;
    color: #fff;
    box-shadow: inset 0 10px 16px -10px rgba(0, 0, 0, 0.16);
  }
}

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

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;
  margin: 0 4px;
  transition: .2s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

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

header ul li span {
  padding: 5px;
  transition: .2s ease;
}

header ul li:hover:not(.tel) span {
  background: #e50914;
  color: #fff;
}

header .tel {
  cursor: unset;
}

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

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

@media (max-width: 768px) {
  header .user-nav li.sign {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 10px 20px;
    border-radius: 0;
    border: 0;
    outline: 0;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #e50914;
    transition: .2s ease;
    font-size: calc(var(--base-font-s) * 1.25);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    
    color: #e50914;
    cursor: pointer;
    width: fit-content;
    margin-top: 20px;
    padding: 5px;
  }
  header .user-nav li.sign:hover {
    background: #e50914;
    color: #fff;
  }
  .home header .user-nav li.sign, header .user-nav li.sign.featured,
  .featured header .user-nav li.sign {
    background: #e50914;
    color: #fff;
  }
  .home header .user-nav li.sign:hover, header .user-nav li.sign.featured:hover,
  .featured header .user-nav li.sign:hover {
    background: #b40710;
    box-shadow: none;
  }
  header .user-nav li.sign span {
    padding: 0;
  }
}

#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: #666;
  width: 100%;
  height: 2px;
  transition: .2s ease;
}

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

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

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

.dark #touch-menu span {
  background: #fff;
}

.dark #touch-menu span:before, .dark #touch-menu span:after {
  background: #fff;
}

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

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

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

/*===========
|  /header    |
=============*/
/*===========
|   footer    |
=============*/
footer {
  padding: 40px;
  background: #fff;
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  footer {
    padding: 20px;
  }
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  flex-wrap: wrap;
}

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

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

footer .container > p {
  padding: 20px 0;
  flex: 100%;
  font-size: 13px;
}

footer .row {
  margin-bottom: 20px;
}

footer .row:last-of-type {
  margin-bottom: 0;
}

footer .col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-inline-end: 40px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .col {
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

footer .col:first-of-type {
  border-inline-end: 1px solid #0cff4a;
}

@media (max-width: 768px) {
  footer .col:first-of-type {
    margin: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border: 0;
    border-bottom: 1px solid #0cff4a;
  }
}

footer .col:last-of-type {
  margin-inline-end: 0;
  max-width: 300px;
}

footer p {
  margin-bottom: 10px;
  font-size: 13px;
}

footer ul {
  width: fit-content;
}

@media (max-width: 768px) {
  footer ul {
    margin: 0;
  }
}

footer ul.flex_wrap li {
  flex: 0 1 auto;
  margin-inline-end: 10px;
  margin-bottom: 0;
  padding-inline-end: 10px;
  border-inline-end: 1px solid #e50914;
  text-align: center;
}

footer ul.flex_wrap li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 768px) {
  footer ul.flex_wrap li {
    margin: 0 0 20px 0;
    padding: 0;
    border: 0;
    text-align: left;
  }
}

footer ul.contact {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  footer ul.contact {
    order: 2;
    width: 100%;
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid #fcbec1;
  }
}

footer ul.contact a {
  white-space: nowrap;
}

footer li {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

footer li:hover a {
  color: #e50914;
}

footer .contact_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  footer .contact_wrap .terms-links_wrap {
    order: 1;
  }
}

footer .logo {
  margin-bottom: 20px;
}

.footer_title {
  margin-bottom: 10px;
  font-weight: bold;
}

.company {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: unset;
  font-size: 12px;
}

/*===========
|   /footer   |
=============*/
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.container {
  position: relative;
  margin: auto;
  padding: 0;
}

@media (max-width: 1920px) {
  .container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
  }
}

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

.card {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

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

.close-icon:before {
  content: "close";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  color: #666;
}

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

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

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.response {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #e50914;
}

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;
}

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

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

.form-group input:not([type="checkbox"]).has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  box-shadow: inset 0 0 0 1px #e50914;
}

.form-group input:not([type="checkbox"]).has-error:focus,
.form-group select.has-error:focus,
.form-group textarea.has-error:focus {
  box-shadow: inset 0 0 0 2px #00a52a;
}

.form-group textarea {
  height: 80px;
  padding: 10px;
}

input[type="checkbox"] {
  position: relative;
  background: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  margin: 0;
  padding: 0;
  height: 16px;
  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: #e50914;
}

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

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

select {
  position: relative;
  background-image: url(../images/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;
}

form button {
  padding: 16px;
  font-size: 16px;
}

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

form .term-wrap-text {
  margin-left: 10px;
}

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

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

form .term-wrap .terms-text {
  margin-left: 10px;
  font-size: 12px;
}

form .no-match {
  font-size: 12px;
  color: #e50914;
}

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

form p {
  font-weight: 400;
}

form p a {
  text-decoration: underline;
}

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

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, #e50914 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;
  font-size: 16px;
  transition: .2s ease;
  user-select: none;
  cursor: text;
}

.form-group.active label {
  top: -8px;
  left: 8px;
  z-index: 3;
  transform: none;
  padding: 0 4px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.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 label {
  margin-right: 10px;
  white-space: nowrap;
}

.form-group .input-wrap .cc-input {
  width: 60px;
  text-align: center;
}

.term-wrap {
  position: relative;
}

.required,
.input-msg {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #e50914;
  position: absolute;
}

.form-group .required, .form-group
.input-msg {
  right: 4px;
  bottom: 2px;
}

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

#sign-up form button,
.signin-form form button,
#support form button {
  width: 100%;
}

@media (max-width: 767px) {
  #sign-up form button,
  .signin-form form button,
  #support form button {
    max-width: 100%;
  }
}

#sign-up input, #sign-up select,
.signin-form input,
.signin-form select,
#support input,
#support select {
  font-size: 14px;
  color: #252121;
}

#sign-up .links-wrap,
.signin-form .links-wrap,
#support .links-wrap {
  margin-top: 20px;
  text-align: center;
}

#sign-up .links-wrap p,
.signin-form .links-wrap p,
#support .links-wrap p {
  margin-bottom: 10px;
}

#sign-up .links-wrap p a,
#sign-up .links-wrap p span,
.signin-form .links-wrap p a,
.signin-form .links-wrap p span,
#support .links-wrap p a,
#support .links-wrap p span {
  cursor: pointer;
  color: #e50914;
}

#sign-up .links-wrap p a:hover,
#sign-up .links-wrap p span:hover,
.signin-form .links-wrap p a:hover,
.signin-form .links-wrap p span:hover,
#support .links-wrap p a:hover,
#support .links-wrap p span:hover {
  text-decoration: underline;
  color: #83050b;
}

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

.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';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
}

.signin-form button {
  width: 100%;
  margin: 20px auto 0;
}

.signup-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

@media (max-width: 767px) {
  .support-content > div:first-child {
    order: 1;
  }
  .support-content > div:last-child {
    order: 0;
  }
}

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

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

.phone-wrap .prefix_wrap {
  width: 80px;
  margin-right: 5px;
}

.phone-wrap .prefix_wrap label {
  margin-left: 10px;
  color: #252121;
  cursor: pointer;
}

.phone-wrap .prefix_wrap .btn {
  display: block;
  height: 100%;
  padding: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0;
  line-height: 1;
}

.phone-wrap .prefix_wrap .dropdown-menu {
  min-width: 300px;
}

.phone-wrap .ui-select-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background-color: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #bbbbbb;
  transition: .3s ease;
  font-size: 12px;
  color: #333;
  z-index: 100;
  padding: 0 5px;
}

.phone-wrap .ui-select-container:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  box-shadow: inset 0 0 0 2px #00a52a;
}

.phone-wrap .ui-select-container.has-error {
  box-shadow: inset 0 0 0 1px #e50914;
}

.phone-wrap .ui-select-container.has-error:focus {
  box-shadow: inset 0 0 0 2px #00a52a;
}

.phone-wrap .ui-select-container input {
  height: 100%;
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .ui-select-container input:focus {
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.phone-wrap .ui-select-match {
  padding: 0;
}

.phone-wrap .ui-select-match::placeholder {
  color: #252121;
}

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

.phone-wrap .ui-select-match-text + i {
  display: none;
}

.phone-wrap .ui-select-match-text 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;
}

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

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

.phone-wrap .form-group {
  width: 100%;
  height: 100%;
  padding: 0;
}

.phone-wrap .form-group input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  background-color: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #bbbbbb;
  transition: .3s ease;
  font-size: 12px;
  color: #333;
}

.phone-wrap .form-group input:focus {
  border: inherit;
  outline: 0;
  outline-style: none;
  outline-color: none;
  box-shadow: inset 0 0 0 2px #00a52a;
}

.phone-wrap .form-group input.has-error {
  box-shadow: inset 0 0 0 1px #e50914;
}

.phone-wrap .form-group input.has-error:focus {
  box-shadow: inset 0 0 0 2px #00a52a;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.home {
  color: #fff;
}

section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*===========
|   hero    |
=============*/
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-image: url(../images/hero-bg1.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 100%;
    background-image: url(../images/hero-bg1-m.jpg);
  }
}

/*===========
|   /hero    |
=============*/
/*===========
|  categories  |
=============*/
.cat-bg {
  position: relative;
  overflow: hidden;
}

.cat-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  content: '';
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7) 100%);
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  transition: .5s ease;
  z-index: 0;
}

.hero.cat-bg:before {
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent 40%, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
}

.cat-bg.hp-category:hover:before {
  background-position-y: -50px;
  opacity: 1;
}

.mov-cat {
  position: absolute;
  left: 20px;
  bottom: 20px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .mov-cat {
    left: 10px;
    bottom: 10px;
  }
}

.hero .mov-cat {
  left: 40px;
  bottom: 40px;
}

@media (max-width: 768px) {
  .hero .mov-cat {
    top: 50%;
    left: 10px;
    bottom: 10px;
  }
}

.hp-category:hover .mov-cat {
  text-shadow: 0 0 5px black;
}

.mov-cat h4 {
  font-weight: 400;
}

.mov-cat h3 {
  margin: 10px 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .mov-cat h3 {
    margin: 0 0 10px;
  }
}

.mov-cat button {
  display: block;
  margin: 0;
}

.hero .mov-cat button {
  margin: auto;
}

@media (max-width: 768px) {
  .hero .mov-cat button {
    margin: 0;
  }
}

.cat-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  background: #111;
}

@media (max-width: 768px) {
  .cat-wrap {
    flex-wrap: wrap;
  }
}

.hp-category {
  position: relative;
  width: 100%;
  height: 320px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hp-category {
    height: 25vh;
    box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, 0.5);
  }
}

.hp-category:nth-child(1) {
  background-image: url(../images/cat-bg1.jpg);
}

.hp-category:nth-child(2) {
  background-image: url(../images/cat-bg2.jpg);
}

.hp-category:nth-child(3) {
  background-image: url(../images/cat-bg3.jpg);
}

.hp-category:nth-child(4) {
  background-image: url(../images/cat-bg4.jpg);
}

/*===========
|  /categories  |
=============*/
/*===============
|  icons section  |
=================*/
.icons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  height: 400px;
  background: #111;
  text-align: center;
}

@media (max-width: 768px) {
  .icons-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: fit-content;
    padding: 10px;
  }
  .icons-wrap > div {
    width: 50%;
    height: 50%;
  }
}

.icons-wrap .box {
  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;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .icons-wrap .box {
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}

.icons-wrap figure {
  width: 120px;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .icons-wrap figure {
    width: 50px;
    margin-bottom: 0;
  }
}

/*===============
|  /icons section  |
=================*/
/*===============
|  banners  |
=================*/
.banner {
  position: relative;
  height: 600px;
  background-color: #111;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .banner {
    height: min-content;
    padding: 20px;
    border-bottom: 1px solid #fff;
    text-align: center;
  }
  .banner:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
  }
}

.banner.bg-white {
  background-color: #efefef;
}

.banner.bg-white h3, .banner.bg-white p {
  color: #111;
}

@media (max-width: 768px) {
  .banner.bg-white h3, .banner.bg-white p {
    color: #ffffff;
  }
}

.banner:nth-of-type(1) {
  background-image: url(../images/banner-bg1.jpg);
}

.banner:nth-of-type(2) {
  background-image: url(../images/banner-bg2.jpg);
}

.banner:nth-of-type(3) {
  background-image: url(../images/banner-bg3.jpg);
}

.banner:nth-of-type(4) {
  background-image: url(../images/banner-bg4.jpg);
}

.banner:nth-of-type(5) {
  background-image: url(../images/banner-bg5.jpg);
}

.banner:nth-of-type(6) {
  background-image: url(../images/banner-bg6.jpg);
}

@media (max-width: 768px) {
  .banner:nth-child(odd) {
    background-position-x: 100%;
  }
}

.banner:nth-child(even) .text {
  margin-left: auto;
}

@media (max-width: 768px) {
  .banner:nth-child(even) {
    background-position-x: 0;
  }
}

.banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.banner .text {
  width: 40%;
}

@media (max-width: 768px) {
  .banner .text {
    width: 100%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}

.banner h3 {
  margin: 20px 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .banner h3 {
    margin: 10px 0;
  }
}

.banner p {
  margin-bottom: 10px;
}

.banner button {
  display: block;
  margin: 20px auto;
}

@media (max-width: 768px) {
  .banner button {
    margin: 10px auto 0;
  }
}

/*===============
|  /banners  |
=================*/
/*===============
|     thumbs   |
=================*/
.thumbs-wrap {
  max-width: 1360px;
  margin: 50px auto;
}

.thumbs-wrap .thumb-wrap {
  overflow: hidden;
  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;
  width: 100%;
}

@media (max-width: 768px) {
  .thumbs-wrap .thumb-wrap {
    flex-wrap: wrap;
  }
}

.thumbs-wrap .thumb-title {
  text-align: center;
  color: #111;
}

.thumb-box {
  flex: 1;
  margin-inline-end: 10px;
  padding: 20px 10px 0;
}

.thumb-box:last-child {
  margin-inline-end: 0;
}

.thumb-box:focus {
  border: 0;
  outline: 0;
}

@media (max-width: 768px) {
  .thumb-box {
    flex: 0 1 50%;
    margin: 0 10px;
    padding: 20px 0 0;
  }
}

.thumb-box .poster {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: .2s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (max-width: 768px) {
  .thumb-box .poster {
    min-height: 120px;
  }
}

.thumb-box .poster:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.thumb-box .thumb-disc {
  padding: 1rem 0;
  cursor: pointer;
}

.thumb-box p {
  color: #252121;
  line-height: 1;
}

@media (max-width: 768px) {
  .thumb-box p {
    font-size: 12px;
  }
}

.thumb-box p.thumb-text {
  font-weight: 600;
}

.thumb-box p.thumb-views {
  margin: .5rem 0 0;
  font-weight: 100;
  color: #252121;
}

.thumb-box .star-wrap i {
  margin-right: -4px;
  font-size: 12px;
  color: #e5cf00;
}

/*===============
|    /thumbs   |
=================*/
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.page {
  padding: 30px 0;
}

@media (max-width: 1024px) {
  .page {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .page {
    padding: 10px 0;
  }
}

.page .col {
  padding: 20px;
}

.page .col h5 {
  margin: 10px 0;
  font-size: 18px;
  color: #b40710;
}

.page .col-title {
  margin-bottom: 20px;
}

.page .col-title h4 {
  margin-bottom: 10px;
}

.page .col-form {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .page .col-form {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    order: 0;
  }
}

@media (max-width: 768px) {
  .page .col-text {
    order: 3;
  }
}

.page .text p {
  margin-bottom: 5px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .page.support-wrap, .page.signup-wrap, .page.pricing {
    padding: 0;
  }
}

.page.support-wrap .container, .page.signup-wrap .container, .page.pricing .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .page.support-wrap .container, .page.signup-wrap .container, .page.pricing .container {
    flex-direction: column;
    box-shadow: none;
  }
}

.page-title {
  margin-bottom: 20px;
}

.signup-wrap,
.support-wrap {
  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;
  width: 100%;
  height: auto;
  margin: auto;
}

.signup-wrap .content,
.support-wrap .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .signup-wrap .content,
  .support-wrap .content {
    display: block;
    border-radius: 0;
  }
}

.signup-wrap .content .text p,
.support-wrap .content .text p {
  margin-bottom: 10px;
}

.signup-wrap .content .text button,
.support-wrap .content .text button {
  flex-basis: 100%;
  margin-top: 20px;
}

.signup-wrap .contact,
.support-wrap .contact {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .signup-wrap .contact,
  .support-wrap .contact {
    margin-top: 0;
    padding-top: 0;
  }
}

/*=-=-=-=--=-=-
| support page |
-=-=-=-=-=-=-=-*/
.qnas h5 {
  margin-top: 20px;
}

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

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

.qna-title,
.qna-content {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  font-weight: 700;
}

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

.qna-title:before,
.qna-content:before {
  left: 0;
  transition: .15s ease;
  line-height: 1;
  font-weight: 700;
}

.qna-title {
  font-size: 14px;
  cursor: pointer;
}

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

.qna-content {
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid black;
  font-size: 13px;
  font-weight: 400;
  transition: .2s;
}

.qna-content:before {
  content: 'A';
}

.contact p {
  margin: 5px 0;
}

.contact p span {
  font-weight: bold;
}

.contact p a {
  color: #e50914;
  text-decoration: underline;
}

.contact p:last-child {
  margin-bottom: 0;
}

.moneyback {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  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 0;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
  color: #000;
}

.moneyback h3 {
  margin-top: 0 !important;
}

.moneyback p {
  font-size: 12px;
}

.moneyback figure {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  margin-right: 20px;
}

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

.support-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 30px;
}

.support-icons .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 20px 0px;
}

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

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

/*=-=-=-=--=-=-
| sign-up page |
-=-=-=-=-=-=-=-*/
.signup-wrap .container {
  display: block;
}

.signup-wrap .container > .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .signup-wrap .container > .content {
    flex-direction: column;
  }
}

.signup-wrap .col {
  -webkit-box-flex: 1 1 50%;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

@media (max-width: 768px) {
  .signup-wrap .col {
    -webkit-box-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.signup-wrap .col-text ul {
  margin: 20px 0;
}

.signup-wrap .col-text 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 .col-text li:before {
  content: "check";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  margin-right: 5px;
  font-size: 150%;
  font-weight: bold;
  color: #e50914;
}

.signup-wrap .col-text li span {
  font-weight: bold;
}

/*===============
|  price list  |
=================*/
.pricing > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 1200px;
}

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

.pricing .main-img {
  min-width: 400px;
  background-image: url("../images/pricing-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: 82% center;
}

@media (max-width: 1024px) {
  .pricing .main-img {
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .pricing .main-img {
    min-width: 100%;
    height: 100px;
    background-position-y: 65%;
  }
}

.pricing .text {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .pricing .text {
    margin: 0;
    padding: 10px;
  }
}

.pricing .text h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .pricing .text h3 {
    font-size: 18px;
  }
}

.pricing .text span {
  font-size: 80%;
  font-weight: 400;
}

.pricing .text p {
  margin-bottom: 5px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .pricing .text p {
    font-size: 12px;
  }
}

.prices-wrap {
  width: 100%;
  padding: 20px;
}

@media (max-width: 768px) {
  .prices-wrap {
    width: 100%;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .prices {
    padding: 0;
    background: transparent;
  }
}

.price-box {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 20px;
  transition: .2s ease;
}

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

.price-box:last-child {
  margin-bottom: 0;
}

.price-box.featured {
  box-shadow: 0 0 0 1px #e50914, 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.price-box .content {
  width: 100%;
  margin: 0;
}

.price-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .price-box ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.price-box li {
  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;
  margin-right: 10px;
  font-size: 13px;
  white-space: nowrap;
}

.price-box li:before {
  content: "navigate_next";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  font-size: 140%;
  font-weight: 700;
  color: #e50914;
}

@media (max-width: 768px) {
  .price-box li {
    margin-right: 0;
  }
}

.price-box button {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px 20px;
  border-radius: 4px;
  border: 0;
  outline: 0;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #e50914;
  transition: .2s ease;
  font-size: calc(var(--base-font-s) * 1.25);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #e50914;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.price-box button:hover {
  background: #e50914;
  color: #fff;
}

.home .price-box button, .price-box button.featured,
.featured .price-box button {
  background: #e50914;
  color: #fff;
}

.home .price-box button:hover, .price-box button.featured:hover,
.featured .price-box button:hover {
  background: #b40710;
  box-shadow: none;
}

@media (max-width: 768px) {
  .price-box button {
    margin-top: 1em;
    padding: 0.8em;
    font-size: .8em;
  }
}

.price-box button.featured {
  background-color: #e50914;
  color: #fff;
}

.price-box button.featured:hover {
  background: #cc0812;
}

.price-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.price-title h4 {
  font-size: 18px;
}

@media (max-width: 768px) {
  .price-title h4 {
    font-size: 14px;
  }
}

.price-title span {
  color: #e50914;
}

@media (max-width: 768px) {
  .price-title {
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e50914;
  }
}

.price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 20px;
}

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

.price-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .price-text {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #e50914;
  }
}

.price-text button {
  display: none;
}

p.price-num {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #e50914;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

p.price-num label {
  font-weight: 600;
}

p.price-num span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  p.price-num {
    margin: auto;
    padding: 10px;
    border-right: 0;
    text-align: right;
  }
}

p.desc {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

@media (max-width: 767px) {
  p.desc {
    font-size: 11px;
  }
}

.pricing-col .container {
  flex-direction: column;
  background: none;
}

.pricing-col .text {
  margin-bottom: 40px;
}

.pricing-col .text,
.pricing-col p {
  text-align: center;
}

.pricing-col .prices-wrap {
  background: none;
}

.pricing-col .prices {
  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;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .pricing-col .prices {
    flex-wrap: wrap;
  }
}

.pricing-col .price-box {
  margin: 0 10px;
  background: #fff;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .pricing-col .price-box {
    width: calc(100% / 2 - 2rem);
    margin: 10px auto;
  }
}

@media (max-width: 767px) {
  .pricing-col .price-box {
    width: 90%;
  }
}

.pricing-col .price-box:not(.featured) .price-title {
  padding-top: 16px;
}

.pricing-col .price-text,
.pricing-col .price-title {
  flex-direction: column;
}

.pricing-col .price-title {
  position: relative;
  margin-bottom: 20px;
}

.pricing-col .price-title span {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 70%;
  transform: translateX(-50%);
  background: #fff;
  text-align: center;
  color: #e50914;
  padding: 10px 20px;
  border-radius: 0;
  border-top: 1px solid #e50914;
  border-bottom: 1px solid #e50914;
}

.pricing-col .price-title button {
  display: none;
}

@media (max-width: 768px) {
  .pricing-col .price-text {
    display: flex;
  }
}

.pricing-col .price-text button {
  display: flex;
}

.pricing-col .price-num {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 768px) {
  .pricing-col .price-num {
    margin: initial;
  }
}

.pricing-col ul {
  flex-direction: column;
  align-items: flex-start;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .pricing-col ul {
    justify-content: center;
  }
}

.pricing-col ul li {
  margin-bottom: 10px;
}

.pricing-col ul li:last-of-type {
  margin-bottom: 0;
}

.pricing-col button {
  margin: 20px 0 0 0;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.page section {
  margin-top: 40px;
}

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

.page section.banner {
  display: block;
  min-height: auto;
  box-shadow: none;
}

.browse-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 1px 0 0 rgba(229, 9, 20, 0.5);
}

@media (max-width: 768px) {
  .browse-title {
    margin-bottom: 0;
  }
}

.browse-title h3 {
  margin: 0 20px 5px 0;
}

@media (max-width: 768px) {
  .browse-title h3 {
    display: none;
  }
}

.browse-title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 768px) {
  .browse-title ul {
    overflow-x: auto;
  }
}

.browse-title ul li {
  margin-right: 10px;
  padding: 5px;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

.browse-title ul li:hover {
  box-shadow: 0 1px 0 0 #b40710;
  color: #b40710;
}

.browse-title ul li.active {
  box-shadow: 0 2px 0 0 #b40710;
  color: #b40710;
}

@media (max-width: 768px) {
  .browse-title ul li.active {
    box-shadow: inset 0 -2px 0 -1px #e50914;
  }
}

.thumb-block-title {
  margin: 30px 0;
}

.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: 767px) {
  .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';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  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;
  font-size: 13px;
  text-transform: capitalize;
}

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

.movie-title h5 {
  font-size: inherit;
  font-weight: 500;
}

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

.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;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  position: fixed;
}

@media (max-width: 768px) {
  .full-details {
    overflow-y: auto;
    top: 46px;
    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;
}

.full-details .close-icon:before {
  content: "highlight_off";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  z-index: 1;
}

@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;
  }
}

.watch {
  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;
}

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

.watch:before {
  content: "play_arrow";
  font-family: 'Material Icons';
  text-transform: none;
  line-height: 1;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  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: #e50914;
}

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

.category:hover .cat-title {
  background: rgba(229, 9, 20, 0.9);
  color: #fff;
}

.categories-title {
  margin: 0 0 30px;
}

.categories-title h3 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .categories-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .categories-title h3 {
    font-size: 18px;
  }
}

/*===========
|   workout    |
=============*/
@media (max-width: 768px) {
  .workout-page {
    padding: 30px 10px 10px;
  }
}

.workout-page .level {
  flex: 100%;
  margin: 60px 0 20px;
  padding-bottom: 5px;
  font-weight: 500;
  text-transform: capitalize;
  color: #e50914;
}

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

.workout-page .links-wrap .col {
  height: 200px;
  margin: 0 !important;
  margin-right: 20px !important;
  padding: 0;
}

.workout-page .links-wrap .col:before {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.2) 50%);
  mix-blend-mode: multiply;
  transition: .2s ease;
}

.workout-page .links-wrap .col:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .workout-page .links-wrap .col {
    height: 100px;
    margin: 0 5px !important;
  }
}

.workout-page .links-wrap .col h3 {
  padding: 10px;
}

.workout-page .links-wrap .col.active {
  box-shadow: inset 0 0 0 4px #fff, 0 0 20px 0 rgba(0, 0, 0, 0.16);
}

.workout-page .links-wrap .col.active:before {
  opacity: 0;
}

.workout-page .links-wrap .col.active img {
  filter: none;
}

.workout-page .links-wrap .col.active h3 {
  background: rgba(255, 255, 255, 0.9);
  mix-blend-mode: luminosity;
  color: #e50914;
  text-shadow: none;
}

@media (max-width: 768px) {
  .workout-page .links-wrap .col.active h3 {
    background: transparent;
    mix-blend-mode: normal;
    color: #fff;
  }
}

.workout-page .links-wrap figure {
  height: 100%;
  position: relative;
}

.workout-page .links-wrap figure:before, .workout-page .links-wrap figure:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.workout-page .links-wrap figure:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .2s ease;
}

@media (max-width: 768px) {
  .workout-page .links-wrap figure:after {
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  }
}

.workout-page .links-wrap figure img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.workout-page .links-wrap figure h3 {
  top: inherit;
  bottom: 20px;
  color: #fff;
  transition: .2s ease;
}

@media (max-width: 768px) {
  .workout-page .links-wrap figure h3 {
    bottom: 5px;
    font-size: 13px;
    text-shadow: none !important;
  }
}

.workout-page .links-wrap:after {
  opacity: .2;
}

@media (max-width: 768px) {
  .workout-page .links-wrap {
    flex-direction: row !important;
    height: 100px;
  }
}

.thumbs-block-wrap {
  padding: 0 10px;
}

/* Helpers */
:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

/*============== 
|   helpers    |
===============*/
.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;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

:root {
  --page-w: 1366px;
  --base-font-s: 14px;
}

@media (max-width: 1024px) {
  :root {
    --page-w: 1200px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-w: 100%;
    --base-font-s: 12px;
  }
}

.hide {
  display: none !important;
}

.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: 767px) {
  .hide-tablet {
    display: block !important;
  }
}

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

.noSelect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
