.ce-video {
  margin-bottom: 50px;
}
.ce-video__inner {
  position: relative;
  padding-top: 51%;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.ce-video__inner:hover .ce-video__security {
  opacity: 1;
  visibility: visible;
}
.ce-video__iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}
.ce-video__thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.ce-video__thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background-image: url("/app/uploads/2026/06/arrow-play-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}
.ce-video__thumbnail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: #00b2bb;
  outline: #00b2bb solid 2px;
  outline-offset: 5px;
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .ce-video__thumbnail::before {
    width: 132px;
    height: 132px;
  }
}
.ce-video__security {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(96, 1, 73, 0.95);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ce-video__security-content {
  max-width: 800px;
  padding: 20px;
}
.ce-video__description {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 36px;
}
.ce-video__description a {
  text-decoration: underline;
}
.ce-video__security-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  gap: 15px;
}
.ce-video__no-checked {
  color: #fff;
  font-size: 15px;
  font-weight: 200;
}
.ce-video__checked {
  color: #fff;
  font-size: 15px;
  font-weight: 200;
}
.ce-video__switcher label {
  display: inline-block;
  cursor: pointer;
  margin: 0;
}
.ce-video__switcher input {
  display: none;
}
.ce-video__switcher input:checked + .ce-video__selector {
  background-color: #00b2bb;
  border-color: #00b2bb;
}
.ce-video__switcher input:checked + .ce-video__selector::after {
  left: 36px;
}
.ce-video__switcher .ce-video__selector {
  position: relative;
  display: inline-block;
  height: 34px;
  width: 64px;
  border-radius: 5px;
  background-color: #878787;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
}
.ce-video__switcher .ce-video__selector::after {
  content: "";
  position: absolute;
  display: block;
  height: 24px;
  width: 24px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  left: 4px;
  top: 4px;
}
.ce-video__switcher.light input + .ce-video__selector {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: inset 4px 4px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 4px 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.ce-video__switcher.light input + .ce-video__selector::after {
  background-color: #878787;
}
.ce-video__switcher.light input:checked + .ce-video__selector {
  background-color: #00b2bb;
  border-color: #00b2bb;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ce-video__switcher.light input:checked + .ce-video__selector::after {
  background-color: #fff;
  left: 36px;
}
.ce-video--accepted .ce-video__security {
  opacity: 0 !important;
  visibility: hidden !important;
}
