#toggle-mobile-menu {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.switch-mobile {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-right: 0px;
}

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

.slider-mobile {
  display: flex;
  flex-direction: row;
  position: absolute;
  cursor: pointer;
  top: -1px;
  left: 0;
  right: 0;
  bottom: 0;
  border: solid 1px #000;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 0 2px 0 4px;
}

.slider-mobile::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  top: 4px;
  right: 0;
  left: 4px;
  bottom: 4px;
  background-color: #acf8de;
  -webkit-transition: .4s;
  transition: .4s;
  border: solid 1px #000;
}

/* Rounded sliders */
.slider-mobile.round {
    border-radius: 34px;
    border: solid 1px #000;
}

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

input:checked + .slider-mobile {
}

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

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

.toogle-menu {
    display: flex;
    align-items: center;
}

#toogle-menu {
    flex-shrink: 0;
    width: auto;

}
.btn-circle-full {
    width:24px;
    height:24px;
    border: solid 1px #000;
    border-radius: 40px;
    margin:0.625em;
}

.btn-circle-stroke {
    width:24px;
    height:24px;
    border: solid 1px #000;
    border-radius: 40px;
    margin:0.625em;
}

.btn-circle-point {
    width:24px;
    height:24px;
    border: solid 1px #000;
    border-radius: 40px;
    margin:0.625em;
}
/*
.btn-circle-full::after,
.btn-circle-stroke::after,
.btn-circle-point::after,
.switch::after {
  content: attr(data-hover-text);
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  color: #fff;
  padding: 5px;
  display: none;
}

.btn-circle-full:hover::after,
.btn-circle-stroke:hover::after,
.btn-circle-point:hover::after,
.switch:hover::after {
  display: block;
}
*/
label {
    margin-bottom: 0;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
  display: flex;
  flex-direction: row;
  position: absolute;
  cursor: pointer;
  top: -1px;
  left: 0;
  right: 0;
  bottom: 0;
  border: solid 1px #000;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 0 2px 0 4px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  top: -1px;
  right: 0;
  left: -1px;
  bottom: 4px;
  background-color: #acf8de;
  -webkit-transition: .4s;
  transition: .4s;
  border: solid 1px #000;
}

input:checked + .slider {
    background-color: #000000;
}
input:checked + .slider .toogle-box-txt-on {
    color: #ACF8DE;
}

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;
    border: solid 1px #000;
}

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

label .switch {
    margin-bottom: 0;
}
.toogle-box-txt-on,
.toogle-box-txt-off {
    font-size: 10px;
    text-transform: uppercase;
	font-weight:bold;
    width: 100%;
    display: flex;
    place-content: center;
    align-items: center;
}
@media(min-width: 1025px) {
	.switch {
  		position: relative;
  		display: inline-block;
  		width: 50px;
  		height: 23px;
  		margin: 0 20px;
}
	
}
@media(max-width: 1024px) {
    .btn-circle-point,
    .btn-circle-full,
    .btn-circle-stroke {
        display: none;
    }
	
    .section-toggle .elementor-container .elementor-column .elementor-widget-wrap .elementor-section .elementor-container {
        display: flex;
        justify-content: end;
    }
	.switch {
  		position: relative;
  		display: inline-block;
  		width: 50px;
  		height: 23px;
  		margin: 0;
}
}