body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-style: normal;
  font-weight: 300;
  color: #d5d5d5;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #111111;
}

main {
  min-height: 90vh;
  padding-top: 4.3rem;
  padding-bottom: 3rem;
}

.marked {
  color: #ffca15 !important;
}

.fs-7 {
  font-size: 0.9rem !important;
}

.fs-8 {
  font-size: 0.8rem !important;
}

.fs-9 {
  font-size: 0.7rem !important;
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 600px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .container {
    max-width: 900px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

*:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-main {
  background-color: white;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-main .navbar-brand {
  width: 120px;
  min-width: 100px;
  height: auto;
  margin-left: 0.5rem;
  margin-right: 1.5rem;
}
.navbar-main .nav-link {
  color: #3b3b3b !important;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}
.navbar-main .nav-link span {
  position: relative;
}
.navbar-main .nav-link span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 110%;
  opacity: 0;
  border-bottom: currentColor solid 2px;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.navbar-main .nav-link:hover {
  color: #F03F36 !important;
}
.navbar-main .nav-link:hover span:after {
  left: 0;
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.navbar-main .navbar-toggler {
  border-color: #3b3b3b;
  border-width: 2px;
}
.navbar-main .navbar-toggler:focus {
  box-shadow: 0px 1px 1px rgba(59, 59, 59, 0.075) inset, 0px 0px 8px rgba(59, 59, 59, 0.5);
}
.navbar-main .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(59, 59, 59, 0.99)' stroke-width='2' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

#searchField {
  position: relative;
  margin-right: auto;
}
#searchField .btn {
  width: 26px;
  height: 24px;
  display: block;
  border-radius: 0 !important;
  background-color: #3b3b3b;
  -webkit-mask-image: url("../img/magnifying-glass.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 24px;
  -webkit-mask-position: center;
  mask-image: url("../img/magnifying-glass.svg");
  mask-repeat: no-repeat;
  mask-size: 24px;
  mask-position: center;
}
#searchField .btn:focus {
  box-shadow: none;
}
#searchField input {
  color: #3b3b3b;
  width: 0;
  display: none;
}
#searchField .results {
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 60vh;
  overflow-y: auto;
  z-index: 10000;
  padding: 0 0.5rem;
  background-color: white;
  text-align: left;
  color: #3b3b3b;
}
#searchField .results h5 {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 1rem 0 0.4rem 0 !important;
  opacity: 0.8;
}
#searchField .results img {
  max-width: 100px;
  max-height: 60px;
}
#searchField .results a {
  color: #F03F36;
  margin: 0.5rem 0;
  display: flex;
  width: 100%;
  align-items: center;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
#searchField .results a:hover {
  color: #F03F36;
  background-color: rgba(240, 63, 54, 0.1);
}
#searchField .results span {
  margin-left: 1rem;
}
#searchField.shown {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 65px;
  background-color: white;
}
#searchField.shown .btn {
  width: 50px;
  height: 100%;
}
#searchField.shown input {
  display: block;
  width: 100%;
  margin: 0.4rem 0.4rem 0.4rem 0;
  border-radius: 4px;
}
#searchField.shown input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  position: relative;
  right: -5px;
  cursor: pointer;
  background-color: #3b3b3b;
  -webkit-mask-image: url("../img/x-circle-fill.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 20px;
  -webkit-mask-position: center;
  mask-image: url("../img/x-circle-fill.svg");
  mask-repeat: no-repeat;
  mask-size: 20px;
  mask-position: center;
}

