/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #38BE3E;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50% !important;
}


/*ROund bootsrap progress bar*/

.progress {
  width: 150px;
  height: 150px;
  background: none;
  position: relative;
}

.progress::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}

.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}
.elementor-field-group.elementor-column.elementor-field-type-submit.elementor-col-100.e-form__buttons.elementor-sm-100 button {
  background-color: #38BE3E;
  width: 100%;
  border-radius: 5px;
}
.checkbox-custom .form-check-label {
  color: #fff;
  padding: 0 0 0 10px;
  position: relative;
  top: 5px;
}
.elementor-widget-container .form-group:not(.checkbox-custom) input{
  width: 100%;
}
.elementor-widget-container .form-group:not(.checkbox-custom) label {
  display: block;
  color: #ffff;
}

.error-msg span{
  color: #ff3131;font-size: 18px;margin-top: 10px;display: block;text-align: center;  
}
.elementor-column-wrap.elementor-element-populated {
  transition: 1s !important;
}

.success-msg h3{
  text-align: center;
  color: #fff;
}
.success-msg .circle{
  border: 5px solid #4CE052;
  border-radius: 5em;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.success-msg .circle::before {
	content: url('../images/check-arrow.svg');
	display: inline-block;
	vertical-align: middle;
	line-height: 145px;
	margin-right: 0;
	text-align: center;
	color: #4ce052;
	width: 100%;
	font-weight: bolder;
}

.success-msg .elementor-button.elementor-size-lg {
  /*font-size: 24px;*/
  margin-top: 30px;
  /*line-height: 31.5px;*/
}


.circ{
    opacity: 0;
    stroke-dasharray: 130;
    stroke-dashoffset: 130;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.tick{
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    -webkit-transition: stroke-dashoffset 1s 0.5s ease-out;
    -moz-transition: stroke-dashoffset 1s 0.5s ease-out;
    -ms-transition: stroke-dashoffset 1s 0.5s ease-out;
    -o-transition: stroke-dashoffset 1s 0.5s ease-out;
    transition: stroke-dashoffset 1s 0.5s ease-out;
}
.drawn + svg .path{
    opacity: 1;
    stroke-dashoffset: 0;
}
.switch #chk-error{
  width: 280px !important;
  position: absolute !important;
  color: red !important;
  top: 33px !important;
  left: 0 !important;
}
.wordpress-ajax-form label.error{
  color: red !important;
}
form .valid {
  border: 2px solid #4CE052 !important;
}
@media(max-width: 780px){
	.checkbox-custom .form-check-label {
		top: 17px;
		width: 77%;
	}
}