:root {
  --sw-border-color: #eeeeee;
  --sw-toolbar-btn-color: #ffffff;
  --sw-toolbar-btn-background-color: #009EF7;
  --sw-anchor-default-primary-color: #f8f9fa;
  --sw-anchor-default-secondary-color: #b0b0b1;
  --sw-anchor-active-primary-color: #009EF7;
  --sw-anchor-active-secondary-color: #ffffff;
  --sw-anchor-done-primary-color: #90d4fa;
  --sw-anchor-done-secondary-color: #fefefe;
  --sw-anchor-disabled-primary-color: #f8f9fa;
  --sw-anchor-disabled-secondary-color: #dbe0e5;
  --sw-anchor-error-primary-color: #dc3545;
  --sw-anchor-error-secondary-color: #ffffff;
  --sw-anchor-warning-primary-color: #ffc107;
  --sw-anchor-warning-secondary-color: #ffffff;
  --sw-progress-color: #0367b9 /*#01437a*/ ;
  --sw-progress-background-color: #f8f9fa;
  --sw-loader-color: #009EF7;
  --sw-loader-background-color: #f8f9fa;
  --sw-loader-background-wrapper-color: rgba(255, 255, 255, 0.7);
}

/* web cam style */
.webcam-layout {
  height: 350px !important;
  overflow: hidden;
}
.webcam-layout .preview {
  position: relative;
  border-radius: 10px !important;
  overflow: hidden;
}
.webcam-layout .preview .preview--stream {
  position: relative;
  height: 350px !important;
  border-radius: 10px !important;
}
.webcam-layout .preview .preview--stream .stream-canvas, .webcam-layout .preview .preview--stream #canvas-preview, .webcam-layout .preview .preview--stream #image-preview {
  display: inline-block;
  border-radius: 10px !important;
  width: 100%;
  height: 100%;
  height: 360px !important;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(1, 67, 122, 0.2);
}
.webcam-layout .preview .preview--stream #canvas-preview, .webcam-layout .preview .preview--stream:not(.stream-run) {
  display: none;
}
.webcam-layout .preview .preview--stream.stream-run {
  position: relative;
}
.webcam-layout .preview .preview--stream.stream-run::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 10%;
  height: 20%;
  border-style: solid;
  border-color: transparent transparent yellow yellow;
  border-width: 3px;
  margin: 0 0 20px 10%;
  border-radius: 8px;
  animation: cadre 1s linear infinite;
}
.webcam-layout .preview .preview--stream.stream-run::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 10%;
  height: 20%;
  border-style: solid;
  border-color: yellow yellow transparent transparent;
  border-width: 3px;
  margin: 20px 10% 0 0;
  border-radius: 8px;
  animation: cadre 1s linear infinite;
}
.webcam-layout .preview.show::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 10%;
  height: 20%;
  border-style: solid;
  border-color: yellow transparent transparent yellow;
  border-width: 3px;
  margin: 20px 0 0 10%;
  border-radius: 8px;
  z-index: 1;
  animation: cadre 1s linear infinite;
}
.webcam-layout .preview.show::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 10%;
  height: 20%;
  border-style: solid;
  border-color: transparent yellow yellow transparent;
  border-width: 3px;
  margin: 0 10% 20px 0;
  border-radius: 8px;
  animation: cadre 1s linear infinite;
}
.webcam-layout .webcam-btn {
  position: relative;
  width: 100%;
  text-align: center;
  margin: -15px auto 0;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
}
.webcam-layout .webcam-btn .fa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: #3D5EE1;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  margin: -50px auto 0;
}
.webcam-layout .webcam-btn .fa#click-photo {
  background: #ff5c00;
}
.webcam-layout .webcam-btn .fa#click-photo.hide {
  display: none;
}
.webcam-layout .webcam-btn .fa#check-camera.hide, .webcam-layout .webcam-btn .fa#start-camera.hide {
  display: none;
}
.webcam-layout .webcam-btn .fa#check-camera {
  background: rgb(37, 139, 54);
}

.counter {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 5rem;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.counter.show {
  display: flex;
}
.counter::before {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: attr(data-label);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.counter::after {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-color: yellow #ccc #ccc #ccc;
  border-width: 0.3rem;
  animation: circle 1s infinite;
  border-radius: 8rem;
  width: 8rem;
  height: 8rem;
}

@keyframes cadre {
  0%, 10%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes circle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.author-profile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.author-profile .author-media #avatar_preview {
  border-radius: 80%;
  width: 120px;
  height: 120px;
  border: 1px solid #eee;
  background: #fff;
}
.author-profile .author-media .upload-link {
  overflow: hidden;
  width: 30px;
  height: 30px;
  border-radius: 80%;
  background: #3D5EE1;
  color: #fff;
  position: absolute;
  margin-top: -35px;
  margin-left: 85px;
  border: 2px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.author-profile .author-media .upload-link #avatar-picture {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  display: none;
}
.author-profile .author-media .upload-link#capture-camera-image {
  margin-left: 3px;
  margin-top: -35px;
}
.author-profile .author-info {
  text-align: center;
}
.author-profile .author-info h6 {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */