/*----------------------
General styles
----------------------*/

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*outline: none;*/
}
html,
html.tag-html {
  height: auto;
  min-width: 320px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body,
body.tag-body {
  background: #fff;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 319px) {
  body,
  body.tag-body {
    overflow: auto;
  }
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

.indent,
.indent-min,
.indent-max {
  margin: 0;
}
.indent-min {
  height: 10px;
}
.indent {
  height: 20px;
}
.indent-max {
  height: 30px;
}

/*video*/
@media all {
  .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;

    margin: auto;
  }

  .embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%;
  }

  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .embed-responsive-21by9::before {
    padding-top: 42.857143%;
  }

  .embed-responsive-16by9::before {
    padding-top: 56.25%;
  }

  .embed-responsive-4by3::before {
    padding-top: 75%;
  }

  .embed-responsive-1by1::before {
    padding-top: 100%;
  }
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  white-space: pre-wrap;
  text-align: left;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.no-select {
  user-selected: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* humburder */
@media all {
  /*hamburger*/
  a.hamburger {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 1.5em;
    font-size: 24px;
    width: 1.5em;
    border-radius: 50%;
    transition: 0.3s ease;
    background-color: transparent;
  }
  a.hamburger .lines {
    display: block;
    width: 1em;
    height: 0.1666666666666667em;
    background: currentColor;
    transition: background 0.3s;
    align-items: center;
    position: relative;
  }
  a.hamburger .lines:before,
  a.hamburger .lines:after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 0.1666666666666667em;
    background: currentColor;
    transition: transform 0.3s;
    position: absolute;
    left: 0;
    -webkit-transform-origin: 0.28571em center;
    transform-origin: 0.28571em center;
  }
  a.hamburger .lines:before {
    top: -0.333333333em;
  }
  a.hamburger .lines:after {
    top: 0.333333333em;
  }

  /*active*/
  a.hamburger._active {
    background-color: #d6eef7;
  }
  a.hamburger._active .lines:before,
  a.hamburger._active .lines:after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 0;
    background: currentColor;
  }
  a.hamburger._active .lines {
    background: transparent;
  }
  a.hamburger._active .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
  }
  a.hamburger._active .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
  }
}

#bx-composite-banner {
  margin-top: 5px;
}

@-ms-viewport {
  width: device-width;
}
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: 320px;
  }
}

.overflow-h {
  overflow: hidden;
}

.pricing__section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.pricing__item {
  background-color: #f7f7f7;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  _text-align: center;
  align-items: center;
  transition: background-color 0.2s ease;
}

.pricing__item:hover {
  background-color: #3778fe;
  color: white;
}

.pricing__item:hover h6 {
  color: white;
}

.pricing__item:hover span {
  color: #fff;
}

.pricing__item i {
  color: #ffcc00;
}

.pricing__item i::before {
  font-size: 46px;
}

.pricing__item h6 {
  font-size: 18px;
  margin: 25px 0;
}

.pricing__item span {
  font-size: 14px;
  transition: color 0.2s ease;
}

@media screen and (max-width: 1000px) {
  .pricing__section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .pricing__section {
    grid-template-columns: 1fr;
  }
}

#kviz_content {
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 0 auto;
  border-radius: 12px;
  background-color: #fff;
  padding: 50px;
}

.req_ans {
  display: none;
  flex-direction: column;
}

.kviz__fields {
  display: none;
  flex-direction: column;
}

.req_ans--active {
  display: flex;
}

.kviz__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.kviz__title_main {
  margin-bottom: 45px;
  font-size: 20px;
}

.kviz__subtitle {
  font-size: 20px;
  text-transform: initial;
  line-height: 1.2;
  font-weight: 400;
}

#kviz_content input {
  margin-bottom: 20px;
}

.kviz__field_title {
  text-transform: capitalize;
}

.kviz__group:first-child {
  margin-top: 0;
}

.kviz__group {
  position: relative;
  margin: 0 !important;
}

.kviz__group input {
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #c5c5c5;
  color: #555;
  width: 100%;
  transition: border-color 0.2s ease;
}

.kviz__group input:focus {
  border: 1px solid #6b9cff !important;
  outline: none;
  box-shadow: none;
}

.kviz__field_title {
  color: #555;
  position: absolute;
  top: 16px;
  left: 20px;
  max-width: 80%;
  width: 100%;
  z-index: 1;
  line-height: 1.5;
  pointer-events: none;
  transition: left 0.2s ease, font-size 0.2s ease, transform 0.2s ease, top 0.2s ease;
}

.kviz__field_title._active {
  left: 0;
  top: 0;
  font-size: 0.8em;
  transform: translateY(-16px);
}

.kviz__field_title .starrequired {
  color: #ce2b28;
}

.kviz__question {
  padding: 10px;
  display: flex;
  align-items: center;
  border: 2px solid #c5c5c5;
  border-radius: 3px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kviz__question:hover,
.kviz__question:focus {
  border-color: #3778fe;
  cursor: pointer;
}

.kviz__question img {
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.kviz__question span {
  font-size: 18px;
}

.kviz__question span::first-letter {
  text-transform: uppercase;
}

.kviz__block {
  display: block;
}

.kviz__block input {
  display: none;
}

.kviz__block:not(:last-child) {
  margin-bottom: 20px;
}

.kviz__block input:checked + .kviz__question {
  border-color: #3778fe !important;
}

@media screen and (max-width: 500px) {
  .kviz__question span {
    font-size: 16px;
  }
  .kviz__fields .btn {
    width: 100%;
  }
  #kviz_content {
    padding: 40px 15px;
  }
}

.kviz-button {
  position: fixed !important;
  bottom: 20px;
  left: 20px;
  height: auto !important;
  font-size: 16px !important;
  padding: 12px 24px !important;
  z-index: 1;
  min-width: auto !important;
}

@media screen and (max-width: 550px) {
  .kviz-button {
    font-size: 14px !important;
    padding: 8px 18px !important;
    bottom: 15px;
    left: 15px;
  }
}