/*
   float

  */
.left {
  float: left; }

.right {
  float: right; }

@media (max-width: 768px) {
  .float-none {
    float: none; } }

.clearfix:after {
  content: '';
  display: block;
  clear: both; }

.clearfix:before {
  content: '';
  display: block;
  clear: both; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

@-webkit-keyframes opac {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes opac {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fades {
  -webkit-animation-name: opac;
  animation-name: opac;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.clearfix:after {
  content: "";
  display: block;
  clear: both; }

.clearfix:before {
  content: "";
  display: block;
  clear: both; }

.container {
  min-height: 400px;
  min-height: calc(100vh - 190px - 367px); }

.title {
  color: #387B98;
  margin-top: 50px;
  font-size: 1.8em; }
  .title:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #c30b0b;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 60px; }

.routine-holder {
  width: 860px;
  max-width: 90%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  height: auto;
  min-height: 250px;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.09);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.09); }
  .routine-holder .tab {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    height: 40px;
    background-color: #eee; }
    .routine-holder .tab:hover {
      background: #2274bb;
      color: #fff;
      cursor: pointer; }
  .routine-holder .active-tab {
    color: #fff;
    background-color: #387B98; }
  .routine-holder .tab-content {
    padding: 20px;
    min-height: 230px; }
  .routine-holder .tab-view {
    -webkit-animation-name: opac;
    animation-name: opac;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s; }
  .routine-holder .select-input {
    width: 180px;
    float: left;
    margin-top: 30px; }
    .routine-holder .select-input:nth-child(1) {
      margin-right: 14px; }
  .routine-holder .please-select-msg {
    line-height: 1.6em;
    text-align: left;
    margin: 20px 0px;
    font-size: 1em;
    color: #555; }