.btn {
  border-radius: 4px;
  border: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn.btn-m1 {
  color: white;
  background-color: #3b3b3b;
}
.btn.btn-m1:hover {
  color: white;
  background-color: #616161;
}
.btn.btn-m2 {
  color: white;
  background-color: #F03F36;
}
.btn.btn-m2:hover {
  color: white;
  background-color: #ff625a;
}
.btn.btn-green {
  color: white;
  background-color: #00a803;
}
.btn.btn-green:hover {
  color: white;
  background-color: #00c203;
}

a, .link {
  text-decoration: none;
  color: #F03F36;
  font-weight: 400;
  background: none;
  border: none;
  box-shadow: none;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
a:hover, .link:hover {
  color: #ff625a;
}

.form-control {
  border-color: rgba(59, 59, 59, 0.8);
  border-width: 2px;
}
.form-control:focus {
  border-color: #3b3b3b;
  box-shadow: 0px 1px 1px rgba(59, 59, 59, 0.075) inset, 0px 0px 8px rgba(59, 59, 59, 0.5);
}
.form-control::-webkit-input-placeholder {
  color: rgba(59, 59, 59, 0.8);
}
.form-control:-moz-placeholder {
  color: rgba(59, 59, 59, 0.8);
}
.form-control::-moz-placeholder {
  color: rgba(59, 59, 59, 0.8);
}
.form-control:-ms-input-placeholder {
  color: rgba(59, 59, 59, 0.8);
}

.inline-banner {
  position: relative;
  width: 100%;
}
.inline-banner a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

#bannerCarousel .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  height: 600px;
}
#bannerCarousel .carousel-item img, #bannerCarousel .carousel-item video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
@media screen and (max-width: 576px) {
  #bannerCarousel .carousel-item {
    height: 240px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  #bannerCarousel .carousel-item {
    height: 320px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #bannerCarousel .carousel-item {
    height: 400px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #bannerCarousel .carousel-item {
    height: 480px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  #bannerCarousel .carousel-item {
    height: 600px;
  }
}

.devices-line {
  padding: 0.6rem 0.5rem 0.5rem 0.5rem;
}
.devices-line img {
  max-width: 160px;
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #212121;
  border-radius: 4px;
}
.panel .panel-top {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: 0.1s ease;
  -moz-transition: 0.1s ease;
  -ms-transition: 0.1s ease;
  -o-transition: 0.1s ease;
  transition: 0.1s ease;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}
