body {
    background: #f5f8f9;
    padding-top: 70px;
    }

/* Credit to bootsnipp.com for the css for the color graph */
.colorgraph {
  height: 5px;
  border-top: 0;
  background: #c4e17f;
  border-radius: 5px;
  background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
  background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
  background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
  background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}

/**
* PAGE PRELOADER
* Replace with your own icon or logo and use on your site
*/
/**
* VARIABLES
* Tweak them for prefered result 
*/
#site {
  opacity: 0;
  transition: all 2s ease;
}
#preloader {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}
#preloader:before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: -1px;
  height: 100%;
  width: 100%;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
  border: 1px solid #2fc394;
  border-top: 1px solid transparent;
  border-radius: 100%;
}
#preloader > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 25px;
  width: 10.6px;
  margin-top: -12.5px;
  margin-left: -5.3px;
  -webkit-animation: wink 1s ease-in-out infinite alternate;
          animation: wink 1s ease-in-out infinite alternate;
}
@media only screen and (min-width: 768px) {
  #preloader {
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }
  #preloader:before {
    left: -2px;
    top: -2px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-right-width: 2px;
  }
  #preloader > .icon {
    height: 37.5px;
    width: 15.9px;
    margin-top: -18.75px;
    margin-left: -7.95px;
  }
}
@media only screen and (min-width: 1200px) {
  #preloader {
    height: 80px;
    width: 80px;
    margin-top: -40px;
    margin-left: -40px;
  }
  #preloader > .icon {
    height: 50px;
    width: 21.2px;
    margin-top: -25px;
    margin-left: -10.6px;
  }
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@-webkit-keyframes wink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes wink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


    .create_event_form .form-group {
        margin-bottom: 5px;
    }

    .create_event_form select.form-control:not([size]):not([multiple]) {
        height: 70px;
    }

   .create_event_form .form-control {
    border-radius: 8px;
    font-weight: 400;
    width: 100%;
    height: 70px;
    padding: 14px 18px;
    line-height: 1.42857143;
    border: 1px solid #dedbe3;
    background-color: #f8f8f9;
    #text-transform: capitalize;
    letter-spacing: 0px;
    #margin-bottom: 16px;
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
    -webkit-appearance: none;
}

/* Set font size to 16px for smartphones */
@media only screen and (max-width: 767px) {
    .create_event_form .form-control {
        font-size: 16px;
    }
}

/* Set font size to 12px for devices larger than smartphones */
@media only screen and (min-width: 768px) {
    .create_event_form .form-control {
        font-size: 12px;
    }
}
    .create_event_form .form-control:focus {
        color: #121113 !important;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #d6dadf;
    }

    .create_event_form input::-webkit-input-placeholder {
        color: #121113 !important;
    }

    .create_event_form textarea::-webkit-input-placeholder {
        color: #121113 !important;
    }

    .create_event_form .input-group-addon {
        border: 4px solid #eee;
        border-radius: 5px;
        right: 16px;
        top: 23px;
        font-size: 12px;
    }

    .create_event_form .focus {
        border: 1px solid #d2cfd7;
    }

    .create_event_form .focus:focus {
        border: 1px solid #d2cfd7;
    }

    .create_event_form .has-success .form-control {
        border-color: #3c763d;
        background-color: #f8f8f9;
        box-shadow: none;
    }

    .create_event_form .has-success .form-control:focus {
        border-color: #3c763d;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .create_event_form .has-error .form-control {
        border-color: #a94442;
        background-color: #f8f8f9;
        box-shadow: none;
    }

    .create_event_form .has-error .form-control:focus {
        border-color: #34b2a4;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .create_event_form .input-group-addon:last-child {
        border-left: 0;
        border-right: transparent;
        border-top: transparent;
        border-bottom: transparent;
    }

    .create_event_form .input-group-addon i {
        color: #0e142e;
    }

    .create_event_form select option {
        margin: 40px;
        background: rgba(255, 255, 255, 1);
        color: #7a7f94;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .create_event_form select.form-control {
        position: relative;
    }

    .create_event_form select {
        -moz-appearance: none;
        border-radius: 0px;
        font-size: 14px;
        font-weight: 700;
        width: 100%;
        padding: 14px;
        line-height: 1.42857143;
        border: 1px solid #e0e5e9;
        background-color: #fff;
        text-transform: capitalize;
        -webkit-appearance: none;
        -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
        box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
    }

     .select {
        position: relative;
        display: block;
        line-height: 3;
        overflow: hidden;
    }

    select {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0 0 0 .5em;
        cursor: pointer;
        color: #FFF;
        font-size: 16px;
    }

    .select::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        padding: 10px 17px 0px 0px;
        background: transparent;
        pointer-events: none;
        font-family: FontAwesome;
        content: "\f107";
        font-size: 16px;
    }

    .select:hover::after {
        color: #023981;
    }

    .select::after {
        -webkit-transition: .25s all ease;
        -o-transition: .25s all ease;
        transition: .25s all ease;
    }

    select option {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        cursor: pointer;
        padding: 10px;
        width: 100%;
        background-color: #fff;
        font-family: 'Merriweather Sans', sans-serif;
    }

    .input-group>.custom-select:not(:last-child),
    .input-group>.form-control:not(:last-child) {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    #datepicker {}

    .default-skin .ui-widget-header {
        border: 1px solid #e4e7e9;
        background: #f3f6f8;
        color: #fff;
        font-weight: bold;
    }

    .default-skin .ui-state-highlight,
    .default-skin .ui-widget-content .ui-state-highlight,
    .default-skin .ui-widget-header .ui-state-highlight {
        border: 1px solid #e4e7e9;
        background: #f3f6f8;
        color: #fff;
    }

    .create_event_form {
        border: 1px solid #ededed;
        border-radius: 8px;
        padding: 40px;
    }

    .create_event_form_title {
        border-bottom: 1px solid #ededed;
        padding-bottom: 25px;
        margin-bottom: 25px;
        font-size: 20px;
    }

    #radioBtn .notActive {
        color: #3276b1;
        background-color: #fff;
    }

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.radio-tile-group .input-container {
  position: relative;
  height: 7rem;
  width: 7rem;
  margin: 0.5rem;
}
.radio-tile-group .input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.radio-tile-group .input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #333333;
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}
.radio-tile-group .input-container .icon svg {
  fill: #333333;
  width: 3rem;
  height: 3rem;
}
.radio-tile-group .input-container .radio-tile-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333333;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile {
  background-color: #333333;
  border: 2px solid #333333;
  color: white;
  transform: scale(1.1, 1.1);
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .icon svg {
  fill: white;
  background-color: #333333;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
  color: white;
  background-color: #333333;
}