@charset "UTF-8";

/* src/Ads/Regions/Region.scss */
.BRNDTS_R {
  position: absolute;
}
.BRNDTS_R .BRNDTS_RB {
  position: relative;
}
.BRNDTS_R .BRNDTS_RM {
  display: none;
  pointer-events: none;
}
.BRNDTS_PLANE .PLANE_POINT {
  position: absolute;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* src/Ads/Regions/Plugins/Animation/RegionAnimationPlugin.scss */
@keyframes slide-in-rtl {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translate(100%, 0);
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slide-out-ltr {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
  }
  99% {
    visibility: visible;
    opacity: 0;
    transform: translate(100%, 0);
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes slide-in-btt {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 100%);
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slide-out-ttb {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 100%);
  }
}
@keyframes slide-in-ttb {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translate(0, -100%);
  }
  1% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slide-out-btt {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translate(0, -100%);
  }
}
@keyframes visible-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes visible-out {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
.ANIMATE {
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-fill-mode: forwards;
}
.ANIMATE[data-animation=SLIDE_IN_TOP_RIGHT][data-state=visible] {
  animation-delay: 0s;
  animation-duration: 1s;
  animation-name: slide-in-rtl;
}
.ANIMATE[data-animation=SLIDE_OUT_TOP_RIGHT][data-state=hidden] {
  animation-name: slide-out-ltr;
}
.ANIMATE[data-animation=SLIDE_IN_BOTTOM_RIGHT][data-state=visible] {
  animation-delay: 0s;
  animation-duration: 1s;
  animation-name: slide-in-btt;
}
.ANIMATE[data-animation=SLIDE_OUT_BOTTOM_RIGHT][data-state=hidden] {
  animation-name: slide-out-ttb;
}
.ANIMATE[data-animation=SLIDE_IN_TOP_CENTER][data-state=visible] {
  animation-delay: 0s;
  animation-duration: 1s;
  animation-name: slide-in-ttb;
}
.ANIMATE[data-animation=SLIDE_OUT_TOP_CENTER][data-state=hidden] {
  animation-name: slide-out-btt;
}
.ANIMATE[data-animation=OPACITY_IN][data-state=visible] {
  animation-delay: 0s;
  animation-duration: 1s;
  animation-name: visible-in;
}
.ANIMATE[data-animation=OPACITY_OUT][data-state=hidden] {
  animation-delay: 0s;
  animation-duration: 1s;
  animation-name: visible-out;
}

/* src/Ads/Regions/Plugins/Border/RegionBorderPlugin.scss */
.BRNDTS_R_FTH {
  mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%),
    linear-gradient(
      90deg,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  mask-composite: intersect;
}
.BRNDTS_R_B {
  border-width: 2px !important;
  border-style: solid !important;
  border-image:
    linear-gradient(
      135deg,
      var(--brndts-secondary-color, --brndts-primary-color, rgba(38, 226, 148, 0.5137254902)),
      var(--brndts-primary-color, rgba(2, 74, 182, 0.4784313725))) 1 !important;
  box-shadow: 0px 4px 4px rgba(30, 30, 30, 0.25) !important;
  border-radius: 5px !important;
}

/* src/Ads/Regions/Plugins/Debug/RegionDebugPlugin.scss */
.REGION_DEBUG_LABEL {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  position: absolute;
  color: black;
  padding-block: 4px;
  width: 100%;
  border-radius: 4px;
  bottom: 97%;
  letter-spacing: 1px;
}
.REGION_DEBUG_VALUE,
.REGION_DEBUG_CLASS {
  font-size: 40%;
  font-weight: bold;
  padding: 2px 4px;
}

/* src/Ads/Providers/BRNDTSDefault/BRNDTSDefaultProvider.scss */
.BRNDTS_default_content {
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(
      135deg,
      #26e293,
      #024ab6);
}
.BRNDTS_default_content .box {
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 8px;
  border: 3px solid whitesmoke;
  border-radius: 5px;
  padding: 8px;
}
.BRNDTS_default_content .icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 90%;
}
.BRNDTS_default_content .icon svg {
  max-height: 45px;
}

/* src/Ads/Providers/DebugProvider/DebugProvider.scss */
.BRNDTS_debug_content {
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(
      135deg,
      #26e293,
      #024ab6);
  border: 1px dashed red;
}
.BRNDTS_debug_content .box {
  color: var(--brndts-primary-color, rgba(2, 74, 182, 0.4784313725));
}

/* src/Ads/VideoAds/Media/utils.scss */
.swapable {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.25s;
}
.swapable.is-active {
  position: relative !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}

/* src/Ads/VideoAds/PresentationMode/Basic/BasicMode.scss */
#BRNDTS_WPR {
  width: 100%;
  height: 100%;
  container-type: size;
  container-name: brndts_viewport;
  display: flex;
  flex-direction: column;
  padding-bottom: 56.25%;
}
#BRNDTS_WPR[data-fullscreen=true],
#BRNDTS_WPR:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
}
#BRNDTS {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  padding-bottom: 56.25%;
  position: relative;
}
#BRNDTS_ARW_BM {
  background-size: cover;
}
#BRNDTS[data-flex-centered=true] {
  justify-content: center;
}
#BRNDTS_CTL {
  z-index: 1;
}
#LOGO img {
  margin-top: 0 !important;
}
@container brndts_viewport (min-aspect-ratio: 1/1) {
  #BRNDTS[data-ad-orientation=horizontal] {
    flex-direction: row;
    align-items: center;
  }
  #BRNDTS[data-ad-orientation=vertical] {
    flex-direction: column;
    align-items: center;
  }
  #BRNDTS[data-ad-orientation=vertical] #BRNDTS_PLAYER,
  #BRNDTS[data-ad-orientation=vertical] #BRNDTS_PLAYER video,
  #BRNDTS[data-ad-orientation=vertical] #BRNDTS_PLAYER iframe {
    transform-origin: top center;
  }
  #BRNDTS[data-ad-orientation=horizontal] #BRNDTS_ARW_BM {
    display: flex;
    flex-direction: column !important;
  }
  #BRNDTS[data-ad-orientation=horizontal] #BRNDTS_PLAYER,
  #BRNDTS[data-ad-orientation=horizontal] #BRNDTS_PLAYER video,
  #BRNDTS[data-ad-orientation=horizontal] #BRNDTS_PLAYER iframe {
    transform-origin: left center;
  }
  #BRNDTS[data-ad-orientation=vertical] #BRNDTS_ARW_BM {
    flex-direction: row-reverse !important;
    height: 100%;
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO {
    margin-top: var(--gap, 24px);
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO #BRNDTS_ARW_BM {
    padding-left: var(--margin, 24px) !important;
    padding-right: var(--margin, 24px) !important;
    width: fit-content !important;
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO #BRNDTS[data-flex-centered=true] #BRNDTS_ARW_BM {
    flex-direction: row-reverse !important;
    width: fit-content !important;
    height: 100% !important;
    padding-right: var(--cross-margin, 24px);
    padding-left: var(--cross-margin, 24px);
    margin-top: var(--cross-margin, 24px);
    margin-bottom: var(--cross-margin, 24px);
  }
  #BRNDTS[data-ad-orientation=vertical] #LOGO {
    margin-right: var(--gap, 24px);
  }
  #BRNDTS[data-flex-centered=true][data-ad-orientation=horizontal] #BRNDTS_PLAYER {
    margin-left: var(--margin, 24px);
    margin-right: 0;
    margin-top: var(--cross-margin, 24px);
    margin-bottom: var(--cross-margin, 24px);
  }
}
#BRNDTS_PLAYER {
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: all;
  order: 1;
  transition: all 0.3s ease;
}
#BRNDTS[data-flex-centered=true] #BRNDTS_PLAYER {
  margin: var(--cross-margin, 24px);
}
@container brndts_viewport (max-aspect-ratio: 1/1) {
  #BRNDTS[data-flex-centered=true] #BRNDTS_PLAYER {
    margin-top: var(--margin, 24px);
    margin-bottom: 0;
    margin-left: var(--cross-margin, 24px);
    margin-right: var(--cross-margin, 24px);
  }
  #BRNDTS[data-ad-orientation=vertical] #LOGO {
    margin-top: var(--gap, 24px);
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO {
    margin-right: var(--gap, 24px);
  }
  #BRNDTS_ARW_BM {
    padding-top: var(--margin, 24px);
    padding-bottom: var(--margin, 24px) !important;
    padding-inline: var(--cross-margin, 24px);
  }
  #BRNDTS[data-flex-centered=true] #BRNDTS_ARW_BM {
    margin-left: var(--cross-margin, 24px);
    margin-right: var(--cross-margin, 24px);
  }
}
#BRNDTS_PLAYER video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: all;
}
#BRNDTS_PLAYER iframe {
  overflow: hidden;
  pointer-events: all;
}
#BRNDTS_PLAYER iframe[id^=youtube-] {
  height: 100% !important;
  overflow: hidden;
  pointer-events: all;
}
#BRNDTS_ARW_BM {
  display: flex;
  position: relative;
  order: 2;
  z-index: 1;
}
#BRNDTS[data-ad-orientation=vertical] #BRNDTS_ARW_BM {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#BRNDTS[data-ad-orientation=horizontal] #BRNDTS_ARW_BM {
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@container brndts_viewport (max-aspect-ratio: 1/1) {
  #BRNDTS {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#BRNDTS_SAR_CORE_AD {
  display: flex;
  align-items: center;
  justify-content: center;
}
#LOGO {
  display: flex;
  align-items: center;
  justify-content: center;
}
@container brndts_viewport (max-width: 1000px) {
  #BRNDTS {
    --gap: 24px;
    --margin: 24px;
    --cross-margin: 24px;
  }
  @container brndts_viewport (min-aspect-ratio: 1/1) {
    #LOGO {
      width: 100px;
      height: 30px;
    }
    #LOGO img {
      object-fit: contain;
      max-width: 100px;
      max-height: 30px;
    }
  }
  @container brndts_viewport (max-aspect-ratio: 1/1) {
    #BRNDTS[data-logo-type=vertical] #LOGO {
      width: 60px;
      height: 50px;
    }
    #BRNDTS[data-logo-type=horizontal] #LOGO {
      width: 100px;
      height: 30px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO img {
      max-width: 60px;
      max-height: 50px;
    }
    #BRNDTS[data-logo-type=horizontal] #LOGO img {
      max-width: 100px;
      max-height: 30px;
    }
  }
}
@container brndts_viewport (min-width: 1001px) and (max-width: 1600px) {
  #BRNDTS {
    --gap: 40px;
    --margin: 40px;
    --cross-margin: 24px;
  }
  @container brndts_viewport (min-aspect-ratio: 1/1) {
    #BRNDTS[data-logo-type=horizontal] #LOGO {
      width: 130px;
      height: 40px;
    }
    #BRNDTS[data-logo-type=horizontal] #LOGO img {
      max-width: 130px;
      max-height: 40px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO {
      width: 85px;
      height: 70px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO img {
      width: 85px;
      height: 70px;
    }
  }
  @container brndts_viewport (max-aspect-ratio: 1/1) {
    #BRNDTS[data-logo-type=horizontal] #LOGO {
      width: 130px;
      height: 40px;
    }
    #BRNDTS[data-logo-type=horizontal] #LOGO img {
      max-width: 130px;
      max-height: 40px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO {
      width: 85px;
      height: 70px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO img {
      width: 85px;
      height: 70px;
    }
  }
}
@container brndts_viewport (min-width: 1601px) and (max-width: 1920px) {
  #BRNDTS {
    --gap: 64px;
    --margin: 64px;
    --cross-margin: 24px;
  }
  @container brndts_viewport (min-aspect-ratio: 1/1) {
    #BRNDTS[data-logo-type=horizontal] #LOGO {
      width: 230px;
      height: 70px;
    }
    #BRNDTS[data-logo-type=horizontal] #LOGO img {
      width: 230px;
      height: 70px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO {
      width: 150px;
      height: 125px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO img {
      width: 150px;
      height: 125px;
    }
  }
  @container brndts_viewport (max-aspect-ratio: 1/1) {
    #BRNDTS[data-logo-type=horizontal] #LOGO {
      width: 230px;
      height: 70px;
    }
    #BRNDTS[data-logo-type=horizontal] #LOGO img {
      width: 230px;
      height: 70px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO {
      width: 150px;
      height: 125px;
    }
    #BRNDTS[data-logo-type=vertical] #LOGO img {
      width: 150px;
      height: 125px;
    }
  }
}
@container brndts_viewport (min-width: 1921px) {
  #BRNDTS {
    --gap: calc(64 * 100cqw / 1920);
    --margin: calc(64 * 100cqw / 1920);
    --cross-margin: calc(24 * 100cqw / 1920);
  }
  @container brndts_viewport (min-aspect-ratio: 1/1) {
    #LOGO {
      width: 11.9791666667cqw;
      height: 3.6458333333cqw;
    }
    #LOGO img {
      max-width: 11.9791666667cqw;
      max-height: 3.6458333333cqw;
    }
  }
  @container brndts_viewport (max-aspect-ratio: 1/1) {
    #LOGO {
      width: 7.8125cqw;
      height: 6.5104166667cqw;
    }
    #LOGO img {
      max-width: 7.8125cqw;
      max-height: 6.5104166667cqw;
    }
  }
}
@container brndts_viewport (min-aspect-ratio: 1/1) {
  #BRNDTS[data-ad-orientation=horizontal] #LOGO {
    margin-top: var(--gap, 24px);
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO #BRNDTS_ARW_BM {
    padding-top: var(--margin, 24px) !important;
    padding-left: var(--margin, 24px) !important;
    padding-right: var(--margin, 24px) !important;
    padding-bottom: var(--margin, 24px) !important;
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO #BRNDTS[data-flex-centered=true] #BRNDTS_ARW_BM {
    flex-direction: row-reverse !important;
    width: fit-content !important;
    height: 100% !important;
    padding: var(--cross-margin, 24px);
    margin: 0 !important;
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO #BRNDTS[data-flex-centered=true] #LOGO {
    margin: 0;
  }
  #BRNDTS[data-ad-orientation=vertical] #LOGO {
    margin-right: var(--gap, 24px);
  }
}
@container brndts_viewport (max-aspect-ratio: 1/1) {
  #BRNDTS[data-ad-orientation=vertical] #LOGO {
    margin-top: var(--gap, 24px);
  }
  #BRNDTS[data-ad-orientation=horizontal] #LOGO {
    margin-right: var(--gap, 24px);
  }
  #BRNDTS_ARW_BM {
    padding-top: var(--margin, 24px);
    padding-bottom: var(--margin, 24px) !important;
    padding-inline: var(--cross-margin, 24px);
  }
  #BRNDTS[data-flex-centered=true] #BRNDTS_ARW_BM {
    margin-left: var(--cross-margin, 24px);
    margin-right: var(--cross-margin, 24px);
  }
}
@container brndts_viewport (min-aspect-ratio: 1/1) {
  #BRNDTS_ARW_BM {
    padding-top: var(--margin, 24px) !important;
    padding-left: var(--margin, 24px) !important;
    padding-right: var(--margin, 24px) !important;
    padding-bottom: var(--margin, 24px) !important;
  }
  #BRNDTS[data-flex-centered=true] #BRNDTS_ARW_BM {
    flex-direction: row-reverse !important;
    width: fit-content !important;
    height: 100% !important;
    padding: var(--cross-margin, 24px);
    margin: 0 !important;
  }
  #BRNDTS[data-flex-centered=true] #LOGO {
    margin: 0;
  }
}
@container brndts_viewport (max-aspect-ratio: 1/1) {
  #BRNDTS_ARW_BM {
    padding-top: var(--margin, 24px);
    padding-bottom: var(--margin, 24px) !important;
    padding-inline: var(--cross-margin, 24px);
  }
  #BRNDTS[data-flex-centered=true] #BRNDTS_ARW_BM {
    margin-left: var(--cross-margin, 24px);
    margin-right: var(--cross-margin, 24px);
  }
}

