body {
  font-family: "Roboto Mono", monospace;
  background-color: #fff;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Oswald", sans-serif !important;
  color: #000;
  text-transform: uppercase; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.text-black {
  color: #000; }

.content {
  padding: 7rem 0; }

.thin-heading {
  font-weight: 300;
  font-size: 40px; }

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  padding: 0;
  border-radius: 0px; }
  .form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000; }

.col-form-label {
  color: #000; }

.btn, .form-control, .custom-select {
  height: 50px; }

.custom-select:active, .custom-select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000; }

.heading {
  color: #888;
  letter-spacing: .05rem;
  text-transform: uppercase;
  font-weight: 400; }

.btn {
  border: none;
  border-radius: 0; }
  .btn.btn-primary {
    background: #000;
    color: #fff;
    padding: 15px 20px; }
  .btn:hover {
    color: #fff; }
  .btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; }

.box {
  padding: 40px;
  background: #fff;
  -webkit-box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08);
  box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08); }
  .box h3 {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center; }

label.error {
  font-size: 12px;
  color: red; }

#message {
  resize: vertical; }

#form-message-warning, #form-message-success {
  display: none; }

#form-message-warning {
  color: #B90B0B; }

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold; }

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000; }

/*--------------------------------------------------
	Mautic LABELS (Messages - Notifications )
---------------------------------------------------
*/
.mauticform-error {
  display: inline-block;
  padding: 0 10px;
  background: #1e87f0;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
  background-color: #f0506e;
  color: #fff;
}
.mauticform-message {
  display: inline-block;
  padding: 0 10px;
  background: #1e87f0;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #000000;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
  background-color: #32d296;
  color: #fff;
}
.mauticform-errormsg {
  display: inline-block;
  padding: 0 10px;
  line-height: 1.5;
  font-size: 0.875rem;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
  background-color: #fba05a;
  color: #000000;
}

/*--------------------------------------------------
Mautic RADIO group Styling
---------------------------------------------------*/
/*
.radio {
  margin: 0.5rem;
  input[type="radio"] {
    position: absolute;
    opacity: 0.5;
    + .radio-label {
      &:before {
        content: '';
        border-radius: 100%;
        border: 1px solid darken("#000000;", 25%);
        display: inline-block;
        width: 1.4em;
        height: 1.4em;
        position: relative;
        top: -0.2em;
        margin-right: 1em; 
        vertical-align: top;
        cursor: pointer;
        text-align: center;
        transition: all 250ms ease;
      }
    }
    &:checked {
      + .radio-label {
        &:before {
          background-color: $color2;
          box-shadow: inset 0 0 0 4px $color1;
        }
      }
    }
    &:focus {
      + .radio-label {
        &:before {
          outline: none;
          border-color: $color2;
        }
      }
    }
    &:disabled {
      + .radio-label {
        &:before {
          box-shadow: inset 0 0 0 4px $color1;
          border-color: darken($color1, 25%);
          background: darken($color1, 25%);
        }
      }
    }
    + .radio-label {
      &:empty {
        &:before {
          margin-right: 0;
        }
      }
    }
  }
}
*/
  
/*--------------------------------------------------
Mautic CHECKBOX Group Styling
---------------------------------------------------
*/


  .mauticform-checkboxgrp-row input[type="checkbox"] {
    display: none;
    visibility: hidden;
  }

  .mauticform-checkboxgrp-row label {
    position: relative;
    padding-left: 2em;
    padding-right: 1em;
    line-height: 2;
    cursor: pointer;
    display: inline-flex;
  }

  .mauticform-checkboxgrp-row label:before {
    box-sizing: border-box;
    content: " ";
    position: absolute;
    top: 0.3em;
    left: 0;
    display: block;
    width: 1.4em;
    height: 1.4em;
    border: 2px solid #9098A9;
    border-radius: 6px;
    z-index: -1;
  }

  .mauticform-checkboxgrp-row input[type=checkbox]:checked + label {
    padding-left: 1em;
    color: #0f5229;
  }
  .mauticform-checkboxgrp-row input[type=checkbox]:checked + label:before {
    top: 0;
    width: 100%;
    height: 2em;
    background: #b7e6c9;
    border-color: #2cbc63;
  }

  .mauticform-checkboxgrp-row label,
  .mauticform-checkboxgrp-row label::before {
    transition: 0.25s all ease;
  }


/***************************
Notification blocks
****************************/
.alert {
position: relative;
top: 10;
left: 0;
width: auto;
height: auto;
padding: 10px;
margin: 10px;
line-height: 1.8;
border-radius: 5px;
cursor: hand;
cursor: pointer;
font-family: sans-serif;
font-weight: 400;
}

.alertCheckbox {
display: none;
}

:checked + .alert {
display: none;
}

.alertText {
display: table;
margin: 0 auto;
text-align: center;
font-size: 16px;
}

.alertClose {
float: right;
padding-top: 5px;
font-size: 10px;
}

.clear {
clear: both;
}

.info {
background-color: #EEE;
border: 1px solid #DDD;
color: #999;
}

.success {
background-color: #EFE;
border: 1px solid #DED;
color: #9A9;
}

.notice {
background-color: #EFF;
border: 1px solid #DEE;
color: #9AA;
}

.warning {
background-color: #FDF7DF;
border: 1px solid #FEEC6F;
color: #C9971C;
}

.error {
background-color: #FEE;
border: 1px solid #EDD;
color: #A66;
}
