/* WIDTH AND HEIGHT */
.parking-image{
  width: 100px;
}

.calendarOption{
  width:48%;
  display:inline
}

.full-width{
  width: 100%;
}
.medium-width{
  width: 50%;
}
.full-height{
  height: 100%;
}
.responsive{
  max-width: 100%;
}

/* POSITION */
.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
.fixed{
  position: fixed;
}
.top{
  top: 0;
}
.bottom{
  bottom: 0;
}
.left{
  left: 0;
}
.right{
  right: 0;
}

/* DISPLAY */
.no-display{
  display: none;
}
.block{
  display: block;
}
.inline{
  display: inline !important;
}
.inline-block{
  display: inline-block;
}
.overflow-hidden {
  overflow: hidden;
}
.pull-none{
  float: none !important;
}

/* CURSOR */
.cursor-pointer{
  cursor: pointer;
}

/* EFFECTS */
.transition{
  transition-duration: .3s;
}
.transition-medium{
  transition-duration: .6s;
}
.transition-large{
  transition-duration: 1s;
}
.no-hover{
  text-decoration: none !important;
}
.no-hover-bg{
  background-color: transparent !important;
}

/* DECORATION */
.list-style-none{
  list-style-type: none;
}
.opacity{
  opacity: 1;
}
.no-opacity{
  opacity: 0;
}
.opacity-hover:hover{
  opacity: 1 !important;
}

