@import url("css2.css");

html {
   scroll-behavior: smooth;
}

body {
   font-family: "Heebo", sans-serif;
   color: #585978;
   background-color: #ffffff
}

ul {
   margin: 0;
   padding: 0;
   list-style: none;
}

a {
   text-decoration: none;
}

a:hover {
   text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
   font-weight: 700;
   color: #323450;
   margin-bottom: 0;
   font-family: "Fira Sans", sans-serif;
}

h1,
.h1 {
   font-size: 80px;
   letter-spacing: .7px;
}

h2,
.h2 {
   font-size: 60px;
   letter-spacing: .7px;
}

h3,
.h3 {
   font-size: 40px;
   letter-spacing: .4px;
}

h4,
.h4 {
   font-size: 30px;
   letter-spacing: .35px;
}

h5,
.h5 {
   font-size: 24px;
}

h6,
.h6 {
   font-size: 20px;
}

.font-weight-bold {
   font-weight: 700;
}

.font-weight-semi-bold {
   font-weight: 600;
}

.font-weight-medium {
   font-weight: 500;
}

.font-weight-regular {
   font-weight: 400;
}

.font-weight-light {
   font-weight: 300;
}

.body-font-size {
   font-size: 16px;
}

.font-size-sm {
   font-size: 14px;
}

.font-size-xs {
   font-size: 12px;
}

.caption-font-size {
   font-size: 14px;
}

p {
   font-size: 16px;
   line-height: 24px;
   margin-bottom: 0px;
}

.button {
   height: 44px;
   font-size: 18px;
   font-weight: 500;
   box-sizing: border-box;
   line-height: 1;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   background: #2F80ED;
   color: #ffffff;
   border: 1px solid transparent;
   position: relative;
   z-index: 1;
   padding: 0 25px;
   overflow: hidden;
}

.button i {
   padding-left: 20px;
}

.button::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   width: 0;
   height: 0;
   padding: 50%;
   border-radius: 50%;
   margin: auto;
   background: rgba(0, 0, 0, 0.1);
   z-index: -1;
   transform: translate3d(-50%, -50%, 0) scale(0);
}

.button:hover {
   color: #ffffff;
}

