.btn{
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
   border-style: solid;
   border-radius:6px;
   box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
   font-family:'Montserrat', sans-serif;
   font-size:16px;
   font-weight:600;
   padding:6px 20px;
}

.btn:focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus{
    box-shadow:0px 3px 6px rgba(0,0,0,0.16) !important;
}


.btn::-ms-expand,
.btn-submit::-ms-expand{
    display:none;
}

.btn-submit,
.btn-submit:focus{
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
   border:0;
   background-color:transparent;
   box-shadow:none !important;
}

.btn-primary{
  background: linear-gradient(to bottom, #45946C, #283044);
  border:0;
  border-radius:6px;
  text-transform: uppercase;
}

.btn-outline,
.btn-outline:hover{
  background-color:#fff;
  color:#45946C;
  text-transform: uppercase;
}

.btn-grey{
  text-transform:uppercase;
}

.full-height{
  height:100%;
}

textarea.full-height{
  margin-bottom:16px;
}
input:focus,
a:focus,
button:focus,
textarea:focus,
i:focus,
select:focus,
.btn:focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus{
    outline:none !important;
}
input, textarea, select{
  color:#4B4B4B;
}
h1,h2,h3,h4,h5,h6{
  font-weight:600;
  color:#707070;
}
h1{
  font-size:24px;
}
h1 > i{
  margin-right:10px;
}
.la-close{
  cursor: pointer;
}
.semibold{
  font-weight:600 !important;
}
.bold{
    font-weight:700;
}

.uppercase{
    text-transform:uppercase;
}

.alert-danger{
  width:100%;
  color: #721c24;
  background-color:#f8d7da;
  border:1px solid #f5c6cb;
  padding:5px 20px;
  box-sizing: border-box;
}
.alert-danger p,
.alert-success p{
  margin:0;
}

.alert-success{
  width:100%;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding:5px 20px;
}


/* custom checkbox */
/* The container */
.checkbox-label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align:left;
  width:100% !important;
}

/* Hide the browser's default checkbox */
.checkbox-label input {
  position: absolute !important;
  opacity: 0 !important;
  cursor: pointer !important;
  height: 0 !important;
  width: 0 !important;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border:1px solid rgba(112,112,112,0.23);
  border-radius:4px;
  transform:translate(0,-50%);
}


/* When the checkbox is checked, add a blue background */
.checkbox-label input:checked ~ .checkmark {
  border-color:#366258;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkmark:after {
  left: 7px;
  top: -7px;
  width: 8px;
  height: 20px;
  border: solid #366258;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