/* FLEXBOX */
.flex-wrapper{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flex-wrapper.flex-wrapper-i{
  display: flex !important;
}
.wrap{
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.valign-center{
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.valign-start{
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
}
.valign-end{
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}
.flex-row{
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse{
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-column{
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.justify-space-between{
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.justify-center{
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.justify-start{
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}
.justify-end{
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}

/* PADDING */
.no-padding{
  padding: 0;
}
.no-padding-vertical{
  padding-top: 0;
  padding-bottom: 0;
}
.no-padding-horizontal{
  padding-left: 0;
  padding-right: 0;
}
.no-padding-top{
  padding-top: 0;
}
.no-padding-bottom{
  padding-bottom: 0;
}
.no-padding-left{
  padding-left: 0;
}
.no-padding-right{
  padding-right: 0;
}

.padding{
  padding: 15px;
}
.padding-very-light{
  padding: 5px;
}
.padding-light{
  padding: 10px;
}
.padding-hard{
  padding: 25px;
}
.padding-very-hard{
  padding: 45px;
}

.padding-vertical{
  padding-top: 15px;
  padding-bottom: 15px;
}
.padding-vertical-very-light{
  padding-top: 5px;
  padding-bottom: 5px;
}
.padding-vertical-light{
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-vertical-hard{
  padding-top: 25px;
  padding-bottom: 25px;
}
.padding-vertical-very-hard{
  padding-top: 45px;
  padding-bottom: 45px;
}

.padding-horizontal{
  padding-left: 15px;
  padding-right: 15px;
}
.padding-horizontal-very-light{
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.padding-horizontal-light{
  padding-left: 10px;
  padding-right: 10px;
}
.padding-horizontal-hard{
  padding-left: 25px;
  padding-right: 25px;
}
.padding-horizontal-very-hard{
  padding-left: 45px;
  padding-right: 45px;
}
.padding-horizontal-ultra-hard{
  padding-left: 60px;
  padding-right: 60px;
}

.padding-top{
  padding-top: 15px;
}
.padding-top-very-light{
  padding-top: 5px;
}
.padding-top-light{
  padding-top: 10px;
}
.padding-top-hard{
  padding-top: 25px;
}
.padding-top-very-hard{
  padding-top: 45px;
}

.padding-bottom{
  padding-bottom: 15px;
}
.padding-bottom-very-light{
  padding-bottom: 5px;
}
.padding-bottom-light{
  padding-bottom: 10px;
}
.padding-bottom-hard{
  padding-bottom: 25px;
}
.padding-bottom-very-hard{
  padding-bottom: 45px;
}

.padding-left{
  padding-left: 15px;
}
.padding-left-very-light{
  padding-left: 5px;
}
.padding-left-light{
  padding-left: 10px;
}
.padding-left-hard{
  padding-left: 25px;
}
.padding-left-very-hard{
  padding-left: 45px;
}

.padding-right{
  padding-right: 15px;
}
.padding-right-very-light{
  padding-right: 5px;
}
.padding-right-light{
  padding-right: 10px;
}
.padding-right-hard{
  padding-right: 25px;
}
.padding-right-very-hard{
  padding-right: 45px;
}

/* MARGIN */
.no-margin{
  margin:0;
}
.no-margin-top{
  margin-top: 0;
}
.no-margin-bottom{
  margin-bottom: 0;
}
.no-margin-left{
  margin-left: 0;
}
.no-margin-right{
  margin-right: 0;
}

.margin-vertical{
  margin-top: 15px;
  margin-bottom: 15px;
}
.margin-vertical-very-light{
  margin-top: 5px;
  margin-bottom: 5px;
}
.margin-vertical-light{
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-vertical-hard{
  margin-top: 25px;
  margin-bottom: 25px;
}
.margin-vertical-very-hard{
  margin-top: 45px;
  margin-bottom: 45px;
}

.margin-horizontal{
  margin-left: 15px;
  margin-right: 15px;
}
.margin-horizontal-very-light{
  margin-left: 5px;
  margin-right: 5px;
}
.margin-horizontal-light{
  margin-left: 10px;
  margin-right: 10px;
}
.margin-horizontal-hard{
  margin-left: 25px;
  margin-right: 25px;
}
.margin-horizontal-very-hard{
  margin-left: 45px;
  margin-right: 45px;
}

.margin-top{
  margin-top: 15px;
}
.margin-top-very-light{
  margin-top: 5px;
}
.margin-top-light{
  margin-top: 10px;
}
.margin-top-hard{
  margin-top: 25px;
}
.margin-top-very-hard{
  margin-top: 45px;
}

.margin-bottom{
  margin-bottom: 15px;
}
.margin-bottom-very-light{
  margin-bottom: 5px;
}
.margin-bottom-light{
  margin-bottom: 10px;
}
.margin-bottom-hard{
  margin-bottom: 25px;
}
.margin-bottom-very-hard{
  margin-bottom: 45px;
}

.margin-left{
  margin-left: 15px;
}
.margin-left-very-light{
  margin-left: 5px;
}
.margin-left-light{
  margin-left: 10px;
}
.margin-left-hard{
  margin-left: 25px;
}
.margin-left-very-hard{
  margin-left: 45px;
}

.margin-right{
  margin-right: 15px;
}
.margin-right-very-light{
  margin-right: 5px;
}
.margin-right-light{
  margin-right: 10px;
}
.margin-right-hard{
  margin-right: 25px;
}
.margin-right-very-hard{
  margin-right: 45px;
}

/* BACKGROUND */
.background-cover{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg-black{
  background: #000;
}
.bg-darkgrey{
  background: #222 !important;
}
.bg-white{
  background: #FFF;
}
.bg-white-50{
  background:rgba(255,255,255,0.5);
}

/* COLOR */
.color-white{
  color: #FFF;
}
.color-darkgray{
  color: #222;
}
.color-black{
  color: #000;
}

/* TEXT */
.text-light{
  font-weight: lighter !important;
}
.text-normal{
  font-weight: normal !important;
}
.text-semi-bold{
  font-weight: 600 !important;
}
.text-bold {
  font-weight: 700 !important;
}
.size-small{
  font-size: .85em !important;
}
.size-normal{
  font-size: 1em;
}
.size-big{
  font-size: 1.2em;
}
.line-height-none{
  line-height: 0;
}

/* BORDER */
.border-radius-none{
  border-radius: 0 !important;
}
.border-black{
  border: 1px solid black;
}
.border-white{
  border: 1px solid white;
}
.border-color-black{
  border-color: black;
}
.border-color-white{
  border-color: #FFF;
}


@media screen and (max-width: 992px){

  /* WIDTH AND HEIGHT */
  .full-width-md{
    min-width: 100%;
    width: 100%;
  }
  .medium-width-md{
    width: 50%;
  }
  .full-height-md{
    height: 100%;
  }
  .responsive-md{
    max-width: 100%;
  }

  /* POSITION*/
  .relative-md{
    position: relative;
  }
  .absolute-md{
    position: absolute;
  }
  .fixed-md{
    position: fixed;
  }
  .top-md{
    top: 0;
  }
  .bottom-md{
    bottom: 0;
  }
  .left-md{
    left: 0;
  }
  .right-md{
    right: 0;
  }

  /* DECORATION */
  .opacity-md{
    opacity: 0;
  }
  .no-opacity-md{
    opacity: 0;
  }
  .opacity-hover-md:hover{
    opacity: 1 !important;
  }

  /* DISPLAY */
  .no-display-md{
    display: none;
  }
  .block-md{
    display: block;
  }
  .inline-md{
    display: inline;
  }
  .inline-block-md{
    display: inline-block;
  }
  .pull-none-md{
    float: none !important;
  }
  .pull-left-md{
    float: left !important;
  }
  .pull-right-md{
    float: right !important;
  }

  /* MARGIN */
  .no-margin-md{
    margin: 0 !important;
  }
  .no-margin-top-md{
    margin-top: 0 !important;
  }
  .no-margin-bottom-md{
    margin-bottom: 0 !important;
  }
  .no-margint-left-md{
    margin-left: 0 !important;
  }
  .no-margin-right-md{
    margin-right: 0 !important;
  }

  .margin-top-md{
    margin-top: 15px !important;
  }
  .margin-top-very-light-md{
    margin-top: 5px !important;
  }
  .margin-top-light-md{
    margin-top: 10px !important;
  }
  .margin-top-hard-md{
    margin-top: 25px !important;
  }
  .margin-top-very-hard-md{
    margin-top: 45px !important;
  }

  .margin-bottom-md{
    margin-bottom: 15px !important;
  }
  .margin-bottom-very-light-md{
    margin-bottom: 5px !important;
  }
  .margin-bottom-light-md{
    margin-bottom: 10px !important;
  }
  .margin-bottom-hard-md{
    margin-bottom: 25px !important;
  }
  .margin-bottom-very-hard-md{
    margin-bottom: 45px !important;
  }

  .margin-left-md{
    margin-left: 15px !important;
  }
  .margin-left-very-light-md{
    margin-left: 5px !important;
  }
  .margin-left-light-md{
    margin-left: 10px !important;
  }
  .margin-left-hard-md{
    margin-left: 25px !important;
  }
  .margin-left-very-hard-md{
    margin-left: 45px !important;
  }

  .margin-right-md{
    margin-right: 15px !important;
  }
  .margin-right-very-light-md{
    margin-right: 5px !important;
  }
  .margin-right-light-md{
    margin-right: 10px !important;
  }
  .margin-right-hard-md{
    margin-right: 25px !important;
  }
  .margin-right-very-hard-md{
    margin-right: 45px !important;
  }

  /* PADDING */
  .no-padding-md{
    padding: 0 !important;
  }
  .no-padding-vertical-md{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .no-padding-horizontal-md{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .no-padding-top-md{
    padding-top: 0 !important;
  }
  .no-padding-bottom-md{
    padding-bottom: 0 !important;
  }
  .no-padding-left-md{
    padding-left: 0 !important;
  }
  .no-padding-right-md{
    padding-right: 0 !important;
  }

  .padding-vertical-md{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .padding-vertical-very-light-md{
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .padding-vertical-light-md{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .padding-vertical-hard-md{
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .padding-vertical-very-hard-md{
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .padding-horizontal-md{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .padding-horizontal-very-light-md{
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .padding-horizontal-light-md{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .padding-horizontal-hard-md{
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .padding-top-md{
    padding-top: 15px !important;
  }
  .padding-top-very-light-md{
    padding-top: 5px !important;
  }
  .padding-top-light-md{
    padding-top: 10px !important;
  }
  .padding-top-hard-md{
    padding-top: 25px !important;
  }

  .padding-bottom-md{
    padding-bottom: 15px !important;
  }
  .padding-bottom-very-light-md{
    padding-bottom: 5px !important;
  }
  .padding-bottom-light-md{
    padding-bottom: 10px !important;
  }
  .padding-bottom-hard-md{
    padding-bottom: 25px !important;
  }

  .padding-left-md{
    padding-left: 15px !important;
  }
  .padding-left-very-light-md{
    padding-left: 5px !important;
  }
  .padding-left-light-md{
    padding-left: 10px !important;
  }
  .padding-left-hard-md{
    padding-left: 25px !important;
  }

  .padding-right-md{
    padding-right: 15px !important;
  }
  .padding-right-very-light-md{
    padding-right: 5px !important;
  }
  .padding-right-light-md{
    padding-right: 10px !important;
  }
  .padding-right-hard-md{
    padding-right: 25px !important;
  }



  /* FLEXBOX */
  .flex-wrapper-md{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .wrap-md{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .valign-center-md{
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
  .valign-start-md{
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
  }
  .valign-end-md{
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
  }
  .flex-row-md{
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-md{
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-md{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  .justify-space-between-md{
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
  .justify-center-md{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  .justify-start-md{
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
  }
  .justify-end-md{
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
  }


  /* TEXT */
  .text-light-md{
    font-weight: lighter !important;
  }
  .text-normal-md{
    font-weight: normal !important;
  }
  .text-semi-bold-md{
    font-weight: 600 !important;
  }
  .text-bold-md {
    font-weight: 700 !important;
  }
  .size-small-md{
    font-size: .85em !important;
  }
  .size-normal-md{
    font-size: 1em;
  }
  .size-big-md{
    font-size: 1.2em;
  }
  .text-center-md{
    text-align: center;
  }
  .text-left-md{
    text-align: left;
  }
  .text-right-md{
    text-align: right;
  }
}


@media screen and (max-width: 768px){
  .navbar-header .navbar-brand img {
    height: 30px;
    width: auto !important;
  }
  .navbar-header .navbar-toggle {
    margin-top: 25px;
  }
  /* WIDTH AND HEIGHT */
  .full-width-xs{
    min-width: 100%;
    width: 100%;
  }
  .medium-width-xs{
    width: 50%;
  }
  .full-height-xs{
    height: 100%;
  }
  .responsive-xs{
    max-width: 100%;
  }

  /* POSITION*/
  .relative-xs{
    position: relative;
  }
  .absolute-xs{
    position: absolute;
  }
  .fixed-xs{
    position: fixed;
  }
  .top-xs{
    top: 0;
  }
  .bottom-xs{
    bottom: 0;
  }
  .left-xs{
    left: 0;
  }
  .right-xs{
    right: 0;
  }

  /* DECORATION */
  .opacity-xs{
    opacity: 0;
  }
  .no-opacity-xs{
    opacity: 0;
  }
  .opacity-hover-xs:hover{
    opacity: 1 !important;
  }

  /* DISPLAY */
  .no-display-xs{
    display: none;
  }
  .block-xs{
    display: block;
  }
  .inline-xs{
    display: inline;
  }
  .inline-block-xs{
    display: inline-block;
  }
  .pull-none-xs{
    float: none !important;
  }
  .pull-left-xs{
    float: left !important;
  }
  .pull-right-xs{
    float: right !important;
  }

  /* MARGIN */
  .no-margin-xs{
    margin: 0 !important;
  }
  .no-margin-top-xs{
    margin-top: 0 !important;
  }
  .no-margin-bottom-xs{
    margin-bottom: 0 !important;
  }
  .no-margint-left-xs{
    margin-left: 0 !important;
  }
  .no-margin-right-xs{
    margin-right: 0 !important;
  }

  .margin-top-xs{
    margin-top: 15px !important;
  }
  .margin-top-very-light-xs{
    margin-top: 5px !important;
  }
  .margin-top-light-xs{
    margin-top: 10px !important;
  }
  .margin-top-hard-xs{
    margin-top: 25px !important;
  }
  .margin-top-very-hard-xs{
    margin-top: 45px !important;
  }

  .margin-bottom-xs{
    margin-bottom: 15px !important;
  }
  .margin-bottom-very-light-xs{
    margin-bottom: 5px !important;
  }
  .margin-bottom-light-xs{
    margin-bottom: 10px !important;
  }
  .margin-bottom-hard-xs{
    margin-bottom: 25px !important;
  }
  .margin-bottom-very-hard-xs{
    margin-bottom: 45px !important;
  }

  .margin-left-xs{
    margin-left: 15px !important;
  }
  .margin-left-very-light-xs{
    margin-left: 5px !important;
  }
  .margin-left-light-xs{
    margin-left: 10px !important;
  }
  .margin-left-hard-xs{
    margin-left: 25px !important;
  }
  .margin-left-very-hard-xs{
    margin-left: 45px !important;
  }

  .margin-right-xs{
    margin-right: 15px !important;
  }
  .margin-right-very-light-xs{
    margin-right: 5px !important;
  }
  .margin-right-light-xs{
    margin-right: 10px !important;
  }
  .margin-right-hard-xs{
    margin-right: 25px !important;
  }
  .margin-right-very-hard-xs{
    margin-right: 45px !important;
  }

  /* PADDING */
  .no-padding-xs{
    padding: 0 !important;
  }
  .no-padding-vertical-xs{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .no-padding-horizontal-xs{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .no-padding-top-xs{
    padding-top: 0 !important;
  }
  .no-padding-bottom-xs{
    padding-bottom: 0 !important;
  }
  .no-padding-left-xs{
    padding-left: 0 !important;
  }
  .no-padding-right-xs{
    padding-right: 0 !important;
  }

  .padding-vertical-xs{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .padding-vertical-very-light-xs{
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .padding-vertical-light-xs{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .padding-vertical-hard-xs{
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .padding-vertical-very-hard-xs{
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .padding-horizontal-xs{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .padding-horizontal-very-light-xs{
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .padding-horizontal-light-xs{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .padding-horizontal-hard-xs{
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .padding-top-xs{
    padding-top: 15px !important;
  }
  .padding-top-very-light-xs{
    padding-top: 5px !important;
  }
  .padding-top-light-xs{
    padding-top: 10px !important;
  }
  .padding-top-hard-xs{
    padding-top: 25px !important;
  }

  .padding-bottom-xs{
    padding-bottom: 15px !important;
  }
  .padding-bottom-very-light-xs{
    padding-bottom: 5px !important;
  }
  .padding-bottom-light-xs{
    padding-bottom: 10px !important;
  }
  .padding-bottom-hard-xs{
    padding-bottom: 25px !important;
  }

  .padding-left-xs{
    padding-left: 15px !important;
  }
  .padding-left-very-light-xs{
    padding-left: 5px !important;
  }
  .padding-left-light-xs{
    padding-left: 10px !important;
  }
  .padding-left-hard-xs{
    padding-left: 25px !important;
  }

  .padding-right-xs{
    padding-right: 15px !important;
  }
  .padding-right-very-light-xs{
    padding-right: 5px !important;
  }
  .padding-right-light-xs{
    padding-right: 10px !important;
  }
  .padding-right-hard-xs{
    padding-right: 25px !important;
  }


  /* TEXT */
  .text-light-xs{
    font-weight: lighter !important;
  }
  .text-normal-xs{
    font-weight: normal !important;
  }
  .text-semi-bold-xs{
    font-weight: 600 !important;
  }
  .text-bold-xs {
    font-weight: 700 !important;
  }
  .size-small-xs{
    font-size: .85em !important;
  }
  .size-normal-xs{
    font-size: 1em;
  }
  .size-big-xs{
    font-size: 1.2em;
  }
  .text-center-xs{
    text-align: center;
  }
  .text-left-xs{
    text-align: left;
  }
  .text-right-xs{
    text-align: right;
  }


  /* FLEXBOX */
  .flex-wrapper-xs{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .wrap-xs{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .valign-center-xs{
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
  .valign-start-xs{
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
  }
  .valign-end-xs{
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
  }
  .flex-row-xs{
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse-xs{
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-column-xs{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  .justify-space-between-xs{
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
  .justify-center-xs{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  .justify-start-xs{
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
  }
  .justify-end-xs{
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
  }

}



/* DESKTOP VIEW */

@media screen and (min-width: 993px){

  /* WIDTH AND HEIGHT */
  .full-width-lg{
    min-width: 100%;
    width: 100%;
  }
  .medium-width-lg{
    width: 50%;
  }
  .full-height-lg{
    height: 100%;
  }
  .responsive-lg{
    max-width: 100%;
  }

  /* POSITION*/
  .relative-lg{
    position: relative;
  }
  .absolute-lg{
    position: absolute;
  }
  .fixed-lg{
    position: fixed;
  }
  .top-lg{
    top: 0;
  }
  .bottom-lg{
    bottom: 0;
  }
  .left-lg{
    left: 0;
  }
  .right-lg{
    right: 0;
  }

  /* DECORATION */
  .opacity-lg{
    opacity: 0;
  }
  .no-opacity-lg{
    opacity: 0;
  }
  .opacity-hover-lg:hover{
    opacity: 1 !important;
  }

  /* DISPLAY */
  .no-display-lg{
    display: none;
  }
  .block-lg{
    display: block;
  }
  .inline-lg{
    display: inline;
  }
  .inline-block-lg{
    display: inline-block;
  }
  .pull-none-lg{
    float: none !important;
  }
  .pull-left-lg{
    float: left !important;
  }
  .pull-right-lg{
    float: right !important;
  }

  /* MARGIN */
  .no-margin-lg{
    margin: 0 !important;
  }
  .no-margin-top-lg{
    margin-top: 0 !important;
  }
  .no-margin-bottom-lg{
    margin-bottom: 0 !important;
  }
  .no-margint-left-lg{
    margin-left: 0 !important;
  }
  .no-margin-right-lg{
    margin-right: 0 !important;
  }

  .margin-top-lg{
    margin-top: 15px !important;
  }
  .margin-top-very-light-lg{
    margin-top: 5px !important;
  }
  .margin-top-light-lg{
    margin-top: 10px !important;
  }
  .margin-top-hard-lg{
    margin-top: 25px !important;
  }
  .margin-top-very-hard-lg{
    margin-top: 45px !important;
  }

  .margin-bottom-lg{
    margin-bottom: 15px !important;
  }
  .margin-bottom-very-light-lg{
    margin-bottom: 5px !important;
  }
  .margin-bottom-light-lg{
    margin-bottom: 10px !important;
  }
  .margin-bottom-hard-lg{
    margin-bottom: 25px !important;
  }
  .margin-bottom-very-hard-lg{
    margin-bottom: 45px !important;
  }

  .margin-left-lg{
    margin-left: 15px !important;
  }
  .margin-left-very-light-lg{
    margin-left: 5px !important;
  }
  .margin-left-light-lg{
    margin-left: 10px !important;
  }
  .margin-left-hard-lg{
    margin-left: 25px !important;
  }
  .margin-left-very-hard-lg{
    margin-left: 45px !important;
  }

  .margin-right-lg{
    margin-right: 15px !important;
  }
  .margin-right-very-light-lg{
    margin-right: 5px !important;
  }
  .margin-right-light-lg{
    margin-right: 10px !important;
  }
  .margin-right-hard-lg{
    margin-right: 25px !important;
  }
  .margin-right-very-hard-lg{
    margin-right: 45px !important;
  }

  /* PADDING */
  .no-padding-lg{
    padding: 0 !important;
  }
  .no-padding-vertical-lg{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .no-padding-horizontal-lg{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .no-padding-top-lg{
    padding-top: 0 !important;
  }
  .no-padding-bottom-lg{
    padding-bottom: 0 !important;
  }
  .no-padding-left-lg{
    padding-left: 0 !important;
  }
  .no-padding-right-lg{
    padding-right: 0 !important;
  }

  .padding-vertical-lg{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .padding-vertical-very-light-lg{
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .padding-vertical-light-lg{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .padding-vertical-hard-lg{
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .padding-vertical-very-hard-lg{
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .padding-horizontal-lg{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .padding-horizontal-very-light-lg{
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .padding-horizontal-light-lg{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .padding-horizontal-hard-lg{
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .padding-horizontal-very-hard-lg{
    padding-left: 45px !important;
    padding-right: 45px !important;
  }

  .padding-top-lg{
    padding-top: 15px !important;
  }
  .padding-top-very-light-lg{
    padding-top: 5px !important;
  }
  .padding-top-light-lg{
    padding-top: 10px !important;
  }
  .padding-top-hard-lg{
    padding-top: 25px !important;
  }
  .padding-top-very-hard-lg{
    padding-top: 45px !important;
  }

  .padding-bottom-lg{
    padding-bottom: 15px !important;
  }
  .padding-bottom-very-light-lg{
    padding-bottom: 5px !important;
  }
  .padding-bottom-light-lg{
    padding-bottom: 10px !important;
  }
  .padding-bottom-hard-lg{
    padding-bottom: 25px !important;
  }
  .padding-bottom-very-hard-lg{
    padding-bottom: 45px !important;
  }

  .padding-left-lg{
    padding-left: 15px !important;
  }
  .padding-left-very-light-lg{
    padding-left: 5px !important;
  }
  .padding-left-light-lg{
    padding-left: 10px !important;
  }
  .padding-left-hard-lg{
    padding-left: 25px !important;
  }
  .padding-left-very-hard-lg{
    padding-left: 45px !important;
  }

  .padding-right-lg{
    padding-right: 15px !important;
  }
  .padding-right-very-light-lg{
    padding-right: 5px !important;
  }
  .padding-right-light-lg{
    padding-right: 10px !important;
  }
  .padding-right-hard-lg{
    padding-right: 25px !important;
  }
  .padding-right-very-hard-lg{
    padding-right: 45px !important;
  }


  /* TEXT */
  .text-light-lg{
    font-weight: lighter !important;
  }
  .text-normal-lg{
    font-weight: normal !important;
  }
  .text-semi-bold-lg{
    font-weight: 600 !important;
  }
  .text-bold-lg {
    font-weight: 700 !important;
  }
  .size-small-lg{
    font-size: .85em !important;
  }
  .size-normal-lg{
    font-size: 1em;
  }
  .size-big-lg{
    font-size: 1.2em;
  }
  .text-center-lg{
    text-align: center;
  }
  .text-left-lg{
    text-align: left;
  }
  .text-right-lg{
    text-align: right;
  }
}