.button:hover::before {
   transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.button.border-button {
   background: transparent;
   color: #2F80ED;
   border-color: #2F80ED;
}

.button.border-button::before {
   background: rgba(47, 128, 237, 0.16);
}

.button-lg {
   height: 64px;
}

.button-sm {
   height: 34px;
   font-size: 16px;
   font-weight: 400;
}

.buttons-wrapper ul {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   margin-bottom: 20px;
}

.buttons-wrapper ul li {
   margin-right: 30px;
   margin-bottom: 20px;
}

/*
* vidheader
*/
.header {
   background: #ffffff;
}

.header.vidheader-1 .navbar {
   padding: 20px 0;
   border-radius: 0px;
   position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar {
      padding: 17px 0;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar {
      padding: 17px 0;
   }
}

.header.vidheader-1 .navbar-brand {
   padding: 0;
}

.header.vidheader-1 .navbar-brand img {
   max-width: 180px;
}

.header.vidheader-1 .navbar-toggler {
   padding: 0px 4px;
   color: #fff;
   font-size: 1.8em;
   font-weight: bold;
   border-color: #3180e8;
   background: #3180e8;
   outline: none;
   box-shadow: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      z-index: 9;
      box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      padding: 5px 12px;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      z-index: 9;
      box-shadow: 0px 15px 20px 0px rgba(50, 52, 80, 0.1);
      padding: 5px 12px;
   }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar-nav {
      margin-bottom: 15px;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar-nav {
      margin-bottom: 15px;
   }
}

.header.vidheader-1 .navbar-nav .nav-item {
   position: relative;
   margin-right: 40px;
}

.header.vidheader-1 .navbar-nav .nav-item a {
   font-size: 16px;
   font-weight: 500;
   color: #585978;
   padding: 10px 0px;
   position: relative;
   display: inline-block;
   z-index: 1;
}

.header.vidheader-1 .navbar-nav .nav-item a::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   background: #2F80ED;
   left: 0;
   top: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar-nav .nav-item a::after {
      top: auto;
      bottom: 5px;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar-nav .nav-item a::after {
      top: auto;
      bottom: 5px;
   }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar-nav .nav-item a {
      display: inline-block;
      padding: 10px 0px;
      color: #323450;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar-nav .nav-item a {
      display: block;
      padding: 10px 0px;
      color: #323450;
   }
}

.header.vidheader-1 .navbar-nav .nav-item a:hover,
.header.vidheader-1 .navbar-nav .nav-item a.active {
   color: #2F80ED;
}

.header.vidheader-1 .navbar-nav .nav-item a:hover::after,
.header.vidheader-1 .navbar-nav .nav-item a.active::after {
   width: 100%;
}

.header.vidheader-1 .navbar-nav .nav-item:hover .sub-menu {
   top: 100%;
   opacity: 1;
   visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar-nav .nav-item:hover .sub-menu {
      top: 0;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar-nav .nav-item:hover .sub-menu {
      top: 0;
   }
}

.header.vidheader-1 .navbar-nav .nav-item .sub-menu {
   width: 200px;
   background-color: #ffffff;
   box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
   position: absolute;
   top: 110%;
   left: 0;
   opacity: 0;
   visibility: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar-nav .nav-item .sub-menu {
      position: relative;
      width: 100%;
      top: 0;
      display: none;
      opacity: 1;
      visibility: visible;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar-nav .nav-item .sub-menu {
      position: relative;
      width: 100%;
      top: 0;
      display: none;
      opacity: 1;
      visibility: visible;
   }
}

.header.vidheader-1 .navbar-nav .nav-item .sub-menu li {
   display: block;
}

.header.vidheader-1 .navbar-nav .nav-item .sub-menu li a {
   display: block;
   padding: 8px 20px;
   color: #000000;
}

.header.vidheader-1 .navbar-nav .nav-item .sub-menu li a.active,
.header.vidheader-1 .navbar-nav .nav-item .sub-menu li a:hover {
   padding-left: 25px;
   color: #2F80ED;
}

.header.vidheader-1 .navbar-nav .sub-nav-toggler {
   display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .header.vidheader-1 .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #000000;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px;
   }
}

@media (max-width: 767px) {
   .header.vidheader-1 .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #000000;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px;
   }
}

.header.vidheader-1 .navbar-nav .sub-nav-toggler span {
   width: 8px;
   height: 8px;
   border-left: 1px solid #000000;
   border-bottom: 1px solid #000000;
   transform: rotate(-45deg);
   position: relative;
   top: -5px;
}

.vidpanel {
   background-color: #edf5fa;
}

.vidnav-1 {
   background-color: #001c3f;
}

.vidnav-1 .nav-link {
   color: #ffffff;
   font-size: 16px;
   font-weight: 500;
}

.vidnav-1 .nav-link:hover {
   color: #2F80ED;
}

.vidnav-2 {
   background-color: #ffffff;
}

.vidnav-2 .nav-item a {
   font-size: 16px;
   font-weight: 500;
   color: #585978;
}

.vidnav-2 .nav-item a:hover {
   color: #2F80ED;
}

.vidnav-2 .nav-item {
   margin-right: 20px;
}

.dropdown-hover:hover .dropdown-menu {
   display: block;
   margin-top: 0;
}

.dropdown-menu {
   border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
   background: none;
}

.card,
.card-header,
.card-body,
.card-footer {
   border: none;
}

.card-header {
   background-color: transparent;
}

.table-vidguard {
   --bs-table-bg: #001c3f;
   color: #ffffff;
}

.table-vidguard th a {
   color: #ffffff;
}

.table-vidguard tr th:first-child {
   border-radius: 0.25rem 0px 0px 0px;
}

.table-vidguard tr th:last-child {
   border-radius: 0px 0.25rem 0px 0px;
}

.table-no-data {
   text-align: center;
}

.table-no-data td {
   padding: 50px;
}

.table .form-check {
   justify-content: center;
   vertical-align: middle;
   display: flex;
}

.table {
   --bs-table-hover-bg: rgb(199 230 255 / 23%);
   --bs-table-striped-bg: rgb(237 245 250 / 27%);
}

.modal-content {
   border: none;
}

.modal-header {
   background-color: #001c3f;
}

.modal-title {
   color: #ffffff;
   font-size: 14px;
}

.pagination-vg {
   margin: 10px;
}

.dropdown-menu-vg {
   background-color: #001c3f;
}

.dropdown-menu-vg .dropdown-item {
   color: #ffffff !important;
}

.dropdown-menu-vg .dropdown-item:hover {
   color: #2F80ED !important;
}

th.sortable {
   position: relative;
   cursor: pointer;
}

th.sortable::after {
   content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z' fill='%23999'/%3E%3C/svg%3E");
   position: absolute;
   right: 8px;
   width: 10px;
   height: 10px;
}

th.sortable.asc::after {
   content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z' fill='%23000'/%3E%3C/svg%3E");
}

th.sortable.desc::after {
   content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z' fill='%23000'/%3E%3C/svg%3E");
}

th.sortable:hover::after {
   content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z' fill='%23000'/%3E%3C/svg%3E");
}

tr>td>div>a>i {
   font-size: 25px;
   vertical-align: middle;
}

.table th,
.table td {
   vertical-align: middle;
}

/*
* Hero
*/
.hero-section-wrapper {
   background: #bbdbff;
   position: relative;
}

.hero-section-wrapper .header {
   position: absolute;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 2;
   background: transparent;
}

.hero-section-wrapper .header.sticky {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 2;
   background: #ffffff;
   box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.hero-section-wrapper .hero-style {
   position: relative;
   z-index: 1;
}

.hero-section-wrapper .hero-style .hero-content-wrapper {
   padding: 300px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper {
      padding: 250px 0;
   }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper {
      padding: 200px 0;
   }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper {
      padding: 200px 0 50px;
   }
}

@media (max-width: 767px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper {
      padding: 150px 0 50px;
   }
}

.hero-section-wrapper .hero-style .hero-content-wrapper h2 {
   margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper h2 {
      font-size: 55px;
      line-height: 65px;
   }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper h2 {
      font-size: 47px;
      line-height: 58px;
   }
}

@media (max-width: 767px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper h2 {
      font-size: 40px;
      line-height: 50px;
   }
}

@media only screen and (min-width: 575px) and (max-width: 767px) {
   .hero-section-wrapper .hero-style .hero-content-wrapper h2 {
      font-size: 47px;
      line-height: 58px;
   }
}

.hero-section-wrapper .hero-style .hero-content-wrapper p {
   font-weight: 500;
   margin-bottom: 50px;
}

.hero-section-wrapper .hero-style .hero-image {
   margin-bottom: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
   .hero-section-wrapper .hero-style .hero-image img {
      max-width: 100%;
   }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .hero-section-wrapper .hero-style .hero-image img {
      max-width: 100%;
   }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .hero-section-wrapper .hero-style .hero-image img {
      max-width: 100%;
   }
}

@media (max-width: 767px) {
   .hero-section-wrapper .hero-style .hero-image img {
      max-width: 100%;
   }
}

.shapes .shape {
   position: absolute;
   z-index: -1;
}

.shapes .shape.shape-1 {
   right: 0;
   bottom: 0;
   height: 100%;
}

.shapes .shape.shape-5 {
   left: -38%;
   bottom: 0;
   height: 85%;
   width: 100%;
   transform: scaleX(-1);
}

.shapes .shape.shape-2 {
   top: 200px;
   left: 49%;
}

.shapes .shape.shape-6 {
   top: 200px;
   right: 49%;
   transform: scaleX(-1);
}

.shapes .shape.shape-3 {
   left: 15%;
   bottom: 120px;
}

.shapes .shape.shape-7 {
   right: 15%;
   bottom: 120px;
   transform: scaleX(-1);
}


.shapes .shape.shape-4 {
   left: 0;
   bottom: 5%;
}

.shapes .shape.shape-8 {
   right: 0;
   bottom: 5%;
   transform: scaleX(-1);
}

/*
* Feature
*/
.feature-style {
   background: #ffffff;
   padding: 100px 0;
}

.feature-style .single-feature {
   padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .feature-style .single-feature {
      padding: 30px 0;
   }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .feature-style .single-feature {
      padding: 30px 20px;
   }
}

.feature-style .single-feature .feature-top {
   display: flex;
   align-items: flex-end;
}

.feature-style .single-feature .feature-top .icon {
   width: 75px;
   font-size: 50px;
   color: #323450;
   line-height: 1;
   margin-bottom: 25px;
   margin-right: 12px;
}

.feature-style .single-feature .feature-top .heading h5 {
   margin-bottom: 25px;
   font-weight: 600;
}

/* ============================= 
    PRICING-1 CSS
================================ */
.pricing-style-1 {
   padding: 100px 0 60px;
   background: #F3F3F3;
}

.pricing-style-1 .single-pricing {
   background: #ffffff;
   border-radius: 40px;
   box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
   margin-bottom: 40px;
   padding: 45px 40px;
   border: 1px solid transparent;
   position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .pricing-style-1 .single-pricing {
      padding: 45px 25px;
   }
}

.pricing-style-1 .single-pricing .popular-badge {
   position: absolute;
   top: 45px;
   right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .pricing-style-1 .single-pricing .popular-badge {
      right: 20px;
   }
}

.pricing-style-1 .single-pricing.active,
.pricing-style-1 .single-pricing:hover {
   border-color: #2F80ED;
}

.pricing-style-1 .single-pricing .image {
   width: 120px;
   height: 120px;
   background: #EBF4FF;
   border-radius: 50%;
   margin-bottom: 30px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.pricing-style-1 .single-pricing .image img {
   max-width: 100%;
}

.pricing-style-1 .single-pricing h6 {
   color: #585978;
   margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .pricing-style-1 .single-pricing h6 {
      font-size: 16px;
   }
}

.pricing-style-1 .single-pricing h4 {
   margin-bottom: 20px;
   font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .pricing-style-1 .single-pricing h4 {
      font-size: 24px;
   }
}

.pricing-style-1 .single-pricing h3 {
   margin-bottom: 18px;
   color: #2F80ED;
}

.pricing-style-1 .single-pricing ul {
   margin-bottom: 30px;
}

.pricing-style-1 .single-pricing ul li {
   display: flex;
   align-items: center;
   font-size: 16px;
   line-height: 34px;
   margin-bottom: 12px;
}

.pricing-style-1 .single-pricing ul li i {
   color: #2F80ED;
   margin-right: 10px;
}

/* ============================= 
    PRICING-2 CSS
================================ */
.pricing-style-2 {
   padding: 100px 0 60px;
   background: #F3F3F3;
}

.pricing-style-2 .single-pricing {
   background: transparent;
   border-radius: 40px;
   margin-bottom: 40px;
   padding: 45px 40px;
   border: 1px solid transparent;
   position: relative;
   text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .pricing-style-2 .single-pricing {
      padding: 45px 25px;
   }
}

.pricing-style-2 .single-pricing.active,
.pricing-style-2 .single-pricing:hover {
   background: #ffffff;
   box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
}

.pricing-style-2 .single-pricing .image {
   width: 120px;
   height: 120px;
   background: #EBF4FF;
   border-radius: 50%;
   margin: auto;
   margin-bottom: 30px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.pricing-style-2 .single-pricing .image img {
   max-width: 100%;
}

.pricing-style-2 .single-pricing h6 {
   color: #585978;
   margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .pricing-style-2 .single-pricing h6 {
      font-size: 16px;
   }
}

.pricing-style-2 .single-pricing h4 {
   margin-bottom: 20px;
   font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .pricing-style-2 .single-pricing h4 {
      font-size: 24px;
   }
}

.pricing-style-2 .single-pricing h3 {
   margin-bottom: 18px;
   color: #2F80ED;
}

.pricing-style-2 .single-pricing ul {
   margin-bottom: 30px;
}

.pricing-style-2 .single-pricing ul li {
   font-size: 16px;
   line-height: 34px;
   margin-bottom: 12px;
}

/*
* Footer
*/
.footer-style {
   background: #001c3f;
   padding-top: 80px;
}

.footer-style .widget-wrapper .footer-widget {
   margin-bottom: 50px;
}

.footer-style .widget-wrapper .footer-widget .logo {
   margin-bottom: 30px;
}

.footer-style .widget-wrapper .footer-widget p.desc {
   color: #ffffff;
   margin-bottom: 30px;
}

.footer-style .widget-wrapper .footer-widget .socials {
   justify-content: flex-start;
}

.footer-style .widget-wrapper .footer-widget .socials li a {
   background: rgba(47, 128, 237, 0.4);
   margin: 0;
   margin-right: 10px;
   width: 44px;
   height: 44px;
   font-size: 20px;
}

.footer-style .widget-wrapper .footer-widget .socials li a:hover {
   background: #2F80ED;
}

.footer-style .widget-wrapper .footer-widget h6 {
   font-weight: 600;
   color: #2f80ed;
   margin-bottom: 35px;
   margin-top: 10px;
}

.footer-style .widget-wrapper .footer-widget .links li a {
   font-size: 16px;
   line-height: 32px;
   color: #ffffff;
}

.footer-style .widget-wrapper .footer-widget .links li a:hover {
   color: #2F80ED;
}

.footer-style .copyright-wrapper {
   border-top: 1px solid rgba(88, 89, 120, 0.4);
   padding: 20px 0;
}

.footer-style .copyright-wrapper p {
   font-size: 14px;
   font-weight: 500;
   text-align: center;
   color: rgba(88, 89, 120, 0.6);
}

.footer-style.footer-dark {
   background: #323450;
}

.footer-style.footer-dark .widget-wrapper .footer-widget p {
   color: #ffffff;
}

.footer-style.footer-dark .widget-wrapper .footer-widget h6 {
   color: #ffffff;
}

.footer-style.footer-dark .widget-wrapper .footer-widget .socials li a {
   background: rgba(255, 255, 255, 0.1);
}

.footer-style.footer-dark .widget-wrapper .footer-widget .socials li a:hover {
   background: #2F80ED;
}

.footer-style.footer-dark .widget-wrapper .footer-widget .links li a {
   color: #ffffff;
}

.footer-style.footer-dark .widget-wrapper .footer-widget .links li a:hover {
   color: #2F80ED;
}

.footer-style.footer-dark .copyright-wrapper p {
   color: rgba(255, 255, 255, 0.8);
}

/*
* Login
*/
.login-style {
   padding: 80px 0;
}

.login-style .login-content-wrapper .login-form .single-input {
   margin-bottom: 25px;
   position: relative;
}

.login-style .login-content-wrapper .login-form .single-input i {
   position: absolute;
   right: 20px;
   bottom: 20px;
   opacity: .5;
}

.login-style .login-content-wrapper .login-form .single-input label {
   display: block;
   font-weight: 500;
   color: #323450;
   margin-bottom: 12px;
}

.login-style .login-content-wrapper .login-form .single-input input {
   width: 100%;
   border: 1px solid rgba(88, 89, 120, 0.5);
   height: 64px;
   line-height: 1;
   padding-right: 30px;
   padding-left: 15px;
   border-radius: 10px;
   background: transparent;
   color: #585978;
}

.login-style .login-content-wrapper .login-form .single-input input::placeholder {
   opacity: .5;
}

.login-style .login-content-wrapper .login-form .single-input input:focus {
   border-color: #2F80ED;
}

.login-style .login-content-wrapper .login-form p a {
   color: #2F80ED;
   font-weight: 500;
}

.login-style .login-content-wrapper .login-form .form-footer {
   display: flex;
   justify-content: space-between;
}

.img-bg {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
}

.socials {
   display: flex;
   justify-content: center;
   align-items: center;
}

.socials li a {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: #2F80ED;
   color: #ffffff;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 3px 8px;
}

input:focus,
textarea:focus,
button:focus {
   outline: none;
   box-shadow: none;
}

.radius-3 {
   border-radius: 3px;
}

.radius-10 {
   border-radius: 10px;
}

.radius-30 {
   border-radius: 30px;
}

.radius-50 {
   border-radius: 50px;
}

.radius-full {
   border-radius: 50%;
}

.radius-10-0 {
   border-radius: 10px 0px;
}

/* margins */
.mt-6 {
   margin-top: 6px;
}

.mt-5 {
   margin-top: 5px;
}

.mt-10 {
   margin-top: 10px;
}

.mt-15 {
   margin-top: 15px;
}

.mt-20 {
   margin-top: 20px;
}

.mt-25 {
   margin-top: 25px;
}

.mt-30 {
   margin-top: 30px;
}

.mt-35 {
   margin-top: 35px;
}

.mt-40 {
   margin-top: 40px;
}

.mt-45 {
   margin-top: 45px;
}

.mt-50 {
   margin-top: 50px;
}

.mt-55 {
   margin-top: 55px;
}

.mt-60 {
   margin-top: 60px;
}

.mt-65 {
   margin-top: 65px;
}

.mt-70 {
   margin-top: 70px;
}

.mt-75 {
   margin-top: 75px;
}

.mt-80 {
   margin-top: 80px;
}

.mt-85 {
   margin-top: 85px;
}

.mt-90 {
   margin-top: 90px;
}

.mt-95 {
   margin-top: 95px;
}

.mt-100 {
   margin-top: 100px;
}

.mt-105 {
   margin-top: 105px;
}

.mt-110 {
   margin-top: 110px;
}

.mt-115 {
   margin-top: 115px;
}

.mt-120 {
   margin-top: 120px;
}

.mt-125 {
   margin-top: 125px;
}

.mt-130 {
   margin-top: 130px;
}

.mt-135 {
   margin-top: 135px;
}

.mt-140 {
   margin-top: 140px;
}

.mt-145 {
   margin-top: 145px;
}

.mt-150 {
   margin-top: 150px;
}

.mt-155 {
   margin-top: 155px;
}

.mt-160 {
   margin-top: 160px;
}

.mt-165 {
   margin-top: 165px;
}

.mt-170 {
   margin-top: 170px;
}

.mt-175 {
   margin-top: 175px;
}

.mt-180 {
   margin-top: 180px;
}

.mt-185 {
   margin-top: 185px;
}

.mt-190 {
   margin-top: 190px;
}

.mt-195 {
   margin-top: 195px;
}

.mt-200 {
   margin-top: 200px;
}

.mt-205 {
   margin-top: 205px;
}

.mt-210 {
   margin-top: 210px;
}

.mt-215 {
   margin-top: 215px;
}

.mt-220 {
   margin-top: 220px;
}

.mt-225 {
   margin-top: 225px;
}

.mb-6 {
   margin-bottom: 6px;
}

.mb-5 {
   margin-bottom: 5px;
}

.mb-10 {
   margin-bottom: 10px;
}

.mb-15 {
   margin-bottom: 15px;
}

.mb-20 {
   margin-bottom: 20px;
}

.mb-25 {
   margin-bottom: 25px;
}

.mb-30 {
   margin-bottom: 30px;
}

.mb-35 {
   margin-bottom: 35px;
}

.mb-40 {
   margin-bottom: 40px;
}

.mb-45 {
   margin-bottom: 45px;
}

.mb-50 {
   margin-bottom: 50px;
}

.mb-55 {
   margin-bottom: 55px;
}

.mb-60 {
   margin-bottom: 60px;
}

.mb-65 {
   margin-bottom: 65px;
}

.mb-70 {
   margin-bottom: 70px;
}

.mb-75 {
   margin-bottom: 75px;
}

.mb-80 {
   margin-bottom: 80px;
}

.mb-85 {
   margin-bottom: 85px;
}

.mb-90 {
   margin-bottom: 90px;
}

.mb-95 {
   margin-bottom: 95px;
}

.mb-100 {
   margin-bottom: 100px;
}

.mb-105 {
   margin-bottom: 105px;
}

.mb-110 {
   margin-bottom: 110px;
}

.mb-115 {
   margin-bottom: 115px;
}

.mb-120 {
   margin-bottom: 120px;
}

.mb-125 {
   margin-bottom: 125px;
}

.mb-130 {
   margin-bottom: 130px;
}

.mb-135 {
   margin-bottom: 135px;
}

.mb-140 {
   margin-bottom: 140px;
}

.mb-145 {
   margin-bottom: 145px;
}

.mb-150 {
   margin-bottom: 150px;
}

.mb-155 {
   margin-bottom: 155px;
}

.mb-160 {
   margin-bottom: 160px;
}

.mb-165 {
   margin-bottom: 165px;
}

.mb-170 {
   margin-bottom: 170px;
}

.mb-175 {
   margin-bottom: 175px;
}

.mb-180 {
   margin-bottom: 180px;
}

.mb-185 {
   margin-bottom: 185px;
}

.mb-190 {
   margin-bottom: 190px;
}

.mb-195 {
   margin-bottom: 195px;
}

.mb-200 {
   margin-bottom: 200px;
}

.mb-205 {
   margin-bottom: 205px;
}

.mb-210 {
   margin-bottom: 210px;
}

.mb-215 {
   margin-bottom: 215px;
}

.mb-220 {
   margin-bottom: 220px;
}

.mb-225 {
   margin-bottom: 225px;
}

.ml-6 {
   margin-left: 6px;
}

.ml-5 {
   margin-left: 5px;
}

.ml-10 {
   margin-left: 10px;
}

.ml-15 {
   margin-left: 15px;
}

.ml-20 {
   margin-left: 20px;
}

.ml-25 {
   margin-left: 25px;
}

.ml-30 {
   margin-left: 30px;
}

.ml-35 {
   margin-left: 35px;
}

.ml-40 {
   margin-left: 40px;
}

.ml-45 {
   margin-left: 45px;
}

.ml-50 {
   margin-left: 50px;
}

.ml-55 {
   margin-left: 55px;
}

.ml-60 {
   margin-left: 60px;
}

.ml-65 {
   margin-left: 65px;
}

.ml-70 {
   margin-left: 70px;
}

.ml-75 {
   margin-left: 75px;
}

.ml-80 {
   margin-left: 80px;
}

.ml-85 {
   margin-left: 85px;
}

.ml-90 {
   margin-left: 90px;
}

.ml-95 {
   margin-left: 95px;
}

.ml-100 {
   margin-left: 100px;
}

.mr-6 {
   margin-right: 6px;
}

.mr-5 {
   margin-right: 5px;
}

.mr-10 {
   margin-right: 10px;
}

.mr-15 {
   margin-right: 15px;
}

.mr-20 {
   margin-right: 20px;
}

.mr-25 {
   margin-right: 25px;
}

.mr-30 {
   margin-right: 30px;
}

.mr-35 {
   margin-right: 35px;
}

.mr-40 {
   margin-right: 40px;
}

.mr-45 {
   margin-right: 45px;
}

.mr-50 {
   margin-right: 50px;
}

.mr-55 {
   margin-right: 55px;
}

.mr-60 {
   margin-right: 60px;
}

.mr-65 {
   margin-right: 65px;
}

.mr-70 {
   margin-right: 70px;
}

.mr-75 {
   margin-right: 75px;
}

.mr-80 {
   margin-right: 80px;
}

.mr-85 {
   margin-right: 85px;
}

.mr-90 {
   margin-right: 90px;
}

.mr-95 {
   margin-right: 95px;
}

.mr-100 {
   margin-right: 100px;
}

.pt-6 {
   padding-top: 6px;
}

.pt-5 {
   padding-top: 5px;
}

.pt-10 {
   padding-top: 10px;
}

.pt-15 {
   padding-top: 15px;
}

.pt-20 {
   padding-top: 20px;
}

.pt-25 {
   padding-top: 25px;
}

.pt-30 {
   padding-top: 30px;
}

.pt-35 {
   padding-top: 35px;
}

.pt-40 {
   padding-top: 40px;
}

.pt-45 {
   padding-top: 45px;
}

.pt-50 {
   padding-top: 50px;
}

.pt-55 {
   padding-top: 55px;
}

.pt-60 {
   padding-top: 60px;
}

.pt-65 {
   padding-top: 65px;
}

.pt-70 {
   padding-top: 70px;
}

.pt-75 {
   padding-top: 75px;
}

.pt-80 {
   padding-top: 80px;
}

.pt-85 {
   padding-top: 85px;
}

.pt-90 {
   padding-top: 90px;
}

.pt-95 {
   padding-top: 95px;
}

.pt-100 {
   padding-top: 100px;
}

.pt-105 {
   padding-top: 105px;
}

.pt-110 {
   padding-top: 110px;
}

.pt-115 {
   padding-top: 115px;
}

.pt-120 {
   padding-top: 120px;
}

.pt-125 {
   padding-top: 125px;
}

.pt-130 {
   padding-top: 130px;
}

.pt-135 {
   padding-top: 135px;
}

.pt-140 {
   padding-top: 140px;
}

.pt-145 {
   padding-top: 145px;
}

.pt-150 {
   padding-top: 150px;
}

.pt-155 {
   padding-top: 155px;
}

.pt-160 {
   padding-top: 160px;
}

.pt-165 {
   padding-top: 165px;
}

.pt-170 {
   padding-top: 170px;
}

.pt-175 {
   padding-top: 175px;
}

.pt-180 {
   padding-top: 180px;
}

.pt-185 {
   padding-top: 185px;
}

.pt-190 {
   padding-top: 190px;
}

.pt-195 {
   padding-top: 195px;
}

.pt-200 {
   padding-top: 200px;
}

.pt-205 {
   padding-top: 205px;
}

.pt-210 {
   padding-top: 210px;
}

.pt-215 {
   padding-top: 215px;
}

.pt-220 {
   padding-top: 220px;
}

.pt-225 {
   padding-top: 225px;
}

.pb-6 {
   padding-bottom: 6px;
}

.pb-5 {
   padding-bottom: 5px;
}

.pb-10 {
   padding-bottom: 10px;
}

.pb-15 {
   padding-bottom: 15px;
}

.pb-20 {
   padding-bottom: 20px;
}

.pb-25 {
   padding-bottom: 25px;
}

.pb-30 {
   padding-bottom: 30px;
}

.pb-35 {
   padding-bottom: 35px;
}

.pb-40 {
   padding-bottom: 40px;
}

.pb-45 {
   padding-bottom: 45px;
}

.pb-50 {
   padding-bottom: 50px;
}

.pb-55 {
   padding-bottom: 55px;
}

.pb-60 {
   padding-bottom: 60px;
}

.pb-65 {
   padding-bottom: 65px;
}

.pb-70 {
   padding-bottom: 70px;
}

.pb-75 {
   padding-bottom: 75px;
}

.pb-80 {
   padding-bottom: 80px;
}

.pb-85 {
   padding-bottom: 85px;
}

.pb-90 {
   padding-bottom: 90px;
}

.pb-95 {
   padding-bottom: 95px;
}

.pb-100 {
   padding-bottom: 100px;
}

.pb-105 {
   padding-bottom: 105px;
}

.pb-110 {
   padding-bottom: 110px;
}

.pb-115 {
   padding-bottom: 115px;
}

.pb-120 {
   padding-bottom: 120px;
}

.pb-125 {
   padding-bottom: 125px;
}

.pb-130 {
   padding-bottom: 130px;
}

.pb-135 {
   padding-bottom: 135px;
}

.pb-140 {
   padding-bottom: 140px;
}

.pb-145 {
   padding-bottom: 145px;
}

.pb-150 {
   padding-bottom: 150px;
}

.pb-155 {
   padding-bottom: 155px;
}

.pb-160 {
   padding-bottom: 160px;
}

.pb-165 {
   padding-bottom: 165px;
}

.pb-170 {
   padding-bottom: 170px;
}

.pb-175 {
   padding-bottom: 175px;
}

.pb-180 {
   padding-bottom: 180px;
}

.pb-185 {
   padding-bottom: 185px;
}

.pb-190 {
   padding-bottom: 190px;
}

.pb-195 {
   padding-bottom: 195px;
}

.pb-200 {
   padding-bottom: 200px;
}

.pb-205 {
   padding-bottom: 205px;
}

.pb-210 {
   padding-bottom: 210px;
}

.pb-215 {
   padding-bottom: 215px;
}

.pb-220 {
   padding-bottom: 220px;
}

.pb-225 {
   padding-bottom: 225px;
}

.pl-6 {
   padding-left: 6px;
}

.pl-5 {
   padding-left: 5px;
}

.pl-10 {
   padding-left: 10px;
}

.pl-15 {
   padding-left: 15px;
}

.pl-20 {
   padding-left: 20px;
}

.pl-25 {
   padding-left: 25px;
}

.pl-30 {
   padding-left: 30px;
}

.pl-35 {
   padding-left: 35px;
}

.pl-40 {
   padding-left: 40px;
}

.pl-45 {
   padding-left: 45px;
}

.pl-50 {
   padding-left: 50px;
}

.pl-55 {
   padding-left: 55px;
}

.pl-60 {
   padding-left: 60px;
}

.pl-65 {
   padding-left: 65px;
}

.pl-70 {
   padding-left: 70px;
}

.pl-75 {
   padding-left: 75px;
}

.pl-80 {
   padding-left: 80px;
}

.pl-85 {
   padding-left: 85px;
}

.pl-90 {
   padding-left: 90px;
}

.pl-95 {
   padding-left: 95px;
}

.pl-100 {
   padding-left: 100px;
}

.pr-6 {
   padding-right: 6px;
}

.pr-5 {
   padding-right: 5px;
}

.pr-10 {
   padding-right: 10px;
}

.pr-15 {
   padding-right: 15px;
}

.pr-20 {
   padding-right: 20px;
}

.pr-25 {
   padding-right: 25px;
}

.pr-30 {
   padding-right: 30px;
}

.pr-35 {
   padding-right: 35px;
}

.pr-40 {
   padding-right: 40px;
}

.pr-45 {
   padding-right: 45px;
}

.pr-50 {
   padding-right: 50px;
}

.pr-55 {
   padding-right: 55px;
}

.pr-60 {
   padding-right: 60px;
}

.pr-65 {
   padding-right: 65px;
}

.pr-70 {
   padding-right: 70px;
}

.pr-75 {
   padding-right: 75px;
}

.pr-80 {
   padding-right: 80px;
}

.pr-85 {
   padding-right: 85px;
}

.pr-90 {
   padding-right: 90px;
}

.pr-95 {
   padding-right: 95px;
}

.pr-100 {
   padding-right: 100px;
}

.fs-7 {
   font-size: 0.8rem ! important;
}

.h-48 {
   height: 48.5% !important;
}

.dropdown-menu-end {
   right: 0;
   left: auto;
}

.dropdown-menu-md-start {
   left: 0;
   right: auto;
}

.filepond--root {
   font-family: "Heebo",
      sans-serif;
}

.filepond--panel-root {
   background-color: #ffffff;
}

.filepond--item-panel {
   background-color: #001c3f;
}

.filepond--credits {
   display: none;
}

.btn-circle {
   border-radius: 50%;
   background-color: rgba(0, 0, 0, 0.5);
   background-image: none;
   transition: box-shadow 0.25s ease-in;
   font-size: 1em;
   width: 1.625em;
   height: 1.625em;
   font-family: inherit;
   line-height: inherit;
   margin: 0;
   padding: 0;
   border: none;
   outline: none;
   will-change: transform, opacity;
   color: #fff;
}

.btn-circle:focus,
.btn-circle:hover {
   box-shadow: 0 0 0 0.125em rgb(255 255 255 / 90%);
   background-color: rgba(0, 0, 0, 0.5);
}

.bi-x::before {
   font-weight: bolder !important;
   line-height: 1 !important;
   vertical-align: -0.22em !important;
}

.video .nav-tabs {
   border-color: #2c3b50;
}

.video .nav-tabs .nav-item.show .nav-link,
.video .nav-tabs .nav-link.active,
.video .nav-tabs .nav-link:focus,
.video .nav-tabs .nav-link:hover {
   color: #ebf0f4;
   background: #2c3b50;
   border-color: #2c3b50;
}

.video .nav-tabs .nav-link {
   color: #ebf0f4;
}

.tab-pane .form-control {
   border-top: none;
   border-radius: 0px 0px 4px 4px;
}

.video .tab-pane .form-control {
   background: #2c3b50;
   color: #ebf0f4;
   border: none;
}


@media (min-width: 1200px) {
   .video-container.container {
      max-width: 1140px;
   }
}

@keyframes tinUpIn {
   0% {
      opacity: 0;
   }

   50% {
      opacity: 0.8;
   }

   100% {
      opacity: 1;
   }
}

@-webkit-keyframes tinUpIn {
   0% {
      opacity: 0;
   }

   50% {
      opacity: 0.8;
   }

   100% {
      opacity: 1;
   }
}

#cap-wrap {
   visibility: hidden;
   background: #fff;
   padding: 0.8em;
   margin: 4px auto !important;
   border-radius: 0.3em;
   border: 1px solid #16202f;
   z-index: 100;
}

#cap-wrap.cap-active {
   visibility: visible;
   animation: tinUpIn 1s linear;
   -moz-animation: tinUpIn 1s linear;
   -webkit-animation: tinUpIn 1s linear;
}

.cap-wrap__header {
   height: 50px;
   width: 100%;
   font-size: 15px;
   color: #000;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
}

.cap-wrap__header span {
   padding-right: 5px;
}

.cap-wrap__header span em {
   padding: 0 3px;
   font-weight: bold;
   color: #3e7cff;
   font-style: normal;
}

.cap-wrap__header .cap-wrap__image {
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   overflow: hidden;
   text-align: center;
   line-height: 1;
}

.cap-wrap__header .cap-wrap__thumb.cap-wrap__hidden {
   display: none;
}

.cap-wrap__body {
   position: relative;
   width: 300px;
   height: 240px;
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   background: #34383e;
   margin: auto;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   overflow: hidden;
}

.cap-wrap__body .cap-wrap__picture {
   position: relative;
   z-index: 10;
   width: 100%;
}

.cap-wrap__body .cap-wrap__picture.cap-wrap__hidden {
   display: none;
}

.cap-wrap__body .cap-wrap__loading {
   position: absolute;
   z-index: 9;
   top: 50%;
   left: 50%;
   width: 68px;
   height: 68px;
   margin-left: -34px;
   margin-top: -34px;
   line-height: 68px;
   text-align: center;
}

.cap-wrap__body .cap-wrap__dot {
   position: absolute;
   z-index: 10;
   width: 22px;
   height: 22px;
   color: #cedffe;
   background: #3e7cff;
   border: 2px solid #f7f9fb;
   line-height: 20px;
   text-align: center;
   -webkit-border-radius: 22px;
   -moz-border-radius: 22px;
   border-radius: 22px;
   cursor: default;
}

.cap-wrap__footer {
   width: 100%;
   height: 40px;
   color: #34383e;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   padding-top: 15px;
}

.cap-wrap__footer .cap-wrap__ico {
   flex: 1;
   text-align: left;
}

.cap-wrap__footer .cap-wrap__ico img {
   width: 24px;
   height: 24px;
   color: #34383e;
   margin: 0 5px;
   cursor: pointer;
}

.cap-wrap__footer .cap-wrap__btn {
   width: 120px;
   height: 40px;
}

.cap-wrap__footer .cap-wrap__btn button {
   width: 100%;
   height: 40px;
   letter-spacing: 2px;
   text-align: center;
   padding: 9px 15px;
   font-size: 15px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   display: inline-block;
   line-height: 1;
   white-space: nowrap;
   cursor: pointer;
   color: #fff;
   background-color: #409eff;
   border: 1px solid #409eff;
   -webkit-appearance: none;
   box-sizing: border-box;
   outline: none;
   margin: 0;
   transition: 0.1s;
   font-weight: 500;
   -moz-user-select: none;
   -webkit-user-select: none;
}

.cap-wrap__footer .cap-wrap__btn button:hover {
   background: #66b1ff;
   border-color: #66b1ff;
   color: #fff;
}

.cap-btn {
   width: 100%;
   height: 48px;
}

.cap-btn .cap-btn__inner {
   width: 100%;
   height: 48px;
   position: relative;
   letter-spacing: 1px;
}

.cap-btn .cap-state__default,
.cap-btn .cap-state__error,
.cap-btn .cap-state__success,
.cap-btn .cap-state__over {
   position: absolute;
   width: 100%;
   height: 48px;
   font-size: 13px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   display: inline-block;
   line-height: 1;
   white-space: nowrap;
   cursor: pointer;
   -webkit-appearance: none;
   box-sizing: border-box;
   outline: none;
   margin: 0;
   transition: 0.1s;
   font-weight: 500;
   -moz-user-select: none;
   -webkit-user-select: none;

   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   justify-content: center;
   justify-items: center;

   visibility: hidden;
}

.cap-btn .cap-state__default {
   color: #3e7cff;
   border: 1px solid #50a1ff;
   background: #ecf5ff;
   box-shadow: 0 0 20px rgba(62, 124, 255, 0.1);
   -webkit-box-shadow: 0 0 20px rgba(62, 124, 255, 0.1);
   -moz-box-shadow: 0 0 20px rgba(62, 124, 255, 0.1);
}

.cap-btn .cap-state__error {
   color: #ed4630;
   background: #fef0f0;
   border: 1px solid #ff5a34;
}

.cap-btn .cap-state__over {
   color: #ffa000;
   background: #fdf6ec;
   border: 1px solid #ffbe09;
}

.cap-btn .cap-state__success {
   color: #5eaa2f;
   background: #f0f9eb;
   border: 1px solid #8bc640;
   pointer-events: none;
}

.cap-btn .cap-active__default .cap-state__default,
.cap-btn .cap-active__error .cap-state__error,
.cap-btn .cap-active__over .cap-state__over,
.cap-btn .cap-active__success .cap-state__success {
   visibility: visible;
}

.cap-btn .cap-state__inner {
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
   justify-content: center;
   justify-items: center;
}

.cap-btn .cap-state__inner em {
   padding-left: 5px;
   color: #3e7cff;
   font-style: normal;
}

.cap-btn .cap-btn__inner .cap-btn__ico {
   position: relative;
   width: 24px;
   height: 24px;
   margin-right: 12px;
   font-size: 14px;
   display: inline-block;
   float: left;
   flex: 0;
}

.cap-btn .cap-btn__inner .cap-btn__ico img {
   width: 24px;
   height: 24px;
   float: left;
   position: relative;
   z-index: 10;
}

@keyframes ripple {
   0% {
      opacity: 0;
   }

   5% {
      opacity: 0.05;
   }

   20% {
      opacity: 0.35;
   }

   65% {
      opacity: 0.01;
   }

   100% {
      transform: scaleX(2) scaleY(2);
      opacity: 0;
   }
}

@-webkit-keyframes ripple {
   0% {
      opacity: 0;
   }

   5% {
      opacity: 0.05;
   }

   20% {
      opacity: 0.35;
   }

   65% {
      opacity: 0.01;
   }

   100% {
      transform: scaleX(2) scaleY(2);
      opacity: 0;
   }
}

.cap-btn .cap-btn__inner .cap-btn__verify::after {
   background: #409eff;
   -webkit-border-radius: 50px;
   -moz-border-radius: 50px;
   border-radius: 50px;
   content: '';
   display: block;
   width: 24px;
   height: 24px;
   opacity: 0;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 9;

   animation: ripple 1.3s infinite;
   -moz-animation: ripple 1.3s infinite;
   -webkit-animation: ripple 1.3s infinite;
   animation-delay: 2s;
   -moz-animation-delay: 2s;
   -webkit-animation-delay: 2s;
}

.cap-tip {
   padding: 50px 20px 100px;
   font-size: 13px;
   color: #76839b;
   text-align: center;
   line-height: 180%;
   width: 100%;
   max-width: 680px;
}

.cap-tip a {
   display: inline-block;
   margin: 0 5px;
}

.cap-tip a img {
   height: 28px;
}

.cloud-item~.cloud-item::before {
   content: ", ";
   color: #000;
}

.vidpanel.dark {
   background-color: #0c0f19;
   color: #f8f8f8;
}

.vidpanel.dark .vidnav-2,
.vidpanel.dark .modal-content,
.vidpanel.dark .card {
   background-color: #1b202e;
}

.vidpanel.dark .card-footer {
   background-color: rgb(0 0 0 / 25%);
}

.vidpanel.dark .modal-header {
   border-bottom: var(--bs-modal-header-border-width) solid #1b202e;
}

.vidpanel.dark .modal-footer {
   border-top: var(--bs-modal-footer-border-width) solid #1b202e;
}

.vidpanel.dark .nav-tabs {
   --bs-nav-tabs-border-color: #000000;
   --bs-nav-tabs-link-hover-border-color: #030812 #030812 #030812;
   --bs-nav-tabs-link-active-color: #f8f8f8;
   --bs-nav-tabs-link-active-bg: #030812;
   --bs-nav-tabs-link-active-border-color: #030812 #030812 #030812;
}

.vidpanel.dark .vidnav-2 .nav-item a,
.vidpanel.dark .filepond--drop-label,
.vidpanel.dark .modal-content,
.vidpanel.dark h1,
.vidpanel.dark h2,
.vidpanel.dark h3,
.vidpanel.dark h4,
.vidpanel.dark h5,
.vidpanel.dark h6,
.vidpanel.dark .h1,
.vidpanel.dark .h2,
.vidpanel.dark .h3,
.vidpanel.dark .h4,
.vidpanel.dark .h5,
.vidpanel.dark .h6 {
   color: #ececec;
}

.vidpanel.dark .vidnav-2 .nav-item a:hover {
   color: #2F80ED;
}

.vidpanel.dark .table {
   --bs-table-color: #ececec;
   --bs-table-striped-color: #ececec;
   --bs-table-hover-color: #ececec;
   --bs-table-hover-bg: rgb(0 0 0 / 27%);
   --bs-table-striped-bg: rgb(0 0 0 / 27%);
}

.vidpanel.dark .selectize-input,
.vidpanel.dark .selectize-input.full,
.vidpanel.dark .selectize-input.input-active,
.vidpanel.dark .form-select,
.vidpanel.dark .form-control {
   color: #ececec;
   background-color: #030812;
   border: 1px solid #05102efc
}

.vidpanel.dark .filepond--panel-root {
   background-color: #030812;
}

.bg-secondary-primary {
   background-color: #011c3e !important;
}

.vidpanel.dark .form-control.selectize-control {
   background-color: transparent !important;
   border: none;
}

.vidpanel.dark .card-header.bg-light {
   background-color: #070707 !important;
}

.vidpanel.dark .list-group {
   --bs-list-group-color: #ececec;
   --bs-list-group-bg: #030812;
   --bs-list-group-border-color: rgb(207 207 207 / 13%);
   --bs-list-group-action-hover-color: #fff;
   --bs-list-group-action-hover-bg: #0d6efd;
   --bs-list-group-action-active-color: #fff;
   --bs-list-group-action-active-bg: #0d6efd;
}
/*
     FILE ARCHIVED ON 12:48:51 Aug 02, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 15:40:20 Jun 25, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 18.351
  captures_list: 0.657
  exclusion.robots: 0.066
  exclusion.robots.policy: 0.053
  esindex: 0.01
  cdx.remote: 101.043
  LoadShardBlock: 823.396 (3)
  PetaboxLoader3.datanode: 736.132 (4)
  load_resource: 178.575
  PetaboxLoader3.resolve: 91.106
*/