.plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 970px;
  padding: 85px 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 8px 10px 0px #d8dfeb;
  box-shadow: 0px 8px 10px 0px #d8dfeb;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prd_details video {
  width: 100%;
}

.plans .plan {
  cursor: pointer;
  width: 100%;
}

.plans .plan input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plans .plan input[type="radio"]:checked + .plan-content {
  border: 2px solid #216ee0;
  background: #eaf1fe;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}

.plans .plan .plan-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e1e2e7;
  border-radius: 10px;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  position: relative;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background: #216fe0;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
  box-shadow: 0px 0px 0px 2px #0066ff;
}

.plans .plan .plan-content img {
  margin-right: 30px;
  height: 50px;
}

.plans .plan .plan-details span {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #252f42;
  margin-right: 10px;
}

.plans .plan .plan-details p {
  color: #646a79;
  font-size: 14px;
  line-height: 18px;
}

.plan-details p {
  margin-right: 10px;
  font-size: 11px !important;
}

/* ul.nav-dropdown.nav-submenu {
    z-index: 999999 !important;
    overflow: scroll !important;
} */
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  display: inline-flex;
  float: left;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.course_download {
  width: 30px;
  float: left;
  height: 30px;
  cursor: pointer;
  color: #000;
  border: 1px solid gray;
  padding: 2px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
}

.alert button.close {
  position: inherit;
}

section.gray.cat {
  background-size: cover !important;
  height: 300px;
}

.navigation-portrait {
  height: auto !important;
}

.v-hide {
  visibility: hidden;
}

.box-card {
  color: inherit;
  cursor: pointer;
  width: 100%;
  height: 272px;
  min-height: 272px;
  perspective: 1000px;
  position: relative;
}

@media screen and (max-width: 800px) {
  .box-card {
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 500px) {
  .box-card {
    width: 100%;
  }
}

.front,
.back {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: ease-in-out 600ms;
}

.front {
  background-size: cover;
  padding: 0 2em;
  font-size: 1.618rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
}

.front:before,
.back:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
  z-index: -1;
  border-radius: 6px;
}

.back::before {
  background: #d2d2d2;
}

.box-card:hover .front {
  transform: rotateY(180deg);
}

.box-card:nth-child(even):hover .front {
  transform: rotateY(-180deg);
}

.back {
  background: #fff;
  transform: rotateY(-180deg);
  padding: 0 2em;
}

.back .button {
  background: linear-gradient(135deg, #1a9be6, #1a57e6);
}

.back .button:before {
  box-shadow: 0 0 10px 10px rgba(26, 87, 230, 0.25);
  background-color: rgba(26, 87, 230, 0.25);
}

.box-card:hover .back {
  transform: rotateY(0deg);
}

.box-card:nth-child(even) .back {
  transform: rotateY(180deg);
}

.box-card:nth-child(even) .back .button {
  background: linear-gradient(135deg, #e61a80, #e61a3c);
}

.box-card:nth-child(even) .back .button:before {
  box-shadow: 0 0 10px 10px rgba(230, 26, 60, 0.25);
  background-color: rgba(230, 26, 60, 0.25);
}

.box-card:nth-child(even):hover .back {
  transform: rotateY(0deg);
}

.button {
  transform: translateZ(40px);
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-weight: bold;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 100px;
  font: inherit;
  border: none;
  position: relative;
  transform-style: preserve-3d;
  transition: 300ms ease;
}

.button:before {
  transition: 300ms ease;
  position: absolute;
  display: block;
  content: "";
  transform: translateZ(-40px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  border-radius: 100px;
  left: 10px;
  top: 16px;
}

.button:hover {
  transform: translateZ(55px);
}

.button:hover:before {
  transform: translateZ(-55px);
}

.button:active {
  transform: translateZ(20px);
}

.button:active:before {
  transform: translateZ(-20px);
  top: 12px;
}

p img {
  max-width: 100% !important;
}
#loader_body {
  display: none;
}

#loader_body .loader {
  width: 100vw;
  position: fixed !important;
  height: 100vh;
  z-index: 9999999999;
  background: rgb(0 0 0 / 20%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  left: 0;
  top: 0;
  display: block !important;
}

#loading {
  width: 100vw;
  position: fixed;
  height: 100vh;
  z-index: 9999999999;
  background: rgb(0 0 0 / 20%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  left: 0;
  top: 0;
}

.loading {
  margin: auto;
  position: fixed;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  z-index: 99999999999;
}

.loader div {
  width: 200px;
  height: 200px;
  margin: auto;
  position: fixed;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  z-index: 99999999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
._loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  border-width: 3px 2px 3px 2px;
  border-style: solid dotted solid dotted;
  border-color: #de3500 rgba(255, 255, 255, 0.3) #fff rgba(151, 107, 93, 0.3);
  border-radius: 50%;
  box-sizing: border-box;
  animation: 1s rotate linear infinite;
}
._loader:before,
._loader:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  transform: translate(-10px, 19px) rotate(-35deg);
}
._loader:after {
  border-color: #de3500 #0000 #0000 #0000;
  transform: translate(32px, 3px) rotate(-35deg);
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
label.error {
  color: rgb(255, 0, 0);
}
video {
  max-width: 100% !important;
  height: auto !important;
}
.select2-selection__rendered {
  min-height: 52px !important;
  padding: 10px 15px;
  border-radius: 1px;
  border-color: #e5e5e5;
}
