@keyframes bounce_readmore {
  from, to {
    transform: translateY(-50%) scale(1, 1);
  }
  25% {
    transform: translateY(-50%) scale(0.9, 1.2);
  }
  50% {
    transform: translateY(-50%) scale(1.2, 0.9);
  }
  75% {
    transform: translateY(-50%) scale(0.9, 1.1);
  }
}
@keyframes bounce {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.2);
  }
  50% {
    transform: scale(1.2, 0.9);
  }
  75% {
    transform: scale(0.9, 1.1);
  }
}
@keyframes appearUp {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes _rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.button-rounded {
  display: inline-block;
  font-size: 14px;
  border: 2px solid #0b0b0b;
  border-radius: 8px;
  line-height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
}
.button-rounded i {
  margin-right: 5px;
}
.button-rounded.full {
  width: 100%;
}
.button-rounded.half {
  width: 50%;
}
.button-rounded.size1 {
  width: 225px;
}
.button-rounded.hover {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.button-rounded.hover:hover {
  border-color: #f29500;
  color: #f29500;
}
.button-rounded.green {
  background-color: #0091a7;
  border-color: #0091a7;
  color: white;
}
.button-rounded.green.alt {
  color: #0091a7;
}
.button-rounded.green.alt.hover:hover {
  background-color: white;
  color: rgb(216.5, 133.2995867769, 0);
  border-color: #f29500;
}
.button-rounded.green.hover:hover {
  background-color: #f29500;
  border-color: #f29500;
  color: white;
}
.button-rounded.alt {
  background: white;
}

.input-box {
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
  width: 100%;
  border-radius: 0;
}
.input-box[readonly] {
  border-color: #E1E6F9;
  background-color: #F6F8FF;
  cursor: not-allowed;
}
.input-box[disabled] {
  border-color: #e8e8e8;
  background-color: #fbfbfb;
  color: rgb(155.5, 155.5, 155.5);
  cursor: not-allowed;
}

.select-box {
  height: 40px;
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
}

input[type=checkbox].checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=checkbox].checkbox-box + label {
  vertical-align: middle;
}
input[type=checkbox].checkbox-box + label .label-box {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  border: 1px solid #BBC1E1;
  transition: border-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), background-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  font-size: 12px;
  vertical-align: text-bottom;
  background: white;
}
input[type=checkbox].checkbox-box + label .label-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2, 2);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  color: white;
  display: block;
}
input[type=checkbox].checkbox-box + label:hover .label-box {
  border-color: #275EFE;
}
input[type=checkbox].checkbox-box + label .checkbox-message {
  margin-left: 10px;
}
input[type=checkbox].checkbox-box:checked + label .label-box {
  background: #275EFE;
  border-color: #275EFE;
}
input[type=checkbox].checkbox-box:checked + label .label-box i {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

input[type=radio].checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=radio].checkbox-box + label {
  vertical-align: middle;
}
input[type=radio].checkbox-box + label .label-box {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid #BBC1E1;
  transition: border-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), background-color 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  font-size: 12px;
  vertical-align: text-bottom;
  background: white;
}
input[type=radio].checkbox-box + label .label-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2, 2);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  color: white;
  display: block;
}
input[type=radio].checkbox-box + label:hover .label-box {
  border-color: #275EFE;
}
input[type=radio].checkbox-box + label .checkbox-message {
  margin-left: 10px;
}
input[type=radio].checkbox-box:checked + label .label-box {
  background: #275EFE;
  border-color: #275EFE;
}
input[type=radio].checkbox-box:checked + label .label-box i {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}