/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("https://canada-d053.kxcdn.com/wp-content/themes/splash-child/assets/bare/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.r7-slider .owl-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.r7-slider .owl-dot {
  padding: 5px;
}

.r7-slider * {
  color: white;
}

.r7-slider:not(.owl-loaded) {
  height: 80vh;
  height: calc(100vh - 120px);
  overflow: hidden;
}

.r7-slider__slide, .r7-slider {
  min-height: 500px;
  height: calc(100vh - 120px);
  max-height: 670px;
}

.r7-slider__slide {
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.r7-slider__slide-inner {
  flex: 1;
  max-width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 50px 0;
  z-index: 2;
}

.r7-slider__slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
}

.r7-slider__link {
  font-size: 16px;
  color: white;
  display: inline-flex;
  align-items: center;
}

.r7-slider__link-icon {
  margin-top: -2px;
  margin-left: 3px;
}

.r7-slider__title {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 41px;
  font-weight: 500;
}

@media screen and (min-width: 700px) {
  .r7-slider__title {
    font-size: 62px;
    line-height: 54px;
    font-weight: 400;
  }
}

.r7-slider__title, .r7-slider__subtitle {
  font-family: Roboto, sans-serif;
}

.r7-slider__subtitle {
  font-weight: 300;
  font-size: 19px;
  line-height: 22px;
  padding-bottom: 30px;
  letter-spacing: 1px;
}

.r7-slider__subtitle, .r7-slider__link {
  font-family: "Roboto Condensed", sans-serif;
}

.r7-slider__title, .r7-slider__link {
  text-transform: uppercase;
}

.r7-slider__container {
  position: relative;
}

.r7-slider__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 700px) {
  .r7-slider__controls {
    display: none;
  }
}

.r7-slider__controls .arrow-left,
.r7-slider__controls .arrow-right {
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  height: 80px;
  cursor: pointer;
}

.r7-slider__controls .arrow-left path, .r7-slider__controls .arrow-left,
.r7-slider__controls .arrow-right path,
.r7-slider__controls .arrow-right {
  transition: 0.5s all ease;
}

.r7-slider__controls .arrow-left:hover,
.r7-slider__controls .arrow-right:hover {
  background: white;
}

.r7-slider__controls .arrow-left:hover path,
.r7-slider__controls .arrow-right:hover path {
  fill: #d5202a;
}

.r7-slider__controls .arrow-left {
  left: 0;
}

.r7-slider__controls .arrow-right {
  right: 0;
}

.r7-gallery {
  height: 500px;
  overflow: hidden;
  margin-bottom: 50px;
}

.r7-gallery__container {
  position: relative;
}

.r7-gallery__slide {
  height: 500px;
  background-size: cover;
  background-position: center;
}

.r7-gallery__controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
}

.r7-gallery__controls .arrow-left {
  left: 0;
}

.r7-gallery__controls .arrow-right {
  right: 0;
}

.r7-gallery__controls .arrow-left,
.r7-gallery__controls .arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid white;
  width: 45px;
  height: 45px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.5s all ease;
}

.r7-gallery__controls .arrow-left:hover,
.r7-gallery__controls .arrow-right:hover {
  background: black;
}

.r7-countries-container {
  padding: 40px 0;
}

.r7-countries-container .stm-player-list-wrapper {
  margin-top: 40px;
}

.r7-countries-container .image-container {
  background: #eeeeee;
  min-height: 300px;
  width: 300px;
  max-width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
}

.r7-countries-container .image-container img {
  width: 200px;
  max-width: 90%;
}

.stm-tickets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.stm-tickets__post {
  position: relative;
  width: 100%;
  height: 260px;
  margin-bottom: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 40px #bbbcd3 !important;
  cursor: pointer;
  transition: ease all 0.2s;
  overflow: hidden;
}

.stm-tickets__post:hover .stm-tickets__post-content {
  transform: translateY(-100px);
}

.stm-tickets__post:hover .stm-tickets__post-content-description {
  transform: translateY(-100px);
}

.stm-tickets__post:hover:after {
  background: rgba(0, 0, 0, 0.8);
}

.stm-tickets__post:after {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: ease all 0.5s;
}

.stm-tickets__post a {
  display: flex;
  height: 100%;
  align-items: flex-end;
  text-decoration: none;
  padding: 20px;
}

.stm-tickets__post-content {
  width: 100%;
  position: relative;
  z-index: 20;
  transition: ease transform 0.2s;
}