/* src/Ads/VideoAds/UI/Controls/Controls.scss */
#BRNDTS_CTL {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  container: BRNDTS_CTL/size;
  z-index: 9996;
}

/* src/Ads/VideoAds/UI/Controls/Components/Buttons/ControlBarButton.scss */
.BRNDTS_BTN {
  border: 0;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  pointer-events: all;
  color: whitesmoke;
}
.BRNDTS_BTN[data-state=pressed] {
  background-color: transparent;
}
.BRNDTS_BTN:hover {
  background-color: transparent;
  background-image: none;
  border: 0;
  outline: none;
  box-shadow: none;
  border-color: transparent;
}
.BRNDTS_BTN_FS_TOP {
  padding-left: 8px;
  padding-right: 8px;
}
.BRNDTS_BTN_FS_BOT {
  width: 40px;
}

/* src/Ads/VideoAds/UI/Controls/Components/ProgressIndicator.scss */
.progress-circle {
  outline: none;
  pointer-events: none;
}
.progress-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  vertical-align: top;
}
.progress-circle .bg {
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 3;
  fill: none;
}
.progress-circle .indicator {
  stroke: #2388ff;
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
  transition: stroke-dashoffset 0.35s ease;
}
.progress-banner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  pointer-events: all;
}
.progress-banner:hover .progress-label,
.progress-banner:focus-within .progress-label {
  opacity: 1;
  transform: translateX(-8px) translateY(-50%);
  pointer-events: auto;
}
.progress-label {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateX(-4px) translateY(-50%);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
  font-family: Exo;
  font-weight: 500;
  font-style: Medium;
  font-size: 10px;
  line-height: 6px;
  letter-spacing: 0.1px;
  text-align: center;
}

