.lds-circle {
  display: inline-block;
  transform: translateZ(1px);
}
.lds-circle > div {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  background: #00AA89;
  animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes lds-circle {
  0%, 100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    transform: rotateY(3600deg);
  }
}

/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.tool-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #DDE0DD;
  margin-top: 12px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .tool-checkmark {
  background-color: #DDE0DD;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .tool-checkmark {
  background-color: #DDE0DD;
}

/* Create the tool-checkmark/indicator (hidden when not checked) */
.tool-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the tool-checkmark when checked */
.checkbox-container input:checked ~ .tool-checkmark:after {
  display: block;
}

/* Style the tool-checkmark/indicator */
.checkbox-container .tool-checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #00AA89;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mt-20px{
  margin-top: 20px;
}
.mt-40px{
  margin-top: 40px;
}
.mt-80px{
  margin-top: 80px;
}

.mt-50px{
  margin-top: 50px;
}
.mt-100px{
  margin-top: 100px;
}
.mb-10px{
  margin-bottom: 10px;
}
.mb-20px{
  margin-bottom: 20px;
}
.mb-60px{
  margin-bottom: 60px;
}
.mb-80px{
  margin-bottom: 80px;
}
.ml-20px {
  margin-left: 20px;
}
#quickscan-form.flex{
  padding: 0 40px;
  margin-bottom: 50px;
  width: 100%;
  max-width: calc(100vw - 80px);
}
#quickscan h4{
  font-family: Montserrat,sans-serif;
  color: #00A3DA;
  font-size: 15px;
  line-height: 1.5rem;
  /* color: #009fe3; */
  font-weight: 600;
}
#quickscan-sidebar{
  max-width: 430px;
  width: 100%;
}

#quickscan .bg-grey.boxed{
  background-color: #DDE0DD;
  max-width: 380px;
  height: 100px;

  position: relative;
}
#quickscan .boxed .img-target{
  position: absolute;
  top: 10px;
  left: 10px;
}
#quickscan .bg-grey.boxed .row-content{
  font-size: 13px;
  font-weight: 600;
  padding: 25px 40px 10px 110px;
}
#quickscan .img-zone{
  position: absolute;
  right: -43px;
  top: -37px;
}
#quickscan-sidebar .main-content{
  padding-left: 0px;
  padding-right: 40px;
  font-size: 14px;
}

#quickscan-main{
  padding-left: 30px;
  max-width: calc(100% - 430px);
}
.row-tabs{
  padding-bottom: 40px;
  position: relative;

  overflow: hidden;
  overflow-x: auto;
}
.dotted-line{
  width: 100%;
  height: 5px;
  background-repeat:repeat-x;
}

.row-tabs ul{
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.row-tabs li{
  display: inline-block;
  flex: 1;
}
.row-tabs li a{
  color: #FFFFFF;
  padding: 10px;
  font-size: 12px;
  line-height: 17px;
  margin-right: 10px;
  font-weight: 600;
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center; 
  justify-content: center;
}
.row-tabs li a:hover{
  background-color: #DDE0DD !important;
  color: #0a0a0a;
}
.row-tabs li a:hover:before{
  border-color: #DDE0DD transparent transparent transparent !important;
}
.row-tabs  li a.active:before{
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 14px 0 14px;
  left: 50%;
  margin-left: -20px;
  bottom: -30px;
}

.panel .flex{
  display: flex;
}
.panel {
  display: none;
}
.panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.panel .column{
  font-size: 12px;
}
.panel .column .icon{
  width: 45px;
}
.panel .column .icon img{
  width: 100%;
}
.panel .column .col-3{
  padding-left: 10px;
  width: calc(100% - 100px);
}

.trigger{
  background-color: #E63329;
  position: relative;
  display: flex;
  padding: 0px 2px 0 15px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0;
  color: #fff;
  align-items: center;
}
.trigger svg {
  width: 40px;
  transition-duration: .25s;
  margin-left: 20px;
}
.trigger svg path{
  fill: #E63329;
}
.trigger svg polygon{
  fill: #fff;
}
.trigger:hover{
  background-color: #FAD6D4;
}
.trigger:hover svg path {
  fill: #FAD6D4;
}
.trigger:hover svg{
  margin-left: 25px;
}
.trigger polygon{
  fill: #002944;
}
.trigger:hover polygon{
  fill: #002944;
}

.trigger.top{
  margin-left: auto;
  margin-right: 20px;
}


#loading{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#loading.active{
  display: flex;
}

#form-msg{
  color: #ff0000;
  text-align: right;
  margin-right: 25px;
  margin-top: 10px;
}

#quickscan-form,
#download{
  display: none;
  padding: 0 40px;
  margin-bottom: 50px;
  width: 100%;
  max-width: calc(100vw - 80px);
}
#quickscan-form.active,
#download.active{
  display: block;
}
#download.active{
  background: rgba(0,0,0,0.1);
  padding: 50px 30px;
  min-height: 300px;
}
#quickscan-form.active{
  display: flex;
}

.content-msg{
  display: block;
  margin: 0 auto;
  width: 600px;
  min-height: 500px;
}
#download-link{
  text-decoration: underline;
  font-weight: 600;
}

.checked{
  position: relative;
  margin-right: 22px;
}
.checked:after{
  left: 2px;
  top: 1px;
  width: 8px;
  height: 15px;
  border: solid #00AA89;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
  display: inline-block;
}


@media(max-width: 1300px){
  .panel.active{
    grid-template-columns: 1fr;
  }
}

@media(max-width: 1023px){
  #quickscan-form.active {
    flex-direction: column;
  }
  #quickscan-sidebar {
    max-width: 100%;
  }
  #quickscan-main {
    max-width: 100%;
    width: 100%;
  }
  .panel.active{
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width: 850px){
  .panel.active{
    grid-template-columns: 1fr;
  }
  #quickscan-sidebar .main-content{
    padding-left: 10px;
    padding-right: 10px;
  }
  #quickscan-main {
    padding-left: 0px;
    max-width: 100%;
  }
  #quickscan-form.flex {
    padding: 0;
    max-width: calc(100vw - 20px);
  }
}

body .wp-block-columns.no-flex-grow > .wp-block-column {
  flex-basis: initial;
  flex-grow: initial;
}


body .wp-block-columns.no-flex-grow > .wp-block-column *{
  font-size: 16px;
}

.active-links a,
.active-link{
  color: #E63329;
  text-decoration: underline;
}

.download-current-pdf .active-link {
  display: flex !important;
}

body .um-field-label {
  display: block;
  margin: 0 0 -6px 0;
}
body [data-mode="register"] .um-col-alt,
body .um-login .um-col-alt{
  text-align: right;
}
body [data-mode="register"] .um-center,
body .um-login .um-center{
  text-align: inherit;
}
body .um-login .um-field-checkbox,
body .um-login .um-link-alt{
  text-align: left;
}


body .um input[type="submit"].um-button, 
body .um input[type="submit"].um-button:focus, 
body .um a.um-button, 
body .um a.um-button.um-disabled:hover, 
body .um a.um-button.um-disabled:focus, 
body .um a.um-button.um-disabled:active{
  background-color: #E63329;
  color: #fff;
}
body .um input[type="submit"].um-button:hover, 
body .um a.um-button:hover {
  background-color: #FAD6D4;
  color: #002944;
}

body [data-mode="profile"]{
  width: 50%;
}

@media (max-width: 1024px){
  body [data-mode="profile"]{
    width: 80%;
  }
}

#um_field_1492_user_password label{
  text-transform: capitalize;
}
p.register a{
  text-decoration: underline;
  color: #E63329;
}