.stm-tickets__post-content * {
  color: #fff;
}

.stm-tickets__post-content-description {
  position: absolute;
  z-index: 20;
  top: 100%;
  transition: ease transform 0.4s;
}

.stm-tickets__post-content-description p {
  width: 100%;
  color: #fff;
}

.CF5f46b866bb33b {
  margin: 1em 0;
}

.CF5f46b866bb33b .col-sm-6,
.CF5f46b866bb33b .col-sm-12 {
  padding-left: 2.5px !important;
  padding-right: 2.5px !important;
}

.CF5f46b866bb33b .form-group {
  margin-bottom: 5px !important;
}

.CF5f46b866bb33b input[type="text"],
.CF5f46b866bb33b input[type="email"] {
  height: 40px;
  background-color: #f7f7f7;
  border: 0px solid rgba(204, 204, 204, 0);
  box-shadow: none;
  color: black;
  font-size: 16px;
}

.CF5f46b866bb33b input[type="text"]::placeholder,
.CF5f46b866bb33b input[type="email"]::placeholder {
  color: #a81e22;
}

.CF5f46b866bb33b .checkboxes {
  margin: 20px 0 !important;
}

.CF5f46b866bb33b .checkboxes label {
  color: black;
  opacity: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.CF5f46b866bb33b .checkboxes > div {
  display: flex;
  flex-wrap: wrap;
}

.CF5f46b866bb33b .checkboxes .checkbox {
  width: 50%;
  margin: 10px 0 !important;
}

.CF5f46b866bb33b input[type="submit"] {
  width: 100% !important;
  background-color: #a32020 !important;
  color: white !important;
  letter-spacing: 1px !important;
  font-family: Roboto Condensed !important;
  font-weight: 300 !important;
  border: none;
}

.CF5f46b866bb33b .consent label {
  color: black;
  opacity: 1;
  font-weight: 500;
}

.caldera-grid .alert {
  margin-top: 20px;
}

@media screen and (min-width: 955px) {
  .store-icon-menu-item {
    float: right;
  }
}

.store-icon-menu-item a {
  height: 100%;
}

.store-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.store-icon svg {
  max-width: 25px;
}

.store-icon svg path {
  fill: white;
}

#CF59633ae4854db_1-row-2 .col-sm-10 {
  max-width: 300px;
}

#cookie-notice {
  padding: 20px 0;
  background: linear-gradient(to right, #d8202a, #7d1317) !important;
}

.cookie-notice-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: center;
}

@media screen and (max-width: 499px) {
  .cookie-notice-container {
    align-items: flex-start;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cookie-notice-container #cn-notice-text {
    display: block;
    grid-column: span 2;
    padding-bottom: 20px;
  }
  .cookie-notice-container a {
    margin: 5px;
  }
  .cookie-notice-container a:first-of-type {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 500px) {
  .cookie-notice-container {
    flex-direction: row;
  }
  .cookie-notice-container #cn-notice-text {
    padding-right: 50px;
    padding-left: 40px;
  }
}

#cn-notice-text {
  padding-right: 20px;
}

#cn-accept-cookie,
#cn-more-info {
  background-color: black !important;
  background-image: none !important;
  padding: 10px 20px !important;
  border-radius: 0;
  border: none;
  box-shadow: none !important;
  text-shadow: none !important;
}

.rugbyCanadaLogo a,
.menu-item-7476 a {
  line-height: initial !important;
  max-height: 100%;
}

.rugby7s-logos {
  background: black;
}

#m_f_switcher ul {
  padding-left: 20px !important;
}

#m_f_switcher ul li {
  margin-right: 2% !important;
}

body .owl-carousel .owl-item {
  padding: 0 !important;
}

.menu-item button.fevo-button {
  border: none;
  height: 70px;
  width: calc(100% + 28px);
  padding: 0 14px;
}

.menu-item button.fevo-button:hover {
  color: white;
}

.stm-header
.stm-main-menu
.stm-main-menu-unit
.header-menu
> li.menu-item
a[href="#fevo-ticket"] {
  padding: 0 !important;
}

@media screen and (min-width: 400px) {
  .cn-button {
    white-space: nowrap;
  }
}

.rugby7s-top-bar-container {
  position: relative;
  z-index: 100;
}

#stm-top-bar {
  position: relative;
  z-index: 1;
}

.wpb_wrapper .vc_wp_text .textwidget p {
  font-size: 17px;
  line-height: 24px;
}