/* src/Ads/VideoAds/UI/Controls/Components/TopBar/ControlTopBar.scss */
#BRNDTS_CTLTB {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  height: 60px;
  width: 100%;
  pointer-events: none;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 12px;
  padding-right: 12px;
}
[data-debug=true] #BRNDTS_CTLTB {
  outline: 1px solid purple;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
}
[data-debug=true] #BRNDTS_CTLTB::before {
  opacity: 0.5;
  content: attr(id);
  position: absolute;
  height: 16px;
  font-size: 8px;
  top: 0px;
  left: 0;
  background-color: purple;
  padding: 4px 4px;
  border-radius: 4px;
  color: whitesmoke;
}

/* src/Ads/VideoAds/UI/Controls/Components/ProgressBar/ProgressBar.scss */
.BRNDTS_PRGS_I {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: all;
}
.BRNDTS_PRGS_I .BRNDTS_PRGS_R {
  height: 100%;
  position: absolute;
}
.BRNDTS_PRGS {
  width: 100%;
  height: 4px;
  background-color: rgba(98, 96, 96, 0.8509803922);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 4px;
  align-self: flex-end;
}

/* src/Ads/VideoAds/UI/Controls/Components/BottomBar/ControlBottomBar.scss */
#BRNDTS_CTLBB {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  height: 39px;
  width: 100%;
  pointer-events: none;
  padding-bottom: 0px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
