body {
    font-family: -apple-system, "Open Sans", "Helvetica Neue", Helvetica, "Arial", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","メイリオ", Meiryo, sans-serif;
    padding-top: 80px;
    padding-bottom: 20px;
}

.navbar-brand-logo {
    float: left;
    height: 25px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: -apple-system, "Open Sans", "Helvetica Neue", Helvetica, "Arial", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","メイリオ", Meiryo, sans-serif;
}

.page-header{
    border-bottom:1px solid #ecf0f1;
}

/* login form */
.login-form {
    width:300px;
    background-color: #fff;
    padding: 20px;
    margin: 50px auto 0 auto;
    text-align: center;
    -webkit-border-radius: 10px 10px 10px 10px;
       -moz-border-radius: 10px 10px 10px 10px;
            border-radius: 10px 10px 10px 10px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
       -moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
            box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.login-form input{
    display: inline-block;
    font-family: FontAwesome, Arial;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-rounded {
    border-radius: 16px;
}

.showerror {
    border: #EEA236 3px solid;
    background-color: #ffe7cb;
}

/* side panel */
.view-side-form .side-form {
    z-index: 1035;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.view-side-form .side-form .content {
    position: absolute;
    z-index: 1035;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    padding: 90px 0 15px 0;
    -webkit-overflow-scrolling: touch;
}
.view-side-form .side-form .background {
    background: #000;
    opacity: .9;
    width: 100%;
    height: 100%;
}
.view-side-form.ng-enter,
.view-side-form.ng-leave {
    transition: .3s;
}
.view-side-form.ng-enter .side-form .content {
    transform: translate(100%);
}
.view-side-form.ng-enter .side-form .background {
    opacity: 0;
}
.view-side-form.ng-enter-active .side-form .content {
    transition: transform .3s;
    transform: translate(0);
}
.view-side-form.ng-enter-active .side-form .background {
    transition: opacity .3s;
    opacity: .9;
}
.view-side-form.ng-leave-active .side-form .content {
    transition: transform .3s;
    transform: translate(100%);
}
.view-side-form.ng-leave-active .side-form .background {
    transition: opacity .3s;
    opacity: 0;
}

.icon-header {
    width: 100%;
    position: fixed;
    background-color: #2c3e50;
    padding: 7px 15px 7px 15px;
    z-index: 1050;
}

.icon-header > .container > i {
    font-size: 36px;
    vartical-align: middle;
    cursor: pointer;
}

/* Check Box */
/*
<input type="checkbox" id="check1" />
<label for="check1">TEXT HERE</label>
*/

/* Base for label styling */
input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked { position: absolute; left: -9999px; }
input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
/* checkbox aspect */
input[type="checkbox"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:5px; top: 0px;
  width: 20px; height: 20px;
  border: 1px solid #afafaf;
  border-radius: 3px;
  background: #ffffff;
}
/* checked mark aspect */
input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after {
  font-family: FontAwesome;
  content: '\f00c';
  position: absolute;
  top: 3px; left: 6px;
  font-size: 18px;
  line-height: 0.8;
  color: #fff;
  transition: all .2s;
}
/* checked mark aspect changes */
input[type="checkbox"]:checked + label:before {
  background: #3793CA;
}
input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="checkbox"]:disabled:not(:checked) + label:before,
input[type="checkbox"]:disabled:checked + label:before {  }
input[type="checkbox"]:disabled:checked + label:after { color: #999; }
input[type="checkbox"]:disabled + label { color: #aaa; }
/* accessibility */
input[type="checkbox"]:checked:focus + label:before,
input[type="checkbox"]:not(:checked):focus + label:before { border: 1px solid #afafaf; }

/* Radio */
/*
<input type="radio" id="check1" />
<label for="check1">TEXT HERE</label>
*/

/* Base for label styling */
input[type="radio"]:not(:checked),
input[type="radio"]:checked { position: absolute; left: -9999px; }
input[type="radio"]:not(:checked) + label,
input[type="radio"]:checked + label {
  position: relative;
  padding-left: 35px;
  height:25px;
  line-height:25px;
  cursor: pointer;
}
/* Radio aspect */
input[type="radio"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  top: 0px; left:5px; 
  width: 25px; height: 25px;
  border: 1px solid #afafaf;
  border-radius: 50%;
  background: #ffffff;
}
/* Radio mark aspect */
input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
  font-family: FontAwesome;
  content: '\f111';
  position: absolute;
  top: 0px; left: 5px;
  width: 25px; height: 25px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  transition: all .2s;
}
/* Radio mark aspect changes */
input[type="radio"]:checked + label:before {
  background: #3793CA;
}
input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled radio */
input[type="radio"]:disabled:not(:checked) + label:before,
input[type="radio"]:disabled:checked + label:before {  }
input[type="radio"]:disabled:checked + label:after { color: #999; }
input[type="radio"]:disabled + label { color: #aaa; }
/* accessibility */
input[type="radio"]:checked:focus + label:before,
input[type="radio"]:not(:checked):focus + label:before { border: 1px solid #afafaf; }

table.si-table>tbody>tr>th, table.si-table>tbody>tr>td {
    text-align: center;
}

.si-public {
    background-color: khaki;
}

.si-paid {
    background-color: buttonshadow;
}

.si-circle {
    background-color: #ffe7cb;
}

.si-finish {
    background-color: coral;
}

/* fullcalendar */

.fc-scroller {
   overflow-y: hidden !important;
}

.fc-sun {
    background: #FFF7FB;
}

.fc-sat {
    background: #EFF6FC;
}

.fc-day-header.fc-sun, .fc-day-header.fc-mon, .fc-day-header.fc-tue, .fc-day-header.fc-wed, .fc-day-header.fc-thu, .fc-day-header.fc-fri, .fc-day-header.fc-sat {
     background: #AAAAAA;
     color: #FFFFFF;
}

.fc-other-month {
    background: #F4F4F4;
}
.fc-event-selected {
    -moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
    -webkit-transform: scale(1.09);
    -moz-transform: scale(1.09);
    -o-transform: scale(1.09);
    -ms-transform: scale(1.09);
    transform: scale(1.09); 
    opacity: 0.7;
}

.fc-event-unselected {
    -moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
    -webkit-transform: scale(1.00);
    -moz-transform: scale(1.00);
    -o-transform: scale(1.00);
    -ms-transform: scale(1.00);
    transform: scale(1.00);
    opacity: 1.0;
}