.panel .panel-top:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
.panel .panel-top .poster-wrapper {
  width: 100%;
  height: 100%;
}
.panel .panel-top .poster-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.panel .panel-top .video-preview {
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: 100;
  object-fit: cover;
  opacity: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.panel .panel-top .video-preview.fully-loaded:hover {
  opacity: 1;
}
.panel .panel-top .res-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  color: white;
  background-color: #f03f36de;
  padding: 2px 5px 1px 5px;
  font-size: 1.1rem;
  line-height: 1.2rem;
  font-weight: 800;
  border-radius: 5px;
}
.panel .panel-body {
  background-color: #212121;
  flex-grow: 1;
  padding: 0.6rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.panel .panel-title {
  color: #d5d5d5;
  font-size: 1.2rem;
  font-weight: 500;
}
.panel .panel-title:hover {
  color: white;
}
.panel .panel-link {
  margin: 0;
  color: #F03F36;
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
}
.panel .panel-link:hover {
  color: #ff625a;
}
.panel .panel-info {
  color: #999999;
}

.scene-view {
  position: relative;
  padding: 1rem 1.1rem;
  text-align: left;
  background-color: #212121;
  border-radius: 4px;
}
.scene-view h1 {
  font-size: 1.5rem;
}
.scene-view a {
  color: #F03F36;
  font-weight: 500 !important;
  white-space: nowrap;
}
.scene-view a:hover {
  color: #ff625a;
}
.scene-view .player {
  width: 100%;
  height: auto;
}
.scene-view .specs-icon {
  display: inline-block;
  background-color: #3b3b3b;
  color: white;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.1rem 0 !important;
  white-space: nowrap !important;
}
.scene-view .specs-icon .bi {
  margin: 0 !important;
  padding: 0;
}
.scene-view * {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.scene-view .deo-player-seekbar-handle,
.scene-view .deo-player-seekbar-filler,
.scene-view .deo-player-vol-filler {
  background-color: #ffca15 !important;
}
.scene-view .deo-loading-icon {
  border-top-color: #ffca15 !important;
  border-right-color: #ffca15 !important;
  border-bottom-color: #ffca15 !important;
  border-left-color: transparent;
}
.scene-view .deo-player-options {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.scene-view .poster {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.scene-view .poster .play-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 72px;
  border-radius: 7.2px;
  background: black;
  opacity: 0.7;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.scene-view .poster .play-button-icon {
  width: 40;
  height: 40px;
  border-style: solid;
  border-width: 20px 0 20px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-color: transparent transparent transparent white;
  -webkit-transform: scale(0.5, 0.7) translateX(5px);
  -moz-transform: scale(0.5, 0.7) translateX(5px);
  -ms-transform: scale(0.5, 0.7) translateX(5px);
  -o-transform: scale(0.5, 0.7) translateX(5px);
  transform: scale(0.5, 0.7) translateX(5px);
}
.scene-view .poster:hover .play-button {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.scene-view .dropdown-menu a {
  color: #F03F36 !important;
}
.scene-view .dropdown-menu a:focus, .scene-view .dropdown-menu a:visited {
  background: none;
}
.scene-view .dropdown-menu a:hover {
  background-color: rgba(240, 63, 54, 0.15);
}

.tag {
  margin: 0.1rem;
  padding: 2px 6px 3px 6px;
  font-size: 0.9rem;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background-color: rgba(240, 63, 54, 0.7);
  border-radius: 5px;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
.tag:hover {
  color: white;
  background-color: #f03f36;
}

.delimeter {
  display: flex;
  flex-direction: row;
}
.delimeter .half {
  flex-grow: 1;
  flex-basis: 20px;
  display: flex;
}
.delimeter .line {
  align-self: center !important;
  flex-grow: 1;
  height: 2px;
  background-color: #F03F36;
}
.delimeter h1, .delimeter h2, .delimeter h3, .delimeter h4, .delimeter h5, .delimeter h6 {
  align-self: center !important;
  margin: 0 1rem;
}

.accordion {
  border-radius: 4px;
  overflow: hidden;
}
.accordion .accordion-item {
  border: none;
  background: none;
  border-bottom: gray solid thin;
  border-radius: 0;
}
.accordion .accordion-button {
  height: 3.5rem;
  background: none;
  border: none;
  padding: 0.5rem;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-button::after {
  background-size: 12px;
  background-position: 4px 6px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath stroke='rgba(255, 255, 255, 0.6)' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.download .join {
  padding: 1rem;
  border-radius: 4px;
  border: #404040 solid 2px;
}
.download .accordion .accordion-button img {
  max-width: 100px;
  height: auto;
  margin-right: 1rem;
}
.download .accordion .accordion-body {
  font-size: 1rem;
  line-height: 2rem;
  white-space: nowrap;
  padding: 0 0.2rem 1.5rem 0.2rem;
}
@media screen and (min-width: 992px) {
  .download .accordion .accordion-body {
    font-size: 0.9rem;
  }
}
.download .accordion .accordion-body .row {
  color: white;
  font-weight: 300 !important;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
.download .accordion .accordion-body .row:hover {
  background-color: rgba(240, 63, 54, 0.8);
}

.img-gallery .img-wrapper {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.img-gallery .img-thumb {
  cursor: pointer;
  width: 100%;
  height: auto;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.img-gallery .img-thumb:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}
.img-gallery .img-view {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  cursor: zoom-out;
}
.img-gallery .img-modal {
  position: relative;
  width: 97vw;
  height: 97vh;
}
.img-gallery .img-modal img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  cursor: default;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.img-gallery .img-modal button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  filter: drop-shadow(3px 5px 2px rgba(0, 0, 0, 0.4));
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
.img-gallery .img-modal button:hover {
  color: white;
}
.img-gallery .img-modal .close {
  top: 0;
  right: 0;
  font-size: 36px;
}
.img-gallery .img-modal .left {
  left: -1vw;
  font-size: 80px;
  width: 20vw;
  height: 40vh;
  text-align: left;
}
.img-gallery .img-modal .right {
  right: -1vw;
  font-size: 80px;
  width: 20vw;
  height: 40vh;
  text-align: right;
}
.img-gallery .img-modal .left-right-wrapper {
  display: flex !important;
  align-items: center !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .img-gallery .img-modal .left, .img-gallery .img-modal .right {
    font-size: 64px;
  }
  .img-gallery .img-modal .close {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .img-gallery .img-modal .left, .img-gallery .img-modal .right {
    font-size: 42px;
  }
}
.img-gallery .show-more {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -ms-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
}
.img-gallery .show-more:hover {
  font-size: 1.6rem;
  color: white;
}

.page-title {
  color: #F03F36;
  font-weight: 400;
  margin: 1.3rem 0;
}

.page-content {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  color: #F03F36;
  font-weight: 400;
}

.pagination {
  margin-top: 2rem;
  margin-bottom: 0;
}
.pagination .page-link {
  min-width: 40px;
  margin-left: 0.1rem !important;
  margin-right: 0.1rem !important;
  color: #F03F36;
  background: none;
  border: transparent solid thin;
  border-radius: 4px !important;
  font-weight: 400;
}
.pagination .page-link:hover {
  border: #F03F36 solid thin;
}
.pagination .disabled .page-link {
  color: #F03F36;
  opacity: 0.8;
  background: none;
  border-color: transparent;
}
.pagination .active .page-link {
  background-color: #F03F36;
  border: #F03F36 solid thin;
}
.pagination .active .page-link:hover {
  border-color: transparent;
}

.actor-view h1 {
  color: #F03F36;
}
.actor-view img {
  border-radius: 4px;
}
.actor-view span {
  margin-right: 1rem;
  color: #999999;
}
.actor-view .details {
  padding: 0 2rem 2rem 1rem;
  text-align: left;
  border-radius: 4px;
}
@media screen and (max-width: 992px) {
  .actor-view .details h1 {
    text-align: center;
  }
}

footer {
  color: #999999;
  padding: 2rem 0 1rem 0;
  background-color: #212121;
}
footer h5 {
  color: #d5d5d5;
}
footer a {
  font-size: 1rem;
  font-weight: 400;
  color: #F03F36;
  white-space: nowrap;
}
footer a:hover {
  color: #ff625a;
}
footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

main form {
  max-width: 600px;
  text-align: left;
  margin: 1.5rem auto;
  font-size: 1.1rem;
  padding: 2rem;
  border-radius: 4px;
}
main form.login-form {
  max-width: 460px;
}
main form label {
  margin-bottom: 0.3rem;
}
main form img.captcha {
  margin-bottom: 0.5rem;
}
main form a {
  font-size: 1rem;
}
main form textarea {
  resize: none;
  cursor: auto;
}
main form textarea,
main form input[type=text],
main form input[type=email],
main form input[type=password] {
  color: white;
  width: 100%;
  border: #F03F36 solid thin;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: rgba(17, 17, 17, 0);
  font-weight: 300;
}
main form textarea:focus,
main form input[type=text]:focus,
main form input[type=email]:focus,
main form input[type=password]:focus {
  color: white;
  border-color: #F03F36;
  box-shadow: 0 0 12px rgba(240, 63, 54, 0.8) !important;
  outline: 0 none;
  background-color: rgba(17, 17, 17, 0);
}
main form textarea:disabled,
main form input[type=text]:disabled,
main form input[type=email]:disabled,
main form input[type=password]:disabled {
  border-color: rgba(240, 63, 54, 0.4);
}
main form input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #3b3b3b;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin-right: 0.4rem;
  transition: all 0.3s ease;
}
main form input[type=radio]:hover {
  border: 2px solid #F03F36;
}
main form input[type=radio]:checked {
  background-color: #F03F36;
  border: 2px solid #F03F36;
}
main form ::-ms-reveal {
  filter: invert(50%);
}
main form button {
  font-size: 1.2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
main form .errorlist {
  background-color: #9b130c;
  border-radius: 4px;
}
main form ::-webkit-scrollbar {
  width: 10px;
}
main form ::-webkit-scrollbar-track {
  background: rgba(240, 63, 54, 0.3);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
main form ::-webkit-scrollbar-thumb {
  background: rgba(240, 63, 54, 0.5);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
main form ::-webkit-scrollbar-thumb:hover {
  background: #F03F36;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #F03F36;
  -webkit-text-fill-color: white;
  caret-color: white;
  transition: background-color 5000s ease-in-out 0s;
}

.restriction {
  background-color: #111111;
  color: white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  overflow: auto;
  font-size: 1rem;
}
.restriction .inner {
  position: relative;
  background-color: #212121;
  border-radius: 4px;
  max-width: 768px;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 6rem);
  -moz-transform: translate(-50%, 6rem);
  -ms-transform: translate(-50%, 6rem);
  -o-transform: translate(-50%, 6rem);
  transform: translate(-50%, 6rem);
  padding: 5rem 2rem 2rem 2rem;
}
.restriction .inner::before {
  content: "18+";
  display: block;
  position: absolute;
  font-size: 4rem;
  font-weight: 700;
  width: 8rem;
  height: 8rem;
  line-height: 8rem;
  border-radius: 100%;
  color: white;
  text-align: center;
  background: #F03F36;
  left: 50%;
  top: -4rem;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.profile-view {
  background-color: #212121;
  border-radius: 4px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.help-device-list {
  margin-bottom: 2rem;
}
.help-device-list [class*=col] {
  padding: 0.5rem;
}
.help-device-list a {
  border-radius: 4px;
  display: block;
  width: 100%;
  padding: 1.2rem;
  overflow: hidden;
  border: white solid thin;
}
.help-device-list a:hover {
  background-color: rgba(59, 59, 59, 0.5);
}

.modal-dialog .modal-content {
  color: white;
  border-radius: 4px;
  background-color: #212121;
}
.modal-dialog .modal-header {
  padding-bottom: 0;
  border-bottom: none !important;
  justify-content: center !important;
  color: #F03F36;
}
.modal-dialog .modal-footer {
  border-top: none !important;
  justify-content: center !important;
}
.modal-dialog .modal-footer button {
  padding: 0.2rem 2rem;
}
.modal-dialog .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.modal-dialog h1, .modal-dialog h2, .modal-dialog h3, .modal-dialog h4, .modal-dialog h5 {
  color: #F03F36;
}

.block-fixed-bg {
  background-repeat: no-repeat, no-repeat;
  background-position: center 2.5rem;
  background-size: cover;
  background-attachment: fixed;
  cursor: pointer;
}

.range-slider {
  position: relative;
  height: 29px;
  padding: 2px 0;
  width: 100%;
  background: linear-gradient(#f03f36, #f03f36) no-repeat center;
  background-size: 100% 1px;
}
.range-slider .range-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 12.5px;
  height: 4px;
  background-color: #F03F36;
}
.range-slider input[type=range] {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  appearance: none;
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 1px;
  outline: none;
  pointer-events: none;
  background: none;
}
.range-slider input[type=range]::-webkit-slider-thumb {
  position: relative;
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: #F03F36;
  cursor: pointer;
  appearance: none;
  pointer-events: all;
  border: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.range-slider input[type=range]::-webkit-slider-thumb:hover {
  background-color: #f14d44;
}
.range-slider input[type=range]:focus::-webkit-slider-thumb {
  background-color: #f14d44;
}
.range-slider input[type=range]::-moz-range-thumb {
  position: relative;
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: #F03F36;
  cursor: pointer;
  appearance: none;
  pointer-events: all;
  border: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.range-slider input[type=range]::-moz-range-thumb:hover {
  background-color: #f14d44;
}
.range-slider input[type=range]:focus::-moz-range-thumb {
  background-color: #f14d44;
}

.rborder {
  border: red solid thin;
}

/*# sourceMappingURL=pcorn.css.map */
