/*GENERAL SETTINGS*/

body{
    font-size: 14px;
}

.layout-canvas-g{
max-width: 1280px;
margin: auto;
}

/* Create equal columns that sits next to each other */
.row {
  display: flex;
}
.col50 {
  flex: 50%;
  padding: 10px;
}


.bold{
    font-weight: bold;
}

a{
color: #91ad41;
}

/*FORM SETTINGS*/

.biglabel{
font-size: 16px;
}

input:required:invalid.required, input:focus:invalid.required {
  /* insert your own styles for invalid form input */
border: 2px solid red;
  -moz-box-shadow: none;
}

input[type="text"], input[type="email"]{
height: 36px;
}

textarea, input[type="text"], input[type="email"], select{
padding-left: 10px;
width: 100%;
border: 1px solid #B8BCC2;
margin-bottom: 20px;
}

textarea, input[type="text"], input[type="email"], select{
margin-top: 5px;
}

select{
height: 40px;
border: 1px solid #B8BCC2;
margin-bottom: 20px;
width: calc(100% + 14px);
}

.alignwide{
display: flex;
flex-direction: row;
justify-content: space-between;
}

input[type="submit"]{
    height: 36px;
    background-color: #5FA0AF;
    color: #FFF;
    border: none;
    border-radius: 3px;
 cursor:pointer;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0 18px;
    font-weight: 600;
}


/*Slider START*/

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

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

/* The slider */
.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: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #91AD41;
}

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

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

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

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

/*Slider END*/