.alogic-form {
 font-size: 16px;
}

* {
    box-sizing: border-box;
}

input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 16px;
}




input[type=password] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 16px;

}


label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    background-color: #632a61;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
}

input[type=submit]:disabled {
   background-color: #ddd !important;
}

.button {
    background-color: #4CAF50;
    background-color: #45a049;
    color: #fff;
    /**padding: 12px 20px;**/
    line-height: 50px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    /**background-color: #4CAF50;**/

}


.button_red {
    background-color: darkorange;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button_red:hover {
    background-color: brightred;
}



input[type=submit]:hover {
    /**background-color: #45a049; **/
}


.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}


/** switch **/
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 18px !important;
  background-color: rgba(150, 150, 150, 1);
  border-radius: 18px;
  transition: all 0.3s;
  cursor: pointer;
}
.switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius:50%;
  background-color: white;
  top: 1px;
  left: 1px;
  transition: all 0.3s;
}

.checkbox:checked + .switch::after {
  left : 20px;
}
.checkbox:checked + .switch {
  background-color: lightgreen;
}
.checkbox {
  display : none;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}


.slidecontainer {
  width: 400px; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  border-radius: 5px;
  width: 100%; /* Full-width */
  height: 15px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  border-radius: 50%;
  border: 0px;
  background: lightgreen; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  border-radius: 50%;
  border: 0px;
  background: lightgreen; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider-current {
  width: 100%;
  text-align: center;
  line-height: 25px;
}


/* pretty radio */
label > input[type="radio"] {
  display: none;
  cursor: pointer;
}
label > input[type="radio"] + *::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  margin-right: 0.3rem;
  border-radius: 50%;
  border-style: solid;
  border-width: 0.2rem;
  border-color: lightgreen;
}
label > input[type="radio"]:checked + * {
}
label > input[type="radio"]:checked + *::before {
  background: radial-gradient(lightgreen 0%, lightgreen 40%, transparent 50%, transparent);
  border-color: lightgreen;
}

label > input[type="radio"] + * {
  display: inline-block;
  padding: 0.5rem 1rem;
}