#BRNDTS_CTLBB[data-type=DM_CTLBB] {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  height: clamp(48px, 3rem, 51px);
}
#BRNDTS_CTLBB[data-type=DM_CTLBB] .BRNDTS_BTN {
  padding: 8px;
  margin: 0.25rem;
}
#BRNDTS_CTLBB[data-type=N_CTLBB] {
  padding-top: 0;
  padding-right: 100px;
  padding-left: 130px;
  height: 70px;
  justify-content: start;
}
#BRNDTS_CTLBB[data-type=N_CTLBB] .BRNDTS_CTLBB_TOP {
  height: 42px;
  display: flex;
  align-items: center;
}
[data-brndts_d=desktop][data-fullscreen=true] [data-type=N_CTLBB] {
  height: 84px !important;
  padding-left: 170px !important;
}
[data-brndts_d=desktop][data-fullscreen=true] [data-type=N_CTLBB] .BRNDTS_CTLBB_TOP {
  height: 55px !important;
}
@container BRNDTS_CTL (width >= 640px) {
  #BRNDTS_CTLBB[data-type=DM_CTLBB] {
    height: 4rem;
    padding: 0 0.25rem;
  }
  #BRNDTS_CTLBB[data-type=DM_CTLBB] .BRNDTS_BTN {
    padding-left: 8px;
    padding-right: 8px;
  }
  #BRNDTS_CTLBB[data-type=DM_CTLBB] #BRNDTS_FSB {
    margin: 0.25rem;
    width: 3rem;
  }
}
@media (max-width: 667px) and (orientation: portrait), (max-height: 667px) and (orientation: landscape) {
  @container BRNDTS_CTL (width <= 390px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 58px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (390px < width <= 667px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      margin-bottom: 82px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (width > 667px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      margin-bottom: 82px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (height >= 667px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      margin-bottom: 82px !important;
      padding-left: 12px !important;
      padding-right: 12px !important;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
}
@media (min-width: 668px) and (max-width: 819px) and (orientation: portrait), (min-height: 668px) and (max-height: 819px) and (orientation: landscape) {
  @container BRNDTS_CTL (width <= 390px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 58px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (390px < width <= 667px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      margin-bottom: 82px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (width > 667px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      margin-bottom: 82px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (height >= 667px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      margin-bottom: 82px !important;
      padding-left: 12px !important;
      padding-right: 12px !important;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (width <= 390px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 48px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 48px;
      height: 48px;
    }
  }
  @container BRNDTS_CTL (390px < width <= 667px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 48px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 48px;
      height: 48px;
    }
  }
  @container BRNDTS_CTL (667px < width <= 819px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 48px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (width > 819px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 48px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
}
@media (min-width: 820px) and (max-width: 1279px) and (orientation: portrait), (min-height: 820px) and (max-height: 1279px) and (orientation: landscape) {
  @container BRNDTS_CTL (width <= 390px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 58px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (390px < width <= 667px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      margin-bottom: 82px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (width > 667px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      margin-bottom: 82px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (height >= 667px) {
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      margin-bottom: 82px !important;
      padding-left: 12px !important;
      padding-right: 12px !important;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    [data-brndts_d=smartphone] #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (width <= 390px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 40px;
      height: 40px;
    }
  }
  @container BRNDTS_CTL (390px < width <= 667px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 40px;
      height: 40px;
    }
  }
  @container BRNDTS_CTL (667px < width <= 852px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 40px;
      height: 40px;
    }
  }
  @container BRNDTS_CTL (width > 820px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 40px;
      height: 40px;
    }
  }
}
@media (min-width: 1280px) {
  @container BRNDTS_CTL (width <= 390px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 40px;
      height: 40px;
    }
  }
  @container BRNDTS_CTL (390px < width <= 667px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 40px;
      height: 40px;
    }
  }
  @container BRNDTS_CTL (667px < width <= 852px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 40px;
      height: 40px;
    }
  }
  @container BRNDTS_CTL (853px < width <= 1900px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 12px;
      padding-right: 12px;
      height: 40px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 44px;
    }
  }
  @container BRNDTS_CTL (width >= 1900px) {
    #BRNDTS_CTLBB[data-type=YT_CTLBB] {
      padding-left: 24px;
      padding-right: 24px;
      height: 54px;
      margin-bottom: 0;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] .BRNDTS_BTN {
      padding-left: 8px;
      padding-right: 8px;
    }
    #BRNDTS_CTLBB[data-type=YT_CTLBB] #BRNDTS_FSB {
      width: 54px;
    }
  }
}

/* src/Ads/VideoAds/UI/Interface.scss */
#BRNDTS .picture {
  border: 12px solid #2d2d2d;
  border-radius: 1px;
  box-shadow:
    0 0 0 1px #1a1a1a,
    0 0 0 12px #3a3a3a,
    0 0 0 13px #1a1a1a,
    5px 5px 15px rgba(0, 0, 0, 0.3);
  background-color: white;
}
#BRNDTS video {
  width: 100%;
  height: 100%;
  pointer-events: all;
}
#BRNDTS .transition {
  transition: all 0.3s ease-in-out;
}
#BRNDTS[data-brndts_control=brndts_fs] video::-webkit-media-controls-fullscreen-button {
  display: none;
}
#BRNDTS[data-fullscreen=true][data-basic=false] video {
  height: 100vh !important;
}
#BRNDTS[data-fullscreen_fb=true] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000000;
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
#BRNDTS[data-fullscreen_fb=true] video {
  height: 100%;
}
#BRNDTS_WPR[data-fullscreen_fb=true] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000000;
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
}
#BRNDTS_WPR[data-fullscreen_fb=true] #BRNDTS {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0 !important;
}
#BRNDTS_WPR[data-fullscreen_fb=true] video {
  width: 100%;
  height: 100%;
}

