﻿/*------------------------------------------------------------------
  [Typography]

  Body copy: 14px/1.42857143 'Lato', sans-serif;

  Notes: All font sizes are relative to the base font size (rem)
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
  [Color codes]

  Main:         #FF774F (buttons/links hover)
  Back:         #ffffff (Content Background)
  Back Images:  #C6C3D8 (back on images)
  Text:         #3C0732
  Muted Text:   rgba(60, 7, 50, 0.65)

  Primary:      #2B6AD9
  Success:      #2BD964
  Info:         #2BD7D9
  Warning:      #EB8324
  Danger:       #D92B4C
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
  [Table of contents]

  1. Base
  2. Helper Classes
  3. Components
    - Angled Buttons
    - Angled Pagination
    - Progress Bars
    - Timeline
    - Accordion
    - Tabs
    - Features
    - Tables
    - Pager
    - Labels
    - Alerts
    - Modals
    - Tooltips
    - Popovers
    - Angled Images
    - Angled Backgrounds
  4. Forms
    - Input and Textarea
    - Ratings
    - Selects
    - Checkboxes
    - Radios
  5. Navbar
  6. Banner
  7. Owl Carousel
  8. Countdown
  9. Hexagon Rating

  10. Search Block
  11. Side Bar
  12. Comments / Review blocks

  13. News
  14. Store
  15. Search Page
  16. User Profile
  17. Login
  20. Clan Wars
  21. Testimonials
  22. Pricing Table

  24. Twitter

  25. Magnific Popup
  26. Slider Revolution
  27. Isotope
  28. Sweet Alert
  29. Social Likes

  30. Footer
  31. Preloader
-------------------------------------------------------------------*/
/*------------------------------------------------------------------

  Base Styles

-------------------------------------------------------------------*/
html, body {
  height: 100%;
}

body {
  font: 14px/1.42857143 "Lato", sans-serif;
  color: #fff;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: url("/assets/images/temptationbg-nostranger.png") no-repeat #000;
  background-size: cover;
  background-attachment: fixed;
}

body.nobg {
  background: url("/assets/images/temptation background.png") no-repeat #000;
  background-size: cover;
  background-attachment: fixed;
}

/*
 * Headings
 */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Lato", sans-serif;
  color: #fff;
}

h1, .h1 {
  font-size: 5rem;
  margin-top: 6rem;
  margin-bottom: 4rem;
}

h1 .btn, .h1 .btn {
  margin-top: 7px;
}

h1 .btn-lg, .h1 .btn-lg {
  margin-top: 0;
}

h2, .h2 {
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}

