/*
CSS to hide the honeypot field in forms

Created by Jürgen K.
https://github.com/juergenweb 
File name: frontendforms.css
Created: 08.07.2022 
 */

.seca {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}


/* -----------------------------------------------------
  Pure CSS Progress Bars
  GitHub Project: https://github.com/rkchauhan/pure-css-progress-bars/
  By: Ravikumar Chauhan
  Find me on -
  Twitter: https://twitter.com/rkchauhan01
  Facebook: https://www.facebook.com/ravi032chauhan
  GitHub: https://github.com/rkchauhan
  CodePen: http://codepen.io/rkchauhan
-------------------------------------------------------- */
/* -----------------------------------------------------
   CSS Progress Bars
-------------------------------------------------------- */
.cssProgress {
    width: 100%;
    margin-bottom: 20px;
}

.cssProgress .progress1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: "Roboto", sans-serif;
}

.cssProgress .cssProgress-bar {
    display: block;
    float: left;
    width: 0;
    height: 100%;
    background: #3798d9;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    -webkit-transition: width 0.8s ease-in-out;
    transition: width 0.8s ease-in-out;
}


.cssProgress .cssProgress-success {
    background-color: #66bb6a !important;
}


.cssProgress .cssProgress-active {
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-size: 35px 35px;
}

.cssProgress-active {
    -webkit-animation: cssProgressActive 2s linear infinite;
    -ms-animation: cssProgressActive 2s linear infinite;
    animation: cssProgressActive 2s linear infinite;
}

@-webkit-keyframes cssProgressActive {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 35px 35px;
    }
}

@-ms-keyframes cssProgressActive {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 35px 35px;
    }
}

@keyframes cssProgressActive {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 35px 35px;
    }
}

/* -----------------------------------------------------
  Progress Bar 1
-------------------------------------------------------- */
.progress1 {
    background-color: #EEE;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress1 .cssProgress-bar {
    height: 18px;
}

.privacy-text {
    margin-bottom: 10px;
}

/* -----------------------------------------------------
  Slider Captcha
-------------------------------------------------------- */

.block {
    position: absolute;
    left: 0;
    top: 0;
}

.slidercaptcha {
    height: 300px;
    border-radius: 4px;
    margin-top: 0;
}

.slidercaptcha canvas:first-child {
    border-radius: 5px;
    border: 1px solid #e6e8eb;
}

.sliderContainer {
    position: relative;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background: #f7f9fa;
    color: #45494c;
    border-radius: 2px;
    margin-top: 5px;
    text-align:right;
    padding: 0 5px;
}

.sliderbg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: #f7f9fa;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #e6e8eb;
}


.sliderContainer .sliderIcon:before {
    margin:0;
    padding: 0;
    font-size: 30px;
    position: absolute;
    font-style:normal;
    content: '\002794';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display:flex;
    justify-content: center;
    align-items: center;

}

.sliderContainer_fail .sliderIcon:before {
    content: '\0000d7';
    font-size: 40px;
    top: -3px;
}

.sliderContainer_fail .slider {
    background-color: #f35c59 !important;
    color: #fff;
}

.sliderContainer_fail .sliderMask {
    background-color: #f7dcdd;
}

.sliderContainer_success .sliderIcon:before {
    content: '\002713';
}

.sliderContainer_success .slider {
    background-color: #02c076 !important;
    color: #fff;
}

.sliderContainer_success .sliderMask {
    background-color: #D2F4EF;
}

.sliderContainer_active .sliderText, .sliderContainer_success .sliderText, .sliderContainer_fail .sliderText {
    left: -3000em
}

.sliderMask {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    border: 0 solid #d1e9fe;
    background: #d1e9fe;
    border-radius: 2px;
}

.slider {
    position: absolute;
    margin:0;
    padding: 0;
    border: 0;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background .2s linear;
    border-radius: 2px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.slider:hover {
    background: #009efb;
    color: #fff;
    border-color: #009efb;
}


.sliderText {
    font-size: 20px;
    position: relative;
}

.refreshIcon {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    width: 26px;
    height: 26px;
    color: #fff;
    background-color: #ff4c4c;
    line-height: 26px;
    text-align: center;
    border-radius: 50px;
}

.refreshIcon:before {
    content: '\0027f3';
    font-size: 19px;
    position: relative;
    top: -1px;
    font-style: normal;
}

.refreshIcon:hover {
    color: #45494c;
    background: #f7f9fa;
}