/* src/Ads/VideoAds/UI/Backdrop/Backdrop.scss */
#BRNDTS_BKD {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease-in-out;
}

/* src/Ads/VideoAds/VideoAds.scss */
[data-debug=true] #BRNDTS_ARW_BM,
[data-debug=true] #BRNDTS_ARW_NBM,
[data-debug=true] #BRNDTS_AERW {
  outline: 1px solid green;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
}
[data-debug=true] #BRNDTS_ARW_BM::before,
[data-debug=true] #BRNDTS_ARW_NBM::before,
[data-debug=true] #BRNDTS_AERW::before {
  opacity: 0.5;
  content: attr(id);
  position: absolute;
  height: 16px;
  font-size: 8px;
  top: -16px;
  left: 0;
  background-color: green;
  padding: 4px 4px;
  border-radius: 4px;
}
[data-debug=true] .BRNDTS_AR {
  outline: 1px solid red;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
}
[data-debug=true] .BRNDTS_AR::before {
  opacity: 0.5;
  content: attr(id);
  position: absolute;
  height: 16px;
  font-size: 8px;
  top: -16px;
  left: 0;
  background-color: red;
  padding: 4px 4px;
  border-radius: 4px;
}

/* src/main.scss */
/*# sourceMappingURL=index.css.map */