p {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.label {
  font-weight: normal;
}

iframe {
  border: 0;
}

.fa {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

/*
 * Links
 */
a {
  color: inherit;
  text-decoration: underline;
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
}

a:hover,
a:focus {
  color: #FF774F;
}

img {
  max-width: 100%;
}

/*
 * Tags
 */
.tags {
  margin: 1rem 0;
  display: block;
  clear: both;
  color: #fff;
  font-size: 1.2rem;
}

.tags a {
  text-decoration: none;
}

/*
 * Date
 */
.date {
  margin-top: 8px;
  color: #fff;
  font-size: 1.2rem;
}

.date i {
  margin-right: 3px;
}

/*
 * Meta
 */
.meta {
  display: block;
  clear: both;
  font-size: 1.2rem;
  margin: 1rem 0;
}

.meta .item {
  display: inline-block;
  margin-right: 2rem;
}

.meta .meta-icon {
  font-size: 1.5rem;
  margin-right: 3px;
  vertical-align: text-bottom;
}

.meta a {
  font-weight: bold;
  text-decoration: none;
}

/*
 * Description
 */
.description {
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/*
 * Content
 */
.content-wrap {
  max-width: 1400px;
  margin: 0 auto;
  background: #243338;
  border-left: 1px solid #6b4529;
  border-right: 1px solid #6b4529;
  padding: 0px;
  overflow: hidden;
}

.content-wrap.nobg {
  background: transparent;
  border: none;
}

.vertical-trim {
  max-width: 1400px;
  background: #c48d4c;
  border-left: 1px solid #6b4529;
  border-right: 1px solid #6b4529;
  margin: 0 auto;
  padding: 0 2px;
}

.vertical-trim.nobg {
  background: transparent;
  border: none;
}

footer.nobg {
  display: none;
}

.content-wrap .youplay-content {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.content-wrap.full, .content-wrap.wide {
  max-width: none;
}

@media (max-width: 767px), (min-width: 767px) and (max-width: 991px) {
  .content-wrap .youplay-content .side-block:first-child {
    margin-top: 6rem;
  }
  .content-wrap .youplay-content .side-block:last-child {
    margin-bottom: 6rem;
  }
}
.youplay-section {
  margin-bottom: 6rem;
}

/*------------------------------------------------------------------

  Helper Classes

-------------------------------------------------------------------*/
/*
 * Text Color Helper
 */
.text-default {
  color: #FF774F !important;
}

.text-primary {
  color: #2B6AD9 !important;
}

.text-success {
  color: #238643 !important;
}

.text-info {
  color: #2BD7D9 !important;
}

.text-warning {
  color: #EB8324 !important;
}

.text-danger {
  color: #D92B4C !important;
}

.text-mute {
  color: rgba(60, 7, 50, 0.65) !important;
}

/*
 * Bg Color Helper
 */
.bg-default {
  background-color: #FF774F !important;
}

.bg-primary {
  background-color: #2B6AD9 !important;
}

.bg-success {
  background-color: #2BD964 !important;
}

.bg-info {
  background-color: #2BD7D9 !important;
}

.bg-warning {
  background-color: #EB8324 !important;
}

.bg-danger {
  background-color: #D92B4C !important;
}

/*
 * Circle / Rounded Images Helper
 */
img.circle {
  border-radius: 50%;
}

img.rounded {
  border-radius: 5px;
}

/*
 * Text Align Helper
 */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-justify {
  text-align: justify;
}

/*
 * Vertical Align Helper
 */
.va-t {
  vertical-align: top !important;
}

.va-m {
  vertical-align: middle !important;
}

.va-b {
  vertical-align: bottom !important;
}

.va-s {
  vertical-align: super !important;
}

/*
 * Inline Block Helper
 */
.dib {
  display: inline-block !important;
}

/*
 * Cursor Pointer Helper
 */
.cursor {
  cursor: pointer !important;
}

/*
 * Text Transform Helper
 */
.text-uppercase {
  text-transform: uppercase !important;
}

/*
 * Font Weight Helper
 */
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

/*
 * Font Size Helper
 */
.fs-4 {
  font-size: 4px !important;
}

.fs-5 {
  font-size: 5px !important;
}

.fs-6 {
  font-size: 6px !important;
}

.fs-7 {
  font-size: 7px !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-45 {
  font-size: 45px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-55 {
  font-size: 55px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.fs-65 {
  font-size: 65px !important;
}

.fs-70 {
  font-size: 70px !important;
}

.fs-75 {
  font-size: 75px !important;
}

.fs-80 {
  font-size: 80px !important;
}

.fs-85 {
  font-size: 85px !important;
}

.fs-90 {
  font-size: 90px !important;
}

.fs-95 {
  font-size: 95px !important;
}

.fs-100 {
  font-size: 100px !important;
}

/*
 * Line Height Helper
 */
.lh-0 {
  line-height: 0px !important;
}

.lh-5 {
  line-height: 5px !important;
}

.lh-10 {
  line-height: 10px !important;
}

.lh-15 {
  line-height: 15px !important;
}

.lh-20 {
  line-height: 20px !important;
}

.lh-25 {
  line-height: 25px !important;
}

.lh-30 {
  line-height: 30px !important;
}

.lh-35 {
  line-height: 35px !important;
}

.lh-40 {
  line-height: 40px !important;
}

.lh-45 {
  line-height: 45px !important;
}

.lh-50 {
  line-height: 50px !important;
}

/*
 * Text Ellipsis Helper
 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
 * Overflow Helper
 */
.of-a {
  overflow: auto !important;
}

.of-h {
  overflow: hidden !important;
}

.of-v {
  overflow: visible !important;
}

.of-x-a {
  overflow-x: auto !important;
}

.of-x-h {
  overflow-x: hidden !important;
}

.of-x-v {
  overflow-x: visible !important;
}

.of-y-a {
  overflow-y: auto !important;
}

.of-y-h {
  overflow-y: hidden !important;
}

.of-y-v {
  overflow-y: visible !important;
}

/*
 * Border Radius Helper
 */
.br-0 {
  border-radius: 0px !important;
}

.br-1 {
  border-radius: 1px !important;
}

.br-2 {
  border-radius: 2px !important;
}

.br-3 {
  border-radius: 3px !important;
}

.br-4 {
  border-radius: 4px !important;
}

.br-5 {
  border-radius: 5px !important;
}

.br-6 {
  border-radius: 6px !important;
}

.br-7 {
  border-radius: 7px !important;
}

.br-8 {
  border-radius: 8px !important;
}

.br-9 {
  border-radius: 9px !important;
}

.br-10 {
  border-radius: 10px !important;
}

.br-12 {
  border-radius: 12px !important;
}

.br-14 {
  border-radius: 14px !important;
}

.br-16 {
  border-radius: 16px !important;
}

.br-18 {
  border-radius: 18px !important;
}

.br-20 {
  border-radius: 20px !important;
}

.br-25 {
  border-radius: 25px !important;
}

.br-30 {
  border-radius: 30px !important;
}

.br-35 {
  border-radius: 35px !important;
}

/*
 * Paddings Helper
 */
.p-0 {
  padding: 0px !important;
}

.p-1 {
  padding: 1px !important;
}

.p-2 {
  padding: 2px !important;
}

.p-3 {
  padding: 3px !important;
}

.p-4 {
  padding: 4px !important;
}

.p-5 {
  padding: 5px !important;
}

.p-6 {
  padding: 6px !important;
}

.p-7 {
  padding: 7px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-9 {
  padding: 9px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-70 {
  padding: 70px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-90 {
  padding: 90px !important;
}

.p-100 {
  padding: 100px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-1 {
  padding-top: 1px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.pt-3 {
  padding-top: 3px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-6 {
  padding-top: 6px !important;
}

.pt-7 {
  padding-top: 7px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-9 {
  padding-top: 9px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-1 {
  padding-left: 1px !important;
}

.pl-2 {
  padding-left: 2px !important;
}

.pl-3 {
  padding-left: 3px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-6 {
  padding-left: 6px !important;
}

.pl-7 {
  padding-left: 7px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pl-9 {
  padding-left: 9px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-1 {
  padding-right: 1px !important;
}

.pr-2 {
  padding-right: 2px !important;
}

.pr-3 {
  padding-right: 3px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-6 {
  padding-right: 6px !important;
}

.pr-7 {
  padding-right: 7px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.pr-9 {
  padding-right: 9px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-1 {
  padding-bottom: 1px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pb-3 {
  padding-bottom: 3px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-6 {
  padding-bottom: 6px !important;
}

.pb-7 {
  padding-bottom: 7px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-9 {
  padding-bottom: 9px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

/*
 * Margins Helper
 */
.mauto {
  margin-left: auto;
  margin-right: auto;
}

.m-0 {
  margin: 0px !important;
}

.m-1 {
  margin: 1px !important;
}

.m-2 {
  margin: 2px !important;
}

.m-3 {
  margin: 3px !important;
}

.m-4 {
  margin: 4px !important;
}

.m-5 {
  margin: 5px !important;
}

.m-6 {
  margin: 6px !important;
}

.m-7 {
  margin: 7px !important;
}

.m-8 {
  margin: 8px !important;
}

.m-9 {
  margin: 9px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-35 {
  margin: 35px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-45 {
  margin: 45px !important;
}

.m-50 {
  margin: 50px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-70 {
  margin: 70px !important;
}

.m-80 {
  margin: 80px !important;
}

.m-90 {
  margin: 90px !important;
}

.m-100 {
  margin: 100px !important;
}

.m-110 {
  margin: 110px !important;
}

.m-120 {
  margin: 120px !important;
}

.m-130 {
  margin: 130px !important;
}

.m-140 {
  margin: 140px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-1 {
  margin-top: 1px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mt-7 {
  margin-top: 7px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-9 {
  margin-top: 9px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-110 {
  margin-top: 110px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mt-130 {
  margin-top: 130px !important;
}

.mt-140 {
  margin-top: 140px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-1 {
  margin-left: 1px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.ml-3 {
  margin-left: 3px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.ml-7 {
  margin-left: 7px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.ml-9 {
  margin-left: 9px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.ml-110 {
  margin-left: 110px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.ml-130 {
  margin-left: 130px !important;
}

.ml-140 {
  margin-left: 140px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-1 {
  margin-right: 1px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.mr-3 {
  margin-right: 3px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.mr-7 {
  margin-right: 7px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-9 {
  margin-right: 9px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mr-110 {
  margin-right: 110px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mr-130 {
  margin-right: 130px !important;
}

.mr-140 {
  margin-right: 140px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

/*
 * Negative Margins Helper
 */
.mn-0 {
  margin: 0px !important;
}

.mn-1 {
  margin: -1px !important;
}

.mn-2 {
  margin: -2px !important;
}

.mn-3 {
  margin: -3px !important;
}

.mn-4 {
  margin: -4px !important;
}

.mn-5 {
  margin: -5px !important;
}

.mn-6 {
  margin: -6px !important;
}

.mn-7 {
  margin: -7px !important;
}

.mn-8 {
  margin: -8px !important;
}

.mn-9 {
  margin: -9px !important;
}

.mn-10 {
  margin: -10px !important;
}

.mn-15 {
  margin: -15px !important;
}

.mn-20 {
  margin: -20px !important;
}

.mn-25 {
  margin: -25px !important;
}

.mn-30 {
  margin: -30px !important;
}

.mn-35 {
  margin: -35px !important;
}

.mn-40 {
  margin: -40px !important;
}

.mn-45 {
  margin: -45px !important;
}

.mn-50 {
  margin: -50px !important;
}

.mn-60 {
  margin: -60px !important;
}

.mn-70 {
  margin: -70px !important;
}

.mn-80 {
  margin: -80px !important;
}

.mn-90 {
  margin: -90px !important;
}

.mn-100 {
  margin: -100px !important;
}

.mn-110 {
  margin: -110px !important;
}

.mn-120 {
  margin: -120px !important;
}

.mn-130 {
  margin: -130px !important;
}

.mn-140 {
  margin: -140px !important;
}

.mnt-0 {
  margin-top: 0px !important;
}

.mnt-1 {
  margin-top: -1px !important;
}

.mnt-2 {
  margin-top: -2px !important;
}

.mnt-3 {
  margin-top: -3px !important;
}

.mnt-4 {
  margin-top: -4px !important;
}

.mnt-5 {
  margin-top: -5px !important;
}

.mnt-6 {
  margin-top: -6px !important;
}

.mnt-7 {
  margin-top: -7px !important;
}

.mnt-8 {
  margin-top: -8px !important;
}

.mnt-9 {
  margin-top: -9px !important;
}

.mnt-10 {
  margin-top: -10px !important;
}

.mnt-15 {
  margin-top: -15px !important;
}

.mnt-20 {
  margin-top: -20px !important;
}

.mnt-25 {
  margin-top: -25px !important;
}

.mnt-30 {
  margin-top: -30px !important;
}

.mnt-35 {
  margin-top: -35px !important;
}

.mnt-40 {
  margin-top: -40px !important;
}

.mnt-45 {
  margin-top: -45px !important;
}

.mnt-50 {
  margin-top: -50px !important;
}

.mnt-60 {
  margin-top: -60px !important;
}

.mnt-70 {
  margin-top: -70px !important;
}

.mnt-80 {
  margin-top: -80px !important;
}

.mnt-90 {
  margin-top: -90px !important;
}

.mnt-100 {
  margin-top: -100px !important;
}

.mnt-110 {
  margin-top: -110px !important;
}

.mnt-120 {
  margin-top: -120px !important;
}

.mnt-130 {
  margin-top: -130px !important;
}

.mnt-140 {
  margin-top: -140px !important;
}

.mnl-0 {
  margin-left: 0px !important;
}

.mnl-1 {
  margin-left: -1px !important;
}

.mnl-2 {
  margin-left: -2px !important;
}

.mnl-3 {
  margin-left: -3px !important;
}

.mnl-4 {
  margin-left: -4px !important;
}

.mnl-5 {
  margin-left: -5px !important;
}

.mnl-6 {
  margin-left: -6px !important;
}

.mnl-7 {
  margin-left: -7px !important;
}

.mnl-8 {
  margin-left: -8px !important;
}

.mnl-9 {
  margin-left: -9px !important;
}

.mnl-10 {
  margin-left: -10px !important;
}

.mnl-15 {
  margin-left: -15px !important;
}

.mnl-20 {
  margin-left: -20px !important;
}

.mnl-25 {
  margin-left: -25px !important;
}

.mnl-30 {
  margin-left: -30px !important;
}

.mnl-35 {
  margin-left: -35px !important;
}

.mnl-40 {
  margin-left: -40px !important;
}

.mnl-45 {
  margin-left: -45px !important;
}

.mnl-50 {
  margin-left: -50px !important;
}

.mnl-60 {
  margin-left: -60px !important;
}

.mnl-70 {
  margin-left: -70px !important;
}

.mnl-80 {
  margin-left: -80px !important;
}

.mnl-90 {
  margin-left: -90px !important;
}

.mnl-100 {
  margin-left: -100px !important;
}

.mnl-110 {
  margin-left: -110px !important;
}

.mnl-120 {
  margin-left: -120px !important;
}

.mnl-130 {
  margin-left: -130px !important;
}

.mnl-140 {
  margin-left: -140px !important;
}

.mnr-0 {
  margin-right: 0px !important;
}

.mnr-1 {
  margin-right: -1px !important;
}

.mnr-2 {
  margin-right: -2px !important;
}

.mnr-3 {
  margin-right: -3px !important;
}

.mnr-4 {
  margin-right: -4px !important;
}

.mnr-5 {
  margin-right: -5px !important;
}

.mnr-6 {
  margin-right: -6px !important;
}

.mnr-7 {
  margin-right: -7px !important;
}

.mnr-8 {
  margin-right: -8px !important;
}

.mnr-9 {
  margin-right: -9px !important;
}

.mnr-10 {
  margin-right: -10px !important;
}

.mnr-15 {
  margin-right: -15px !important;
}

.mnr-20 {
  margin-right: -20px !important;
}

.mnr-25 {
  margin-right: -25px !important;
}

.mnr-30 {
  margin-right: -30px !important;
}

.mnr-35 {
  margin-right: -35px !important;
}

.mnr-40 {
  margin-right: -40px !important;
}

.mnr-45 {
  margin-right: -45px !important;
}

.mnr-50 {
  margin-right: -50px !important;
}

.mnr-60 {
  margin-right: -60px !important;
}

.mnr-70 {
  margin-right: -70px !important;
}

.mnr-80 {
  margin-right: -80px !important;
}

.mnr-90 {
  margin-right: -90px !important;
}

.mnr-100 {
  margin-right: -100px !important;
}

.mnr-110 {
  margin-right: -110px !important;
}

.mnr-120 {
  margin-right: -120px !important;
}

.mnr-130 {
  margin-right: -130px !important;
}

.mnr-140 {
  margin-right: -140px !important;
}

.mnb-0 {
  margin-bottom: 0px !important;
}

.mnb-1 {
  margin-bottom: -1px !important;
}

.mnb-2 {
  margin-bottom: -2px !important;
}

.mnb-3 {
  margin-bottom: -3px !important;
}

.mnb-4 {
  margin-bottom: -4px !important;
}

.mnb-5 {
  margin-bottom: -5px !important;
}

.mnb-6 {
  margin-bottom: -6px !important;
}

.mnb-7 {
  margin-bottom: -7px !important;
}

.mnb-8 {
  margin-bottom: -8px !important;
}

.mnb-9 {
  margin-bottom: -9px !important;
}

.mnb-10 {
  margin-bottom: -10px !important;
}

.mnb-15 {
  margin-bottom: -15px !important;
}

.mnb-20 {
  margin-bottom: -20px !important;
}

.mnb-25 {
  margin-bottom: -25px !important;
}

.mnb-30 {
  margin-bottom: -30px !important;
}

.mnb-35 {
  margin-bottom: -35px !important;
}

.mnb-40 {
  margin-bottom: -40px !important;
}

.mnb-45 {
  margin-bottom: -45px !important;
}

.mnb-50 {
  margin-bottom: -50px !important;
}

.mnb-60 {
  margin-bottom: -60px !important;
}

.mnb-70 {
  margin-bottom: -70px !important;
}

.mnb-80 {
  margin-bottom: -80px !important;
}

.mnb-90 {
  margin-bottom: -90px !important;
}

.mnb-100 {
  margin-bottom: -100px !important;
}

.mnb-110 {
  margin-bottom: -110px !important;
}

.mnb-120 {
  margin-bottom: -120px !important;
}

.mnb-130 {
  margin-bottom: -130px !important;
}

.mnb-140 {
  margin-bottom: -140px !important;
}

/*
 * Opacity
 */
.op-0 {
  opacity: 0 !important;
}

.op-1 {
  opacity: 0.1 !important;
}

.op-2 {
  opacity: 0.2 !important;
}

.op-3 {
  opacity: 0.3 !important;
}

.op-4 {
  opacity: 0.4 !important;
}

.op-5 {
  opacity: 0.5 !important;
}

.op-6 {
  opacity: 0.6 !important;
}

.op-7 {
  opacity: 0.7 !important;
}

.op-8 {
  opacity: 0.8 !important;
}

.op-9 {
  opacity: 0.9 !important;
}

.op-10 {
  opacity: 1 !important;
}

/*
 * Responsive embeds
 */
.responsive-embed {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding: 0;
  clear: both;
}

.responsive-embed.responsive-embed-16x9 {
  padding-bottom: 56.25%;
}

.responsive-embed.responsive-embed-4x3 {
  padding-bottom: 75%;
}

.responsive-embed > .embed-item,
.responsive-embed > iframe,
.responsive-embed > embed,
.responsive-embed > object {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/*------------------------------------------------------------------

  Angled Buttons

-------------------------------------------------------------------*/
.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.active:hover,
.btn:active:hover,
.btn.active:focus,
.btn:active:focus,
.btn.active.focus,
.btn:active.focus {
  background: #373737;
  border: 1px solid #a85e05;
  color: #fff;
  box-shadow: none;
  text-decoration: none;
  outline: none;
  border-radius: 0;
}

.btn {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 30px;
  z-index: 1;
}

.btn.btn-xs {
  padding: 4px 15px;
}

.btn.btn-sm {
  padding: 8px 20px;
}

.btn.btn-md {
  padding: 15px 40px;
}

.btn.btn-lg {
  padding: 15px 50px;
}

.btn.btn-full {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.btn {
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
}

.btn:hover,
.btn.active {
  color: #fff;
}

.btn:hover,
.btn.active:hover {
  border: 1px solid #e48f4f !important;
}

.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary:active:before,
.btn-primary.active:before,
.open > .dropdown-toggle.btn-primary:before {
  border: 2px solid #2B6AD9;
  background: #2B6AD9;
}

.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success:active:before,
.btn-success.active:before,
.open > .dropdown-toggle.btn-success:before {
  border: 2px solid #2BD964;
  background: #2BD964;
}

.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info:active:before,
.btn-info.active:before,
.open > .dropdown-toggle.btn-info:before {
  border: 2px solid #2BD7D9;
  background: #2BD7D9;
}

.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning:active:before,
.btn-warning.active:before,
.open > .dropdown-toggle.btn-warning:before {
  border: 2px solid #EB8324;
  background: #EB8324;
}

.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger:active:before,
.btn-danger.active:before,
.open > .dropdown-toggle.btn-danger:before {
  border: 2px solid #D92B4C;
  background: #D92B4C;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white:active,
.btn-white.active,
.open > .dropdown-toggle.btn-white {
  color: #000;
}

.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white:active:before,
.btn-white.active:before,
.open > .dropdown-toggle.btn-white:before {
  border: 2px solid #fff;
  background: #fff;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black:active,
.btn-black.active,
.open > .dropdown-toggle.btn-black {
  color: #fff;
}

.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black:active:before,
.btn-black.active:before,
.open > .dropdown-toggle.btn-black:before {
  border: 2px solid #000;
  background: #000;
}

.dropdown-menu {
  padding: 15px 0;
  margin-top: 0;
  margin-left: -3px;
  background-color: #3C0732;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.dropup .dropdown-menu {
  margin-bottom: 0;
  margin-left: 3px;
}

.dropdown-menu > li > a {
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  color: #fff;
  background-color: #25041f;
}

.btn-group > .btn + .dropdown-toggle {
  margin-left: -12px;
}

.open > .dropdown-toggle.btn {
  background: none;
  border: none;
  box-shadow: none;
  color: #3C0732;
  color: #fff;
}

.btn-default.disabled,
.btn-default.disabled.active,
.btn-default.disabled.focus,
.btn-default.disabled:active,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled],
.btn-default[disabled].active,
.btn-default[disabled].focus,
.btn-default[disabled]:active,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-default.active,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
  background-color: transparent;
  border-color: transparent;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  opacity: 0.3;
}

/*------------------------------------------------------------------

  Bootstrap Grid Additions

-------------------------------------------------------------------*/
.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.row.no-gutter > [class*=col-]:not(:first-child),
.row.no-gutter > [class*=col-]:not(:last-child) {
  padding-right: 0;
  padding-left: 0;
}

.row.vertical-gutter > [class*=col-],
.row.vertical-gutter > [class*=col-] {
  padding-top: 30px;
}

.row.vertical-gutter {
  margin-top: -30px;
}

.multi-columns-row .first-in-row {
  clear: left;
}

.multi-columns-row .col-xs-6:nth-child(2n+3) {
  clear: left;
}

.multi-columns-row .col-xs-4:nth-child(3n+4) {
  clear: left;
}

.multi-columns-row .col-xs-3:nth-child(4n+5) {
  clear: left;
}

.multi-columns-row .col-xs-2:nth-child(6n+7) {
  clear: left;
}

.multi-columns-row .col-xs-1:nth-child(12n+13) {
  clear: left;
}

@media (min-width: 768px) {
  .multi-columns-row .col-xs-6:nth-child(2n+3) {
    clear: none;
  }
  .multi-columns-row .col-xs-4:nth-child(3n+4) {
    clear: none;
  }
  .multi-columns-row .col-xs-3:nth-child(4n+5) {
    clear: none;
  }
  .multi-columns-row .col-xs-2:nth-child(6n+7) {
    clear: none;
  }
  .multi-columns-row .col-xs-1:nth-child(12n+13) {
    clear: none;
  }
  .multi-columns-row .col-sm-6:nth-child(2n+3) {
    clear: left;
  }
  .multi-columns-row .col-sm-4:nth-child(3n+4) {
    clear: left;
  }
  .multi-columns-row .col-sm-3:nth-child(4n+5) {
    clear: left;
  }
  .multi-columns-row .col-sm-2:nth-child(6n+7) {
    clear: left;
  }
  .multi-columns-row .col-sm-1:nth-child(12n+13) {
    clear: left;
  }
}
@media (min-width: 992px) {
  .multi-columns-row .col-sm-6:nth-child(2n+3) {
    clear: none;
  }
  .multi-columns-row .col-sm-4:nth-child(3n+4) {
    clear: none;
  }
  .multi-columns-row .col-sm-3:nth-child(4n+5) {
    clear: none;
  }
  .multi-columns-row .col-sm-2:nth-child(6n+7) {
    clear: none;
  }
  .multi-columns-row .col-sm-1:nth-child(12n+13) {
    clear: none;
  }
  .multi-columns-row .col-md-6:nth-child(2n+3) {
    clear: left;
  }
  .multi-columns-row .col-md-4:nth-child(3n+4) {
    clear: left;
  }
  .multi-columns-row .col-md-3:nth-child(4n+5) {
    clear: left;
  }
  .multi-columns-row .col-md-2:nth-child(6n+7) {
    clear: left;
  }
  .multi-columns-row .col-md-1:nth-child(12n+13) {
    clear: left;
  }
}
@media (min-width: 1200px) {
  .multi-columns-row .col-md-6:nth-child(2n+3) {
    clear: none;
  }
  .multi-columns-row .col-md-4:nth-child(3n+4) {
    clear: none;
  }
  .multi-columns-row .col-md-3:nth-child(4n+5) {
    clear: none;
  }
  .multi-columns-row .col-md-2:nth-child(6n+7) {
    clear: none;
  }
  .multi-columns-row .col-md-1:nth-child(12n+13) {
    clear: none;
  }
  .multi-columns-row .col-lg-6:nth-child(2n+3) {
    clear: left;
  }
  .multi-columns-row .col-lg-4:nth-child(3n+4) {
    clear: left;
  }
  .multi-columns-row .col-lg-3:nth-child(4n+5) {
    clear: left;
  }
  .multi-columns-row .col-lg-2:nth-child(6n+7) {
    clear: left;
  }
  .multi-columns-row .col-lg-1:nth-child(12n+13) {
    clear: left;
  }
}
/*------------------------------------------------------------------

  Angled Pagination

-------------------------------------------------------------------*/
.pagination {
  display: block;
  margin: 4rem 0;
  clear: both;
}

.pagination:after, .pagination:before {
  content: "";
  display: block;
  clear: both;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  border: none;
}

.pagination > li > a,
.pagination > li > span {
  cursor: pointer;
}

.pagination > li:first-child > a,
.pagination > li > a,
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li:first-child > span,
.pagination > li > span,
.pagination > li > span:hover,
.pagination > li > span:focus {
  position: relative;
  background: #373737;
  border: none;
  margin-left: -2px;
  padding: 10px 30px;
  box-shadow: none;
  z-index: 1;
  color: #fff;
  text-decoration: none;
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
}

.pagination > li:first-child > a:before,
.pagination > li > a:before,
.pagination > li > a:hover:before,
.pagination > li > a:focus:before,
.pagination > li:first-child > span:before,
.pagination > li > span:before,
.pagination > li > span:hover:before,
.pagination > li > span:focus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #c87d43;
  z-index: -1;
  background: none;
  -o-transition: 0.3s background ease, 0.3s border ease;
  transition: 0.3s background ease, 0.3s border ease;
}

.pagination > li.active > a,
.pagination > li.active > a:hover,
.pagination > li > a:hover,
.pagination > li.active > span,
.pagination > li.active > span:hover,
.pagination > li > span:hover {
  background: none;
  color: #ffffff;
}

.pagination > li.active > a:before,
.pagination > li.active > a:hover:before,
.pagination > li > a:hover:before,
.pagination > li.active > span:before,
.pagination > li.active > span:hover:before,
.pagination > li > span:hover:before {
  border: 2px solid #c87d43;
  background: #c87d43;
}

/*------------------------------------------------------------------

  Progress Bars

-------------------------------------------------------------------*/
.progress {
  box-shadow: none;
  border-radius: 0;
  background-color: rgba(60, 7, 50, 0.1);
  -webkit-backface-visibility: hidden;
}

.progress .progress-bar {
  background-color: #FF774F;
}

.progress .progress-bar-primary {
  background-color: #2B6AD9;
}

.progress .progress-bar-success {
  background-color: #2BD964;
}

.progress .progress-bar-info {
  background-color: #2BD7D9;
}

.progress .progress-bar-warning {
  background-color: #EB8324;
}

.progress .progress-bar-danger {
  background-color: #D92B4C;
}

/*------------------------------------------------------------------

  Timeline

-------------------------------------------------------------------*/
.youplay-timeline {
  position: relative;
}

.youplay-timeline:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.youplay-timeline:before {
  /* this is the vertical line */
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  height: 100%;
  width: 4px;
  background: rgba(60, 7, 50, 0.1);
}

.youplay-timeline .youplay-timeline-block {
  position: relative;
  margin: 4rem 0;
  padding-left: 80px;
  clear: both;
}

.youplay-timeline .youplay-timeline-block:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.youplay-timeline .youplay-timeline-block:first-child {
  margin-top: 0;
}

.youplay-timeline .youplay-timeline-block:last-child {
  margin-bottom: 0;
}

.youplay-timeline .youplay-timeline-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #FF774F;
  font-size: 2rem;
  text-align: center;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}

.youplay-timeline .youplay-timeline-icon > i {
  vertical-align: baseline;
  -webkit-backface-visibility: hidden;
}

.youplay-timeline .youplay-timeline-icon img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
}

.youplay-timeline .youplay-timeline-content {
  position: relative;
  margin-left: 0;
  padding-top: 5px;
  width: 100%;
}

.youplay-timeline .youplay-timeline-content h3 {
  margin-top: 0rem;
}

.youplay-timeline .youplay-timeline-content .youplay-timeline-date {
  display: inline-block;
  position: relative;
  float: left;
  font-size: 1rem;
  padding: 1.5em 0;
  opacity: 0.7;
  width: 100%;
  left: 0;
}

.youplay-timeline-block .youplay-timeline .youplay-timeline-content {
  float: none;
}

.youplay-timeline-block .youplay-timeline .youplay-timeline-content .youplay-timeline-date {
  left: 0;
  text-align: left;
}

/*------------------------------------------------------------------

  Accordion

-------------------------------------------------------------------*/
.panel-group .panel {
  background: none;
  border: none;
}

.panel-group .panel-body {
  padding: 1.25rem 1.8rem;
}

.panel-group.panel-group .panel + .panel {
  margin-top: 1rem;
}

.panel-group .panel-heading {
  position: relative;
  color: #3C0732;
  border: none;
  background: none;
  background-color: none;
  border-radius: 0;
  padding: 0;
}

.panel-group .panel-heading .panel-title a,
.panel-group .panel-heading .panel-title a:hover,
.panel-group .panel-heading .panel-title a:focus {
  display: block;
  padding: 1.25rem 1.8rem;
  color: #3C0732;
  text-decoration: none;
}

.panel-group .panel-heading + .panel-collapse > .panel-body {
  border: none;
}

.panel-group .panel-heading > * {
  position: relative;
  z-index: 2;
}

.panel-group .icon-plus,
.panel-group .icon-minus {
  font-size: 2.5rem;
  margin-top: -5px;
  float: right;
}

.panel-group .icon-plus:after,
.panel-group .icon-minus:after {
  display: block;
  content: "+";
  -o-transition: 0.3s -o-transform ease;
  transition: 0.3s -webkit-transform ease;
  transition: 0.3s transform ease;
}

.panel-group .icon-minus:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel-group .panel-default > .panel-heading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 7, 50, 0.1);
  z-index: 1;
}

/*------------------------------------------------------------------

  Tabs

-------------------------------------------------------------------*/
.nav-tabs {
  border-color: rgba(60, 7, 50, 0.1);
}

.nav-tabs > li > a,
.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  font-size: 16px;
  padding: 1.25rem 1.8rem;
  color: #3C0732;
  text-decoration: none;
  border-radius: 0;
  background: none;
  border: none;
  margin-bottom: 1px;
  margin-left: 3px;
  z-index: 1;
}

.side-block .nav-tabs > li > a, .side-block .nav-tabs > li > a:focus,
.side-block .nav-tabs > li > a:hover,
.side-block .nav-tabs > li.active > a,
.side-block .nav-tabs > li.active > a:focus,
.side-block .nav-tabs > li.active > a:hover {
  padding: 0.75rem 1.3rem;
  font-size: 1.2rem;
}

.nav-tabs > li.active > a:focus:after,
.nav-tabs > li.active > a:hover:after,
.nav-tabs > li.active > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 7, 50, 0.1);
  z-index: -1;
}

.tab-content > .tab-pane {
  padding: 1.25rem 1.8rem;
}

/*------------------------------------------------------------------

  Features

-------------------------------------------------------------------*/
.youplay-features {
  margin-bottom: 4.5rem;
}

.youplay-features .feature {
  position: relative;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  text-decoration: none;
}

.youplay-features .feature:hover {
  color: inherit;
}

.youplay-features .feature i {
  font-size: 5rem;
}

/*------------------------------------------------------------------

  Tables

-------------------------------------------------------------------*/
.table-bordered,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th,
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border-color: rgba(60, 7, 50, 0.1);
}

.table-hover > tbody > tr:hover,
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(60, 7, 50, 0.1);
}

/*------------------------------------------------------------------

  Pager

-------------------------------------------------------------------*/
.pager li > a,
.pager li > span {
  position: relative;
  z-index: 1;
}

.pager li > a, .pager li > a:focus, .pager li > a:hover,
.pager li > span,
.pager li > span:focus,
.pager li > span:hover {
  padding: 5px 14px;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 10px 30px;
  color: #3C0732;
}

.pager li > a:focus, .pager li > a:hover,
.pager li > span:focus,
.pager li > span:hover {
  color: #ffffff;
}

.pager li > a:before,
.pager li > span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #3C0732;
  z-index: -1;
  background: none;
  -o-transition: 0.3s background ease, 0.3s border ease;
  transition: 0.3s background ease, 0.3s border ease;
}

.pager li > a:hover:before, .pager li > a.active:before,
.pager li > span:hover:before,
.pager li > span.active:before {
  border: 2px solid #FF774F;
  background: #FF774F;
}

/*------------------------------------------------------------------

  Labels

-------------------------------------------------------------------*/
.label {
  position: relative;
  background: none;
  z-index: 1;
}

.label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(60, 7, 50, 0.1);
  background: rgba(60, 7, 50, 0.4);
}

.label-primary:before {
  background: #2B6AD9;
}

.label-success:before {
  background: #2BD964;
}

.label-info:before {
  background: #2BD7D9;
}

.label-warning:before {
  background: #EB8324;
}

.label-danger:before {
  background: #D92B4C;
}

/*------------------------------------------------------------------

  Alerts

-------------------------------------------------------------------*/
.alert {
  position: relative;
  border: 1px solid #a85e05;
  border-radius: 0;
  color: inherit;
  background: none;
  z-index: 1;
}

.alert:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(60, 7, 50, 0.1);
}

.alert-primary:before {
  background: #2B6AD9;
}

.alert-success:before {
  background: #238643;
}

.alert-info:before {
  background: #2BD7D9;
}

.alert-warning:before {
  background: #EB8324;
}

.alert-danger:before {
  background: #3a1717;
  border: 1px solid #c00;
}

/*------------------------------------------------------------------

  Modals

-------------------------------------------------------------------*/
.modal-content {
  background-color: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.modal-header,
.modal-footer {
  padding: 3rem;
  border-color: rgba(60, 7, 50, 0.2);
}

.modal-body {
  padding: 3rem;
}

.close,
.close:hover,
.close:focus {
  color: #3C0732;
  text-shadow: none;
  opacity: 0.5;
}

.close:hover {
  opacity: 1;
}

/*------------------------------------------------------------------

  Tooltips

-------------------------------------------------------------------*/
.tooltip-inner {
  position: relative;
  color: #ffffff;
  background: none;
  padding: 8px 18px;
  border-radius: 0;
}

.tooltip-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #3C0732;
}

.tooltip.left .tooltip-arrow {
  right: 1px;
  border-left-color: #3C0732;
}

.tooltip.top .tooltip-arrow {
  border-top-color: #3C0732;
}

.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #3C0732;
}

.tooltip.right .tooltip-arrow {
  left: 1px;
  border-right-color: #3C0732;
}

/*------------------------------------------------------------------

  Popovers

-------------------------------------------------------------------*/
.popover {
  font: inherit;
  background-color: #3C0732;
  color: #fff;
  border: none;
  border-radius: 0;
}

.popover.left > .arrow:after {
  border-left-color: #3C0732;
}

.popover.top > .arrow:after {
  border-top-color: #3C0732;
}

.popover.bottom > .arrow:after {
  border-bottom-color: #3C0732;
}

.popover.right > .arrow:after {
  left: 1px;
  border-right-color: #3C0732;
}

/*------------------------------------------------------------------

  Angled Images

-------------------------------------------------------------------*/
.angled-img {
  position: relative;
  display: block;
}

.angled-img, .angled-img:hover, .angled-img:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.angled-img .img {
  position: relative;
  overflow: hidden;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background: #C6C3D8;
  -webkit-backface-visibility: hidden;
}

.angled-img .img > img {
  width: 100%;
  -o-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
  -webkit-backface-visibility: hidden;
  opacity: 0.9;
}

.angled-img .img.img-offset {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.angled-img:hover .img > img {
  opacity: 1;
}

.angled-img .icon {
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  opacity: 0.2;
  -o-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
}

.angled-img:hover .icon {
  opacity: 0.8;
}

.angled-img .price {
  font-weight: bold;
}

.angled-img .price del {
  color: rgba(60, 7, 50, 0.65);
}

.angled-img h4 {
  font-weight: bold;
}

.angled-img .badge {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0;
  font-size: 1.5rem;
  padding: 10px 15px;
  -o-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
  -webkit-backface-visibility: hidden;
  opacity: 0;
}

.angled-img .badge.show-half {
  opacity: 0.5;
}

.angled-img .badge.show {
  opacity: 1;
}

.angled-img:hover .badge {
  opacity: 1;
}

.angled-img .over-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 5%;
  text-align: center;
}

.angled-img .over-info.bottom {
  top: auto;
  bottom: 0;
  height: auto;
  text-align: left;
}

.angled-img .over-info h4,
.angled-img .over-info .rating {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.angled-img .over-info > div {
  display: table;
  height: 100%;
  width: 100%;
}

.angled-img .over-info > div > div {
  display: table-cell;
  vertical-align: middle;
}

.angled-img .bottom-info {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 1.8rem;
}

.angled-img .bottom-info h3, .angled-img .bottom-info .h3,
.angled-img .bottom-info h4, .angled-img .bottom-info .h4 {
  position: relative;
  text-align: center;
  margin-top: 1.8rem;
  margin-bottom: 3rem;
}

.angled-img .bottom-info h3:after, .angled-img .bottom-info .h3:after,
.angled-img .bottom-info h4:after, .angled-img .bottom-info .h4:after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(60, 7, 50, 0.65);
}

/*------------------------------------------------------------------

  Angled Backgrounds

-------------------------------------------------------------------*/
.angled-bg {
  position: relative;
  display: block;
}

.angled-bg > * {
  position: relative;
  z-index: 2;
}

.angled-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 7, 50, 0.1);
  z-index: 0;
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
}

.angled-bg:hover:after {
  background: rgba(60, 7, 50, 0.13);
}

.angled-bg.item {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}

.angled-bg.item:hover, .angled-bg.item:focus {
  color: inherit;
}

.angled-bg.item .price {
  margin-top: 10px;
  margin-right: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}

.angled-bg.item .remove,
.angled-bg.item .remove:hover,
.angled-bg.item .remove:focus {
  font-size: 1.7rem;
  margin-top: 5px;
  margin-right: 20px;
  text-decoration: none;
}

/*------------------------------------------------------------------

  Forms

-------------------------------------------------------------------*/
/* Fixed default inputs text color */
button, input, select, textarea {
  color: #000;
}

.form-group input,
.form-group textarea,
.youplay-textarea input,
.youplay-textarea textarea,
.youplay-select select {
  color: inherit;
}

/* Styled Forms */
.youplay-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 4rem;
}

/* Input and Textarea */
.form-group,
.youplay-textarea {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input, .form-group textarea,
.youplay-textarea input,
.youplay-textarea textarea {
  position: relative;
  resize: none;
  width: 100%;
  padding: 1rem 1.8rem;
  display: block;
  background: none;
  border: none;
  outline: none;
  z-index: 2;
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
}

.form-group:after,
.youplay-textarea:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 7, 50, 0.1);
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
}

.form-group.has-error:after,
.youplay-textarea.has-error:after {
  background: rgba(217, 43, 76, 0.3);
}

.form-group .icon,
.youplay-textarea .icon {
  position: absolute;
  left: 2rem;
  top: 1rem;
  font-size: 1.8rem;
  color: #3C0732;
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
  z-index: 2;
}

.form-group .icon + input,
.form-group .icon + textarea,
.youplay-textarea .icon + input,
.youplay-textarea .icon + textarea {
  padding-left: 5rem;
}

.form-group.input-filled:after,
.youplay-textarea.input-filled:after {
  background: #3c0732;
}

.form-group.input-filled .icon,
.form-group.input-filled input,
.form-group.input-filled textarea,
.youplay-textarea.input-filled .icon,
.youplay-textarea.input-filled input,
.youplay-textarea.input-filled textarea {
  color: #fff;
}

/* Ratings */
.youplay-rating {
  overflow: hidden;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}

.youplay-rating [type=radio] + label {
  font-size: 2rem;
  width: auto;
  height: auto;
  line-height: 1;
  padding: 0;
  padding-right: 0.7rem;
}

.youplay-rating input {
  display: none;
}

.youplay-rating input:checked ~ label {
  color: #FF774F;
}

.youplay-rating label {
  position: relative;
  cursor: default;
  clear: none;
  float: right;
  display: block;
  width: 2.2em;
  height: 2em;
}

.youplay-rating label:after, .youplay-rating label:before {
  content: none;
  display: none;
}

.youplay-rating label:hover,
.youplay-rating label:hover ~ label {
  color: #FF774F;
  opacity: 0.8;
}

select {
  cursor: pointer;
  border: 1px solid #c87d43;
  outline: none;
  display: block;
  width: 100%;
  padding: 1rem 1.8rem;
  padding-right: 3.6rem;
  margin: 0;
  background: #1f1e1c;
  color: #fff;
}

select option {
  color: #fff;
}

@-moz-document url-prefix() {
  .youplay-select option {
    color: inherit;
  }
}
.youplay-select select[multiple] {
  padding-right: 1.8rem;
}

.youplay-select select[multiple] option {
  color: inherit;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .youplay-select select {
    padding-right: 4rem;
  }
}
.youplay-select:after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 7, 50, 0.1);
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
}

.youplay-select:before {
  right: 1.8rem;
  top: 1.8rem;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(60, 7, 50, 0);
  border-top-color: #3C0732;
  border-width: 5px;
  margin-left: -5px;
}

/* Checkboxes */
.youplay-checkbox {
  margin-bottom: 2rem;
}

.youplay-checkbox input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}

.youplay-checkbox input[type=checkbox] + label {
  position: relative;
  font-weight: normal;
  cursor: pointer;
  padding-left: 35px;
}

.youplay-checkbox input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: -8px;
  top: -2px;
  width: 25px;
  height: 25px;
  background: rgba(60, 7, 50, 0.1);
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
  z-index: 1;
}

.youplay-checkbox input[type=checkbox] + label:before {
  font: 17px "Glyphicons Halflings";
  content: "\e013";
  position: absolute;
  left: -4px;
  top: 0;
  color: #3C0732;
  opacity: 0;
  -o-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
  z-index: 2;
}

.youplay-checkbox input[type=checkbox]:checked + label:before {
  opacity: 1;
}

/* Radios */
.youplay-radio {
  margin-bottom: 2rem;
}

.youplay-radio input[type=radio] {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}

.youplay-radio input[type=radio] + label {
  position: relative;
  font-weight: normal;
  cursor: pointer;
  padding-left: 35px;
}

.youplay-radio input[type=radio] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: -8px;
  top: -2px;
  width: 25px;
  height: 25px;
  background: rgba(60, 7, 50, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.youplay-radio input[type=radio] + label:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3C0732;
  opacity: 0;
  -o-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
  z-index: 2;
}

.youplay-radio input[type=radio]:checked + label:before {
  opacity: 1;
}

/*------------------------------------------------------------------

  Navbar

-------------------------------------------------------------------*/
.no-transition *,
.no-transition *:before,
.no-transition *:after {
  -o-transition: none !important;
  transition: none !important;
}

.navbar-youplay {
  border: none;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.9);
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
  margin-bottom: 0;
}

.navbar-youplay a {
  text-decoration: none;
}

.navbar-youplay .navbar-brand {
  display: block;
  height: 80px;
  line-height: 75px;
  margin-left: 15px;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  will-change: height, width, line-height;
}

@media (max-width: 767px) {
  .navbar-youplay .navbar-brand {
    float: left;
    margin: 0 auto;
  }
}
@media (max-width: 410px) {
  .navbar-youplay .navbar-brand {
    display: none;
  }
}
.navbar-youplay .navbar-nav > li > a {
  height: 80px;
  padding: 24.24242px 0;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  will-change: height, padding;
}

.navbar-youplay .navbar-nav > li > a > .label {
  display: block;
  padding: 0;
  text-transform: none;
  color: rgba(60, 7, 50, 0.65);
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: left;
}

.navbar-youplay .navbar-nav > li > a > .label:before {
  content: none;
}

.navbar-youplay .navbar-nav > li > a:hover > .label,
.navbar-youplay .navbar-nav > li > a:focus > .label,
.navbar-youplay .navbar-nav > li.open > a > .label {
  color: #3C0732;
}

.navbar-youplay .navbar-brand {
  padding: 0;
  width: 350px;
}

.navbar-youplay .navbar-brand img {
  display: inline-block;
  max-width: 100%;
}

.navbar-youplay .navbar-nav > li > a,
.navbar-youplay .navbar-nav > li > a:hover,
.navbar-youplay .navbar-nav > li > a:focus,
.navbar-youplay .navbar-nav > li.open > a {
  color: #3C0732;
}

.navbar-youplay .navbar-nav > li > a {
  text-transform: uppercase;
  font-size: 13px;
}

.navbar-youplay .navbar-nav > li {
  margin-left: 30px;
}

.navbar-youplay .caret {
  border-width: 3px;
}

.navbar-youplay .badge {
  position: absolute;
  text-align: center;
  font-size: 10px;
  min-width: 17px;
  height: 17px;
  line-height: 17px;
  padding: 0 6px;
  margin-top: -4px;
  margin-left: -4px;
  letter-spacing: 0px;
}

.navbar-youplay .navbar-nav > .active > a,
.navbar-youplay .navbar-nav > .active > a:focus,
.navbar-youplay .navbar-nav > .active > a:hover,
.navbar-youplay .navbar-nav > .open > a,
.navbar-youplay .navbar-nav > .open > a:focus,
.navbar-youplay .navbar-nav > .open > a:hover,
.navbar-youplay .nav .open > a,
.navbar-youplay .nav .open > a:focus,
.navbar-youplay .nav .open > a:hover {
  color: #3C0732;
  background: none;
}

.navbar-youplay .navbar-nav > .active > a:after,
.navbar-youplay .navbar-nav > .active > a:focus:after,
.navbar-youplay .navbar-nav > .active > a:hover:after {
  content: "";
  position: absolute;
  background: #3C0732;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
}

.navbar-youplay .navbar-nav > li > .dropdown-menu,
.navbar-youplay .dropdown-menu {
  display: table;
  border: none;
  background: #ffffff;
}

.navbar-youplay .navbar-nav > li > .dropdown-menu > ul,
.navbar-youplay .dropdown-menu > ul {
  display: table-cell;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 160px;
}

.navbar-youplay .navbar-nav > li > .dropdown-menu > ul > li > a,
.navbar-youplay .dropdown-menu > ul > li > a {
  position: relative;
  display: block;
  color: #3C0732;
  padding: 10px 25px;
  padding-bottom: 5px;
  white-space: nowrap;
}

.navbar-youplay .navbar-nav > li > .dropdown-menu > ul > li > a:after,
.navbar-youplay .dropdown-menu > ul > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 5px;
  width: 100%;
  border-bottom: 1px solid;
  -o-transition: 0.3s -o-transform ease;
  transition: 0.3s -webkit-transform ease;
  transition: 0.3s transform ease;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  -o-transform-origin: 0;
  transform-origin: 0;
  opacity: 0.5;
}

.navbar-youplay .navbar-nav > li > .dropdown-menu > ul > li > a:focus:after,
.navbar-youplay .navbar-nav > li > .dropdown-menu > ul > li > a:hover:after,
.navbar-youplay .navbar-nav > li > .dropdown-menu > ul > li.active > a:after,
.navbar-youplay .navbar-nav > li > .dropdown-menu > ul > li.open > a:after,
.navbar-youplay .dropdown-menu > ul > li > a:focus:after,
.navbar-youplay .dropdown-menu > ul > li > a:hover:after,
.navbar-youplay .dropdown-menu > ul > li.active > a:after,
.navbar-youplay .dropdown-menu > ul > li.open > a:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.navbar-youplay .navbar-nav > li > .dropdown-menu > ul .divider,
.navbar-youplay .dropdown-menu > ul .divider {
  background: rgba(60, 7, 50, 0.15);
}

.navbar-youplay .dropdown-hover > .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -o-transition: 0.2s visibility ease, 0.2s opacity ease, 0.2s -o-transform ease;
  transition: 0.2s visibility ease, 0.2s opacity ease, 0.2s -webkit-transform ease;
  transition: 0.2s visibility ease, 0.2s opacity ease, 0.2s transform ease;
}

.navbar-youplay .dropdown-hover:hover > .dropdown-menu,
.navbar-youplay .dropdown-hover.open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.navbar-youplay .navbar-nav > li > .dropdown-menu {
  margin-top: 10px;
}

.navbar-youplay .navbar-nav > li > .dropdown-menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 10px;
}

.navbar-youplay .nav > .dropdown > .dropdown-menu:after {
  content: " ";
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  bottom: 100%;
  left: 20px;
  height: 0;
  width: 0;
  border-bottom-color: rgba(255, 255, 255, 0.8);
  border-width: 6px;
  margin-right: -6px;
}

.navbar-youplay .navbar-right > .dropdown > .dropdown-menu:after {
  margin-right: 0;
  margin-left: -6px;
  right: 20px;
  left: auto;
}

.navbar-youplay.navbar-small {
  background: #ffffff;
  background: rgba(255, 255, 255, 0.94);
}

.navbar-youplay.navbar-small .navbar-brand {
  height: 50px;
  line-height: 45px;
}

.navbar-youplay.navbar-small .navbar-nav > li > a {
  height: 50px;
  padding: 15.15152px 0;
}

.navbar-youplay.navbar-small .navbar-nav > li > a > .label {
  display: none;
}

.navbar-youplay.navbar-small .navbar-brand {
  width: 110px;
}

.navbar-youplay .navbar-toggle,
.navbar-youplay .navbar-toggle:hover,
.navbar-youplay .navbar-toggle:focus {
  border: none;
  background: none;
}

.navbar-youplay .navbar-toggle .icon-bar,
.navbar-youplay .navbar-toggle:hover .icon-bar,
.navbar-youplay .navbar-toggle:focus .icon-bar {
  width: 25px;
  background: #3C0732;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -o-transition: 0.3s margin-top ease, 0.3s -o-transform ease, 0.3s opacity ease;
  transition: 0.3s margin-top ease, 0.3s -webkit-transform ease, 0.3s opacity ease;
  transition: 0.3s margin-top ease, 0.3s transform ease, 0.3s opacity ease;
}

.navbar-youplay .navbar-toggle .icon-bar + .icon-bar,
.navbar-youplay .navbar-toggle:hover .icon-bar + .icon-bar,
.navbar-youplay .navbar-toggle:focus .icon-bar + .icon-bar {
  margin-top: 6px;
}

.navbar-youplay .navbar-toggle {
  margin-top: 23px;
  -o-transition: 0.2s margin-top ease;
  transition: 0.2s margin-top ease;
}

.navbar-youplay.navbar-small .navbar-toggle {
  margin-top: 8px;
}

.navbar-youplay.youplay-navbar-collapsed .navbar-toggle :nth-child(3),
.navbar-youplay.youplay-navbar-collapsed .navbar-toggle:hover :nth-child(3) {
  opacity: 0;
}

.navbar-youplay.youplay-navbar-collapsed .navbar-toggle :nth-child(2),
.navbar-youplay.youplay-navbar-collapsed .navbar-toggle:hover :nth-child(2) {
  -webkit-transform: rotate(45deg) translate(9px, 15px);
  -ms-transform: rotate(45deg) translate(9px, 15px);
  -o-transform: rotate(45deg) translate(9px, 15px);
  transform: rotate(45deg) translate(9px, 15px);
}

.navbar-youplay.youplay-navbar-collapsed .navbar-toggle :nth-child(4),
.navbar-youplay.youplay-navbar-collapsed .navbar-toggle:hover :nth-child(4) {
  -webkit-transform: rotate(-45deg) translate(9px, -15px);
  -ms-transform: rotate(-45deg) translate(9px, -15px);
  -o-transform: rotate(-45deg) translate(9px, -15px);
  transform: rotate(-45deg) translate(9px, -15px);
}

@media (max-width: 767px) {
  .navbar-youplay, .navbar-youplay.navbar-small {
    background: none;
  }
  .navbar-youplay .navbar-header {
    background: #ffffff;
    background: rgba(255, 255, 255, 0.4);
  }
  .navbar-youplay.navbar-small .navbar-header {
    background: #ffffff;
    background: rgba(255, 255, 255, 0.94);
  }
  .navbar-youplay .navbar-collapse {
    position: fixed;
    top: 75px;
    right: 0;
    bottom: 0;
    width: 90%;
    z-index: 1;
    max-width: 400px;
    margin: 0;
    padding: 30px;
    padding-top: 10px;
    overflow-y: auto;
    max-height: 100%;
    border: none;
    background: #fff;
    -o-transition: 0.3s padding-top ease, 0.5s -o-transform ease;
    transition: 0.3s padding-top ease, 0.5s -webkit-transform ease;
    transition: 0.3s padding-top ease, 0.5s transform ease;
  }
  .navbar-youplay .navbar-collapse:before {
    content: "";
    display: block;
    position: fixed;
  }
  .navbar-youplay .navbar-collapse.collapse {
    display: block;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .navbar-youplay .navbar-collapse .navbar-nav {
    margin: 0;
  }
  .navbar-youplay .navbar-collapse .navbar-nav > li {
    margin-left: 0;
  }
  .navbar-youplay .navbar-collapse .navbar-nav > li > a {
    padding: 15.15152px 0;
    height: 50px;
  }
  .navbar-youplay .navbar-collapse .dropdown-menu > ul > li > a,
  .navbar-youplay .navbar-collapse .navbar-nav > li > .dropdown-menu > ul > li > a {
    padding: 10px 0;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu > .dropdown-menu,
  .navbar-youplay .navbar-collapse .dropdown-hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu > .dropdown-menu:after,
  .navbar-youplay .navbar-collapse .dropdown-hover > .dropdown-menu:after {
    content: none;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu > [data-toggle] + .dropdown-menu,
  .navbar-youplay .navbar-collapse .dropdown-hover > [data-toggle] + .dropdown-menu {
    display: none;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu.open > .dropdown-menu,
  .navbar-youplay .navbar-collapse .dropdown-hover.open > .dropdown-menu {
    display: block;
  }
  .navbar-youplay .navbar-collapse .open .dropdown-menu > li > a {
    color: rgba(60, 7, 50, 0.65);
  }
  .navbar-youplay .navbar-collapse .open .dropdown-menu > li.open > a,
  .navbar-youplay .navbar-collapse .open .dropdown-menu > li > a:hover,
  .navbar-youplay .navbar-collapse .open .dropdown-menu > li > a:focus {
    color: #3C0732;
  }
  .navbar-youplay .navbar-collapse .navbar-nav > li > .dropdown-menu,
  .navbar-youplay .navbar-collapse .navbar-nav > li > .dropdown-menu > ul {
    display: block;
    position: relative;
    margin: 0;
    width: 100% !important;
  }
  .navbar-youplay .navbar-collapse .navbar-nav > li {
    clear: both;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu > .dropdown-menu {
    position: relative;
    left: auto;
    right: auto;
    width: 100% !important;
    margin: 0;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu > .dropdown-menu:before, .navbar-youplay .navbar-collapse .dropdown-submenu > .dropdown-menu:after {
    content: none;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu > .dropdown-menu > ul {
    float: none;
  }
  .navbar-youplay .navbar-collapse .dropdown-submenu > a:before {
    border-color: transparent;
    border-top-color: #3C0732;
  }
  .navbar-youplay .navbar-collapse .dropdown > .dropdown-menu {
    padding-left: 20px;
  }
  .navbar-youplay.navbar-small .navbar-collapse {
    padding-top: 65px;
  }
  .navbar-youplay.navbar-small .navbar-collapse .navbar-nav > li > a > .label {
    display: block;
  }
  .navbar-youplay .navbar-header {
    position: relative;
    z-index: 1;
  }
  .navbar-youplay .dropdown-menu {
    box-shadow: none;
  }
  .navbar-youplay ~ .content-wrap {
    opacity: 1;
    -o-transition: 0.5s opacity ease;
    transition: 0.5s opacity ease;
  }
  .navbar-youplay.youplay-navbar-collapsed ~ .content-wrap {
    opacity: 0.3;
  }
}
/*
 * bootstrap dropdown submenus
 * from http://www.bootply.com/86684
 */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -15px;
  margin-left: 10px;
}

.dropdown-submenu > .dropdown-menu:after {
  content: " ";
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  right: 100%;
  top: 30px;
  height: 0;
  width: 0;
  border-right-color: rgba(255, 255, 255, 0.8);
  border-width: 6px;
}

.dropdown-submenu > .dropdown-menu:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 10px;
  height: 100%;
}

.dropdown-submenu > .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -o-transition: 0.2s visibility ease, 0.2s opacity ease, 0.2s -o-transform ease;
  transition: 0.2s visibility ease, 0.2s opacity ease, 0.2s -webkit-transform ease;
  transition: 0.2s visibility ease, 0.2s opacity ease, 0.2s transform ease;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu.open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.dropdown-submenu > a:before {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 3px;
  border-left-color: #3C0732;
  margin-top: 7px;
  margin-right: -10px;
}

.dropdown-submenu:hover > a:before {
  border-left-color: #3C0732;
}

.dropdown-submenu.pull-left {
  float: none !important;
}

.dropdown-submenu.pull-left > a:before {
  border-color: transparent;
  border-right-color: #3C0732;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 10px;
}

.dropdown-submenu.pull-left > .dropdown-menu:after {
  left: 100%;
  right: auto;
  border: solid transparent;
  border-left-color: #ffffff;
  border-left-color: rgba(255, 255, 255, 0.8);
  border-width: 6px;
}

.dropdown-submenu.pull-left > .dropdown-menu:before {
  left: auto;
  right: -10px;
  top: 0;
}

/*
 * Shopping Cart
 */
.navbar-youplay .dropdown-cart .dropdown-menu {
  width: 260px;
  padding-top: 1rem;
}

.navbar-youplay .dropdown-cart .youplay-side-news {
  padding-left: 2rem;
  padding-right: 1rem;
}

/*------------------------------------------------------------------

  Banner

-------------------------------------------------------------------*/
.no-banner {
  padding-top: 80px;
}

.youplay-banner {
  position: relative;
  background: #C6C3D8;
  min-height: 170px;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 0\0 ) {
  .youplay-banner {
    height: 0;
  }
}
/*
  .youplay-banner.banner-top {
    padding-top: 80px; }*/
.youplay-banner.small {
  min-height: 450px;
  font-size: inherit;
}

.youplay-banner.xsmall {
  min-height: 350px;
}

.youplay-banner.big {
  min-height: 650px;
}

.youplay-banner.full {
  min-height: 100%;
}

.youplay-banner h1, .youplay-banner h2 {
  margin-top: 0;
}

.youplay-banner .image {
  position: absolute;
  /*opacity: 0.5;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.youplay-banner .info {
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .youplay-banner .info {
    text-align: center;
  }
}
.youplay-banner .info h1, .youplay-banner .info h2 {
  font-size: 5rem;
  text-transform: uppercase;
}

.full,
.full .youplay-banner {
  height: 100%;
  min-height: 650px;
}

.full {
  overflow: auto;
}

.full .youplay-banner .image {
  background-position: 50% 50%;
  background-size: cover;
}

.wide .youplay-banner .image {
  background-position: 50% 50%;
  background-size: cover;
}

.youplay-banner-parallax.youplay-banner .image {
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: initial;
}

.youplay-banner-parallax.youplay-banner.banner-top .image {
  background-position: 50% 0;
}

/*------------------------------------------------------------------

  Owl Carousel

-------------------------------------------------------------------*/
.youplay-carousel.owl-carousel .angled-img {
  margin-left: -1px;
}

.youplay-carousel.owl-carousel .angled-img .bottom-info {
  width: 80%;
}

.youplay-carousel.owl-carousel .angled-img .over-info,
.youplay-carousel.owl-carousel .angled-img .bottom-info {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.youplay-carousel.owl-carousel .owl-nav {
  margin: 0;
}

.youplay-carousel.owl-carousel .owl-nav .owl-prev,
.youplay-carousel.owl-carousel .owl-nav .owl-next {
  position: absolute;
  cursor: pointer;
  font-size: 2rem;
  top: 0;
  height: 100%;
  width: 70px;
  -o-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
  opacity: 1;
  margin: 0;
  padding: 0;
}

.youplay-carousel.owl-carousel .owl-nav .owl-prev:hover,
.youplay-carousel.owl-carousel .owl-nav .owl-next:hover {
  opacity: 0.8;
}

.youplay-carousel.owl-carousel .owl-nav .owl-prev,
.youplay-carousel.owl-carousel .owl-nav .owl-prev:hover {
  left: 0;
  background: -o-linear-gradient(left, #ffffff, rgba(255, 255, 255, 0));
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.youplay-carousel.owl-carousel .owl-nav .owl-next,
.youplay-carousel.owl-carousel .owl-nav .owl-next:hover {
  right: -0.1px;
  background: -o-linear-gradient(right, #ffffff, rgba(255, 255, 255, 0));
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

/*------------------------------------------------------------------

  Default Owl Carousel

-------------------------------------------------------------------*/
.owl-carousel .owl-dots {
  text-align: center;
  margin-right: 0;
  margin-top: 15px;
  margin-bottom: 5px;
}

.owl-carousel .owl-item .item {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.owl-carousel .owl-dot {
  display: inline-block;
  width: 40px;
  height: 8px;
  margin-left: 15px;
  margin-top: 5px;
  border: 2px solid #3C0732;
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
}

.owl-carousel .owl-dot:hover, .owl-carousel .owl-dot.active {
  background: #3C0732;
}

.owl-carousel .owl-stage-outer {
  width: 100%;
}

.youplay-slider .owl-dots {
  text-align: center;
  margin-right: 15%;
  margin-top: -5px;
  margin-bottom: 5px;
}

.youplay-slider .owl-dot {
  display: inline-block;
  width: 40px;
  height: 8px;
  margin-left: 15px;
  margin-top: 5px;
  border: 2px solid #3C0732;
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
}

.youplay-slider .owl-dot:hover, .youplay-slider .owl-dot.active {
  background: #3C0732;
}

/* Fix collision with OWL styles */
.owl-carousel .owl-dots .owl-dot > span {
  display: none !important;
}

/*------------------------------------------------------------------

  Countdown

-------------------------------------------------------------------*/
.full .countdown,
.countdown.style-1 {
  text-align: center;
  max-width: 750px;
  margin: 2rem auto;
}

.full .countdown .countdown-item,
.countdown.style-1 .countdown-item {
  display: inline-block;
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.full .countdown .countdown-item > span,
.countdown.style-1 .countdown-item > span {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  min-width: 130px;
}

.full .countdown .countdown-item > span + span,
.countdown.style-1 .countdown-item > span + span {
  display: inline-block;
  position: relative;
  font-weight: normal;
  font-size: 5rem;
  margin-top: 1rem;
  padding: 25px 40px;
}

.full .countdown .countdown-item > span + span span,
.countdown.style-1 .countdown-item > span + span span {
  position: relative;
  z-index: 2;
}

.full .countdown .countdown-item > span + span:after,
.countdown.style-1 .countdown-item > span + span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.full .countdown .row > div > span,
.countdown.style-1 .row > div > span {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

.full .countdown .row > div > span + span,
.countdown.style-1 .row > div > span + span {
  display: inline-block;
  position: relative;
  font-weight: normal;
  font-size: 5rem;
  margin-top: 1rem;
  padding: 25px 40px;
}

.full .countdown .row > div > span + span span,
.countdown.style-1 .row > div > span + span span {
  position: relative;
  z-index: 2;
}

.full .countdown .row > div > span + span:after,
.countdown.style-1 .row > div > span + span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

/*------------------------------------------------------------------

  Hexagon Rating

-------------------------------------------------------------------*/
.youplay-review-rating {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-top: 2px solid rgba(60, 7, 50, 0.1);
  border-bottom: 2px solid rgba(60, 7, 50, 0.1);
  padding: 3rem;
  padding-top: 0;
}

.youplay-review-rating .row > div {
  padding-top: 3rem;
}

.youplay-review-rating ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.youplay-review-rating ul li > i {
  margin-right: 3px;
}

.youplay-hexagon-rating {
  position: relative;
  width: 120px;
  height: 120px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.news-one .angled-img .youplay-hexagon-rating {
  position: absolute;
  bottom: 15px;
  left: 10px;
}

.youplay-hexagon-rating > canvas {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

.youplay-hexagon-rating > span {
  position: absolute;
  text-align: center;
  font-weight: bold;
  font-size: 3.5rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  top: 50%;
  left: 50%;
}

.youplay-hexagon-rating.youplay-hexagon-rating-small {
  width: 50px;
  height: 50px;
}

.youplay-hexagon-rating.youplay-hexagon-rating-small > span {
  font-size: 1.3rem;
}

/*------------------------------------------------------------------

  Search Block

-------------------------------------------------------------------*/
.search-block {
  position: fixed;
  display: table;
  background: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  padding: 4rem;
  visibility: hidden;
  opacity: 0;
  -o-transition: 0.5s opacity ease, 0.5s visibility ease;
  transition: 0.5s opacity ease, 0.5s visibility ease;
}

.search-block.active {
  opacity: 1;
  visibility: visible;
}

.search-block.active > form {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.search-block > form {
  display: table-cell;
  vertical-align: middle;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  -o-transition: 0.5s -o-transform ease;
  transition: 0.5s -webkit-transform ease;
  transition: 0.5s transform ease;
}

.search-block > form input {
  font-size: 5rem;
  padding: 2rem 5rem;
}

.search-block > .search-toggle {
  position: absolute;
  right: 4rem;
  top: 4rem;
  text-decoration: none;
  font-size: 3rem;
  z-index: 2;
  text-shadow: 1px 1px 1px #ffffff;
}

.search-block > .search-toggle, .search-block > .search-toggle:hover {
  color: #3C0732;
}

/*------------------------------------------------------------------

  Side Block

-------------------------------------------------------------------*/
.side-block {
  margin-bottom: 3rem;
}

.side-block.right-side,
.side-block.right-side input {
  text-align: right;
}

.side-block .block-title {
  position: relative;
  padding: 1rem 1.8rem;
  margin: 0;
  margin-bottom: 1rem;
}

.side-block .block-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(60, 7, 50, 0.1);
}

.side-block .block-content {
  margin-top: 1rem;
  padding: 0 1rem;
}

.side-block ul {
  list-style-type: none;
}

.side-block ul a {
  display: block;
  padding: 0.4rem 0;
}

.side-block .price,
.side-block .date {
  display: block;
  margin: 0.5rem 0;
}

/*------------------------------------------------------------------

  Comments / Reviews

-------------------------------------------------------------------*/
.comments-block,
.reviews-block {
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.comments-block .comment-avatar,
.comments-block .review-avatar,
.reviews-block .comment-avatar,
.reviews-block .review-avatar {
  width: 50px;
  display: block;
  margin-right: 2rem;
  overflow: hidden;
  cursor: pointer;
  border-radius: 25px;
}

.comments-block .comment-avatar > img,
.comments-block .review-avatar > img,
.reviews-block .comment-avatar > img,
.reviews-block .review-avatar > img {
  width: 100%;
}

.comments-block .comment-author,
.comments-block .review-author,
.reviews-block .comment-author,
.reviews-block .review-author {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 0;
}

.comments-block .comment-form,
.comments-block .review-form,
.reviews-block .comment-form,
.reviews-block .review-form {
  margin: 3rem 0;
}

.comments-block .comment-cont,
.comments-block .review-cont,
.reviews-block .comment-cont,
.reviews-block .review-cont {
  position: relative;
}

.comments-block .comments-list,
.comments-block .comments-list .child-comment,
.comments-block .reviews-list,
.comments-block .reviews-list .child-comment,
.reviews-block .comments-list,
.reviews-block .comments-list .child-comment,
.reviews-block .reviews-list,
.reviews-block .reviews-list .child-comment {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.comments-block .comments-list > li > article,
.comments-block .comments-list .child-comment > li > article,
.comments-block .reviews-list > li > article,
.comments-block .reviews-list .child-comment > li > article,
.reviews-block .comments-list > li > article,
.reviews-block .comments-list .child-comment > li > article,
.reviews-block .reviews-list > li > article,
.reviews-block .reviews-list .child-comment > li > article {
  margin-bottom: 2.5rem;
}

.comments-block .comments-list .date,
.comments-block .comments-list .child-comment .date,
.comments-block .reviews-list .date,
.comments-block .reviews-list .child-comment .date,
.reviews-block .comments-list .date,
.reviews-block .comments-list .child-comment .date,
.reviews-block .reviews-list .date,
.reviews-block .reviews-list .child-comment .date {
  color: rgba(60, 7, 50, 0.65);
  font-size: 1.2rem;
  margin-top: 6px;
}

.comments-block .comments-list .date a,
.comments-block .comments-list .child-comment .date a,
.comments-block .reviews-list .date a,
.comments-block .reviews-list .child-comment .date a,
.reviews-block .comments-list .date a,
.reviews-block .comments-list .child-comment .date a,
.reviews-block .reviews-list .date a,
.reviews-block .reviews-list .child-comment .date a {
  text-decoration: none;
}

.comments-block .comments-list .child-comment,
.comments-block .reviews-list .child-review,
.reviews-block .comments-list .child-comment,
.reviews-block .reviews-list .child-review {
  margin-left: 50px;
}

.comments-block .comments-list,
.comments-block .reviews-list,
.reviews-block .comments-list,
.reviews-block .reviews-list {
  margin: 3rem 0;
  margin-bottom: 6rem;
}

.comments-block .comments-list > li + li,
.comments-block .comments-list .child-comment > li + li,
.comments-block .comments-list .child-comment,
.comments-block .reviews-list > li + li,
.comments-block .reviews-list .child-review > li + li,
.comments-block .reviews-list .child-review,
.reviews-block .comments-list > li + li,
.reviews-block .comments-list .child-comment > li + li,
.reviews-block .comments-list .child-comment,
.reviews-block .reviews-list > li + li,
.reviews-block .reviews-list .child-review > li + li,
.reviews-block .reviews-list .child-review {
  margin-top: 30px;
}

.comments-block .comment-text,
.comments-block .review-text,
.reviews-block .comment-text,
.reviews-block .review-text {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
}

.comments-block .comment-text:before,
.comments-block .review-text:before,
.reviews-block .comment-text:before,
.reviews-block .review-text:before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  opacity: 0.3;
  border-top: 1px solid;
  border-top: 1px dotted;
}

.comments-block .rating,
.reviews-block .rating {
  margin-top: 0.3rem;
}

.comments-block .review-like,
.comments-block .comment-like,
.reviews-block .review-like,
.reviews-block .comment-like {
  position: relative;
  opacity: 0.5;
  -o-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
}

.comments-block .review-like a,
.comments-block .comment-like a,
.reviews-block .review-like a,
.reviews-block .comment-like a {
  display: inline-block;
  text-decoration: none;
  margin-left: 1rem;
}

.comments-block .comment-cont:hover .review-like,
.comments-block .comment-cont:hover .comment-like,
.comments-block .review-cont:hover .review-like,
.comments-block .review-cont:hover .comment-like,
.reviews-block .comment-cont:hover .review-like,
.reviews-block .comment-cont:hover .comment-like,
.reviews-block .review-cont:hover .review-like,
.reviews-block .review-cont:hover .comment-like {
  opacity: 1;
}

/*------------------------------------------------------------------

  News List

-------------------------------------------------------------------*/
.youplay-news .news-one + .news-one {
  margin-top: 6rem;
}

@media (min-width: 767px) and (max-width: 991px) {
  .youplay-news .news-one {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media (max-width: 767px) {
  .youplay-news .news-one {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
}
.youplay-news .news-one h3 a, .youplay-news .news-one h2 a {
  color: inherit;
}

.youplay-news .news-one h3 a:hover, .youplay-news .news-one h3 a:focus, .youplay-news .news-one h2 a:hover, .youplay-news .news-one h2 a:focus {
  color: #FF774F;
}

.youplay-news .news-one h3 a, .youplay-news .news-one h3 a:hover, .youplay-news .news-one h3 a:focus, .youplay-news .news-one h2 a, .youplay-news .news-one h2 a:hover, .youplay-news .news-one h2 a:focus {
  text-decoration: none;
}

.youplay-news .news-one .angled-img {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.youplay-news {
  margin-bottom: 4rem;
  margin-top: 6rem;
}

h2 + .youplay-news {
  margin-top: 0;
}

/*
 * News Grid Style
 */
.youplay-news.news-grid .news-one {
  margin-top: 0;
  margin-bottom: 1rem;
}

.youplay-news.news-grid .news-one .angled-img {
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 767px) {
  .youplay-news.news-grid .news-one .angled-img {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
.youplay-news.news-grid .news-one h3 {
  margin: 1.5rem 0;
}

.youplay-news.news-grid .news-one .read-more {
  display: block;
  margin-top: 1.5rem;
}

.youplay-news.news-grid .news-one .date {
  display: block;
}

.youplay-news.news-grid {
  margin-bottom: 6rem;
}

/*------------------------------------------------------------------

  News Post

-------------------------------------------------------------------*/
.youplay-post {
  margin-bottom: 2rem;
  margin-top: 6rem;
}

.youplay-post .news-one .angled-img,
.youplay-post .news-one .youplay-slider {
  display: inline-block;
  width: 50%;
  max-width: 350px;
}

.youplay-post .news-one .angled-img .img {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.youplay-post .news-one .youplay-slider {
  max-width: 350px;
}

.youplay-post .news-one .youplay-slider.pull-left {
  margin-right: 3rem;
}

.youplay-post .news-one .youplay-slider.pull-right {
  margin-left: 3rem;
}

.youplay-post .news-one .youplay-slider .angled-img {
  width: auto;
  margin: 0;
}

.youplay-post .news-one .youplay-slider .angled-img .img {
  -webkit-transform: skew(-8deg) scale(0.9) translateX(-5%);
  -ms-transform: skew(-8deg) scale(0.9) translateX(-5%);
  -o-transform: skew(-8deg) scale(0.9) translateX(-5%);
  transform: skew(-8deg) scale(0.9) translateX(-5%);
  -webkit-transform-origin: 100% 30%;
  -ms-transform-origin: 100% 30%;
  -o-transform-origin: 100% 30%;
  transform-origin: 100% 30%;
}

.youplay-post .news-one .angled-img {
  margin-right: 5rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
}

.youplay-post .news-one .youplay-carousel .angled-img {
  margin-right: 0;
  width: 100%;
}

.youplay-post .news-one .description {
  margin-bottom: 3rem;
  margin-top: 0;
}

.youplay-post .news-one .social-list {
  margin-top: 3rem;
}

/*------------------------------------------------------------------

  News in Side Block

-------------------------------------------------------------------*/
.youplay-side-news {
  text-align: left;
  padding: 1rem 0;
}

.youplay-side-news h4 {
  margin: 0;
  margin-top: 5px;
  font-weight: bold;
  font-size: 16px;
}

.youplay-side-news h4 a {
  text-decoration: none;
}

.youplay-side-news .date {
  margin-top: 8px;
  color: rgba(60, 7, 50, 0.65);
  font-size: 1.2rem;
}

/*------------------------------------------------------------------

  Store

-------------------------------------------------------------------*/
.youplay-store {
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.youplay-store .isotope-options {
  margin-top: 0;
}

.youplay-store .isotope-list a.item {
  margin-bottom: 2rem;
}

.youplay-store .isotope .isotope-options {
  margin-bottom: 2rem;
}

.youplay-store.store-grid .isotope .isotope-options {
  margin-bottom: 4rem;
}

.youplay-store.store-grid .isotope-list {
  margin-right: 1.5rem;
}

.youplay-store.store-grid .isotope .isotope-list .item {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .youplay-store.store-grid .isotope-list {
    margin-left: 1.4rem;
  }
}
/*------------------------------------------------------------------

  Search Page

-------------------------------------------------------------------*/
.youplay-search {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.youplay-search > form input {
  font-size: 2rem;
  padding: 1.5rem 3rem;
}

.youplay-search .angled-bg {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}

.youplay-search .angled-bg:hover, .youplay-search .angled-bg:focus {
  color: inherit;
}

.youplay-search .angled-bg .price {
  margin-top: 10px;
  margin-right: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}

.youplay-search .angled-bg .date {
  margin-top: 10px;
  margin-right: 20px;
}

/*------------------------------------------------------------------

  User Profile

-------------------------------------------------------------------*/
.youplay-user .angled-img {
  display: inline-block;
  vertical-align: top;
  width: 150px;
}

.youplay-user .angled-img .img > img {
  opacity: 1;
}

.youplay-user .angled-img:hover .img > img {
  opacity: 0.6;
}

.youplay-user .angled-img .icon {
  opacity: 0;
}

.youplay-user .angled-img:hover .icon {
  opacity: 0.8;
}

.youplay-banner .info .youplay-user h2 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.youplay-user .user-data {
  position: relative;
  display: inline-block;
  padding: 1.8rem 3rem;
  margin-left: -4px;
}

.youplay-user .user-data:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #243338;
  border: 1px solid #6b4529;
  z-index: 1;
}

.youplay-user .user-data > * {
  position: relative;
  z-index: 2;
}

.youplay-user .user-data .location {
  font-size: 1rem;
  color: #fff;
}

.youplay-user .user-data .activity,
.youplay-user .user-data .youplay-user-activity {
  margin-top: 1.3rem;
}

.youplay-user .user-data .activity > div,
.youplay-user .user-data .youplay-user-activity > div {
  display: inline-block;
  text-align: center;
}

.youplay-user .user-data .activity > div + div,
.youplay-user .user-data .youplay-user-activity > div + div {
  margin-left: 3rem;
}

.youplay-user .user-data .activity > div .title,
.youplay-user .user-data .youplay-user-activity > div .title {
  font-size: 1rem;
  color: #fff;
}

.youplay-user .user-data .activity > div .num,
.youplay-user .user-data .youplay-user-activity > div .num {
  font-size: 2.5rem;
  line-height: 1.2;
}

/* User Profile Navigation */
.youplay-user-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.youplay-user-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.youplay-user-navigation ul li {
  position: relative;
  display: block;
  float: left;
  z-index: 1;
}

.youplay-user-navigation ul li > a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  padding: 1.25rem 1.8rem;
  color: #3C0732;
  text-decoration: none;
  border-radius: 0;
  background: none;
  border: none;
}

.youplay-user-navigation ul li > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -o-transition: 0.3s background-color;
  transition: 0.3s background-color;
  z-index: -1;
}

@media (max-width: 767px) {
  .youplay-user-navigation ul li > a {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
}
.youplay-user-navigation ul li.active > a:after,
.youplay-user-navigation ul li:focus > a:after,
.youplay-user-navigation ul li:hover > a:after {
  background-color: rgba(60, 7, 50, 0.1);
}

.youplay-user-navigation ul li.active > a:after {
  background: rgba(60, 7, 50, 0.1);
  background-color: #fff;
}

.youplay-user-navigation + .info {
  padding-bottom: 50px;
}

/* User Messages */
.youplay-messages tbody > tr > td {
  padding: 1.5rem;
}

.youplay-messages tbody > tr {
  -o-transition: 0.3s background-color;
  transition: 0.3s background-color;
}

.youplay-messages .message-unread {
  background-color: rgba(60, 7, 50, 0.1);
}

.youplay-messages .message-from {
  width: 300px;
}

.youplay-messages .message-from .angled-img {
  width: 80px;
  float: left;
  margin-right: 20px;
}

.youplay-messages .message-from .angled-img img {
  width: auto;
  opacity: 1;
}

.youplay-messages .message-from .message-from-name {
  text-decoration: none;
  font-size: 1.6rem;
}

.youplay-messages .message-description .message-description-name {
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
}

.youplay-messages .message-description .message-excerpt {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.youplay-messages .message-action {
  position: relative;
  width: 90px;
}

.youplay-messages .message-action .messages-count {
  position: absolute;
  text-align: center;
  background-color: rgba(60, 7, 50, 0.1);
  border-radius: 4px;
  font-weight: bold;
  min-width: 30px;
  padding-left: 5px;
  padding-right: 5px;
  height: 30px;
  line-height: 30px;
  left: 50%;
  top: 50%;
  margin-top: -15px;
  margin-left: -15px;
}

.youplay-messages .message-action .message-delete {
  float: right;
  opacity: 0;
  -o-transition: 0.3s opacity, 0.3s color;
  transition: 0.3s opacity, 0.3s color;
}

.youplay-messages tbody > tr:hover .message-action .message-delete {
  opacity: 1;
}

/*------------------------------------------------------------------

  Login

-------------------------------------------------------------------*/
.youplay-login .youplay-banner .info h2 {
  font-size: 4rem;
  margin-top: 0;
  margin-bottom: 3rem;
}

.youplay-login .youplay-form form {
  margin-top: 2rem;
}

.youplay-login .youplay-form input {
  text-align: center;
}

.youplay-login .youplay-form button {
  margin: 0;
  width: 100%;
}

.youplay-login .youplay-form .social-list {
  margin: 0;
}

.full.youplay-login,
.full.youplay-login .youplay-banner {
  min-height: 510px;
}

/*------------------------------------------------------------------

  Clan Wars

-------------------------------------------------------------------*/
.youplay-match {
  display: inline-block;
  white-space: nowrap;
}

.youplay-match .angled-img {
  display: inline-block;
  vertical-align: top;
  width: 150px;
}

.youplay-match .angled-img .img > img {
  opacity: 1;
}

.youplay-match .youplay-match-data {
  position: relative;
  display: inline-block;
  padding: 1.8rem 3rem;
  margin-left: -4px;
  margin-right: -4px;
  height: 151px;
}

.youplay-match .youplay-match-data:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.youplay-match .youplay-match-data > * {
  position: relative;
  z-index: 2;
}

.youplay-match .youplay-match-data h3 {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-top: 3.5rem;
  margin-bottom: 0;
}

.youplay-match-left {
  text-align: right;
}

@media (min-width: 767px) and (max-width: 991px) {
  .youplay-match-left,
  .youplay-match-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .youplay-match-left,
  .youplay-match-right {
    text-align: center;
  }
}
.youplay-match-vs {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  margin-top: 4.7rem;
  margin-bottom: 4.7rem;
}

.youplay-match-vs:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.youplay-match-vs > * {
  position: relative;
  z-index: 2;
}

/* Game Maps */
.youplay-game-maps .youplay-single-map {
  padding-left: 1rem;
}

.youplay-game-maps .youplay-single-map:after, .youplay-game-maps .youplay-single-map:before {
  content: "";
  display: table;
  clear: both;
}

.youplay-game-maps .youplay-single-map .angled-img {
  max-width: 10rem;
  float: left;
}

.youplay-game-maps .youplay-single-map .angled-img img {
  opacity: 1;
}

.youplay-game-maps .youplay-single-map .youplay-single-map-description {
  margin-left: 13rem;
}

.youplay-game-maps .youplay-single-map + .youplay-single-map {
  margin-top: 2rem;
}

/* Matches List */
.youplay-matches-list .youplay-single-match {
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(60, 7, 50, 0.1);
}

.youplay-matches-list .youplay-single-match + .youplay-single-match {
  margin-top: 2rem;
}

.youplay-matches-list .youplay-single-match .youplay-match-title {
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
}

.youplay-matches-list .youplay-single-match:hover .youplay-match-title {
  color: #FF774F;
}

.youplay-matches-list .youplay-single-match .angled-img {
  max-width: 10rem;
}

.youplay-matches-list .youplay-single-match .angled-img img {
  opacity: 1;
}

.youplay-matches-list .youplay-single-match .youplay-match-count {
  float: right;
  font-size: 2rem;
  margin-top: 3rem;
  padding: 1rem 2rem;
}

.side-block .youplay-matches-list .youplay-single-match {
  text-decoration: none;
}

.side-block .youplay-matches-list .youplay-single-match + .youplay-single-match {
  margin-top: 1rem;
}

.side-block .youplay-matches-list .youplay-single-match .angled-img {
  max-width: 4rem;
}

.side-block .youplay-matches-list .youplay-single-match .youplay-match-count {
  font-size: 1rem;
  margin-top: 1rem;
  padding: 0.5rem;
}

/* Match Widget */
.youplay-match-widget {
  text-align: center;
}

.youplay-match-widget, .youplay-match-widget:hover {
  text-decoration: none;
}

.youplay-match-widget .youplay-match-title {
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
}

.youplay-match-widget:hover .youplay-match-title {
  color: #FF774F;
}

/*------------------------------------------------------------------

  Testimonials

-------------------------------------------------------------------*/
.testimonials blockquote {
  position: relative;
  background: rgba(60, 7, 50, 0.1);
  min-height: 150px;
  margin-bottom: 75px;
  padding: 20px 30px;
  border: none;
}

.testimonials blockquote:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-top: 10px solid rgba(60, 7, 50, 0.1);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.testimonials blockquote img {
  height: 50px;
  width: 50px;
  position: absolute;
  bottom: -70px;
  left: 50%;
  margin-left: -25px;
}

.testimonials a,
.testimonials a:hover,
.testimonials a:active,
.testimonials a:focus {
  text-decoration: none;
  color: inherit;
}

.testimonials blockquote p.clients-words {
  font-size: 14px;
}

.testimonials .author-name {
  font-size: 14px;
  text-align: right;
}

/*------------------------------------------------------------------

  Pricing Table

-------------------------------------------------------------------*/
.pricing-table {
  list-style: none;
  padding: 0 0 20px;
  margin: 0 0 15px;
  background: rgba(60, 7, 50, 0.05);
  text-align: center;
  -o-transition: 300ms background-color;
  transition: 300ms background-color;
  min-height: 520px;
  position: relative;
  text-align: center;
  border: 3px solid #c48d4c;
}

.pricing-table:hover {
  background-color: rgba(60, 7, 50, 0.07);
}

.pricing-table li {
  position: relative;
  padding: 20px 25px;
}

.pricing-table li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  display: block;
  width: 80%;
  height: 1px;
  background-color: rgba(60, 7, 50, 0.05);
}

.pricing-table li.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
}

.pricing-table li.plan-price:before,
.pricing-table li.plan-name:before,
.pricing-table li.plan-action:before {
  content: none;
}

.pricing-table li.plan-name {
  font-size: 24px;
  line-height: 24px;
  background: rgba(60, 7, 50, 0.05);
  margin-bottom: 10px;
}

.pricing-table li > strong {
  color: #FF774F;
}

.pricing-table li.plan-action {
  margin-top: 10px;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

/*------------------------------------------------------------------

  Slider Revolution

-------------------------------------------------------------------*/
.rs-youplay {
  position: relative;
  background: #fff;
}

.rs-youplay .tp-banner {
  overflow: hidden;
}

.rs-youplay .slotholder > .tp-bgimg:after,
.rs-youplay .slotholder > .slot .slotslide:after,
.rs-youplay .tp-arr-iwrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  background: #C6C3D8;
}

.rs-youplay h1, .rs-youplay .h1 {
  font-size: 3.7em;
  margin-top: 1em;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}

.rs-youplay .btn {
  font-size: 1em;
}

.rs-youplay .btn-group-lg > .btn,
.rs-youplay .btn-lg {
  font-size: 1.285em;
}

.rs-youplay .btn.btn-lg,
.rs-youplay .btn:focus.btn-lg,
.rs-youplay .btn:hover.btn-lg {
  padding: 0.8em 3em;
}

.rs-youplay .tp-bannertimer {
  top: auto;
  bottom: 0;
  height: 2px;
}

.rs-youplay .tp-caption a,
.rs-youplay .tp-caption a:hover {
  color: #3C0732;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.rs-youplay .btn {
  -o-transition: 0.3s color ease;
  transition: 0.3s color ease;
}

.rs-youplay .btn:hover,
.rs-youplay .btn.active,
.rs-youplay .tp-caption a:hover {
  color: #fff;
}

/*------------------------------------------------------------------

  Isotope

-------------------------------------------------------------------*/
.isotope .isotope-options {
  margin-bottom: 4rem;
}

.isotope .isotope-list .item {
  margin-bottom: 3rem;
}

.isotope .isotope-list .item .img-offset {
  -webkit-transform: skew(-8deg) translateX(-5%);
  -ms-transform: skew(-8deg) translateX(-5%);
  -o-transform: skew(-8deg) translateX(-5%);
  transform: skew(-8deg) translateX(-5%);
}

.isotope .isotope-list .item .img-offset + * {
  -webkit-transform: translateX(-5%);
  -ms-transform: translateX(-5%);
  -o-transform: translateX(-5%);
  transform: translateX(-5%);
}

/*------------------------------------------------------------------

  Footer

-------------------------------------------------------------------*/
footer {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #222;
  border-top: 1px solid #6b4529;
}

footer .widgets {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: #ededed;
  background: rgba(237, 237, 237, 0.45);
}

footer .social {
  text-align: center;
  overflow: hidden;
  color: #a85e05;
}

footer .social-icon:hover {
  color: #e48f4f;
}

footer .social .container {
  position: relative;
}

footer .social h3 {
  margin-top: 0;
  margin-bottom: 4rem;
}

footer .social .social-icons {
  margin: 0 auto;
  margin-bottom: -4rem;
}

footer .social .social-icons .social-icon {
  display: inline-block;
  margin-bottom: 4rem;
  margin-left: 15px;
  margin-right: 15px;
}

footer .social .social-icons .social-icon > a {
  color: inherit;
  text-decoration: none;
}

footer .social .social-icons .social-icon > a i {
  position: relative;
  display: inline-block;
  font-size: 5rem;
  padding: 25px 40px;
}

footer .social .social-icons .social-icon > a i:before {
  position: relative;
  z-index: 1;
}

footer .social .social-icons .social-icon > a i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #a85e05;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
}

footer .social .social-icons .social-icon > a span {
  display: block;
}

footer .social .social-icons .social-icon > a:hover i:after {
  color: #e48f4f;
}

footer .social .icons {
  margin: 0 auto;
  margin-bottom: 5rem;
  max-width: 600px;
}

footer .social .icons a {
  color: #a85e05;
  text-decoration: none;
}

footer .social .icons a i {
  position: relative;
  display: inline-block;
  font-size: 5rem;
  padding: 25px 40px;
}

footer .social .icons a i:before {
  position: relative;
  z-index: 1;
}

footer .social .icons a i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -o-transition: 0.3s background ease;
  transition: 0.3s background ease;
}

footer .social .icons a span {
  display: block;
}

footer .social .icons a:hover i:after {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
  footer .social .icons {
    margin-bottom: 1rem;
  }
  footer .social .icons > div {
    margin-bottom: 4rem;
  }
}
footer .copyright {
  position: relative;
  background: #000;
  border-top: 1px solid #6b4529;
  border-bottom: 1px solid #6b4529;
  text-align: center;
  padding: 2px 10px;
  font-size: 12px;
}

footer .copyright a {
  text-decoration: none;
}

/* Custom Fixes */
@media (max-width: 1199px) {
  .navbar .container {
    width: 100% !important;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .nav .label {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .container.sub-options {
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
.pricing-table .tiny {
  font-size: 12px;
}

.row .product-row {
  margin-left: auto;
  margin-right: auto;
}

.product-row span.label {
  font-size: 1.5em !important;
  padding: 3px 30px;
  position: absolute;
  top: 42px;
  right: 18px;
}

.product-row h4 {
  font-size: inherit;
  font-weight: bold;
}

.product-row h4 a {
  text-decoration: none;
}

.label-buy {
  border: 1px solid #a85e05;
  background: #222;
  border-radius: 0;
}

.label-buy:hover {
  background-color: #444;
}

.purchased {
  width: 0;
  transition: width 0.6s ease-in-out;
}

.purchased-out {
  width: 30%;
  transition: width 0.6s ease-in-out;
}

.youplay-select .invalid,
.form-group input.invalid {
  border: 1px solid #c00;
}

.detailedPurchase {
  width: 300px;
}

.detailedPurchase .purchased-out {
  width: 500px;
}

.detailedPurchase a {
  text-decoration: none;
}

@media (min-width: 1200px) {
  .nav-top-container {
    max-width: 1320px;
    width: 100%;
  }
}
.gmaps {
  height: 450px;
  width: 100%;
}

.create-form,
.forgot-form,
.login-form {
  background: #21477c;
  padding: 4rem;
  border: 3px solid #d2a74e;
  width: 500px;
  margin: 3rem auto;
}

.create-form {
  width: 800px;
}

.create-form select {
  border: none;
  background: #102242;
  color: #fff;
}

.create-form select,
.create-form .form-group,
.forgot-form .form-group,
.login-form .form-group {
  background: #102242;
  color: #fff;
}

select ::placeholder,
.form-group ::placeholder {
  color: #bbb;
}

.create-form select,
.form-group input {
  background: #1f1e1c;
  border: 1px solid #c87d43;
}

select.smaller {
  padding: 3px;
}

button.smaller {
  padding: 3px 8px;
}

button:not(.navbar-toggle) {
  min-width: 140px;
}

a.min-width {
  min-width: 140px;
}

.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}

.row.display-flex > [class*=col-] {
  display: flex;
}
