body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

iframe[seamless]{
    background-color: transparent;
    border: 0px none transparent;
    padding: 0px;
    overflow: hidden;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

blockquote {
    font-size: 14px;
}

.ui.breadcrumb {
  background-color: transparent;
}

.ovwrapper {
  flex: 1;
}

.ovinversedtext {
  color: #FFFFFF;
}

.features-content {
}

.feature-desc {
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #767f88
}

.feature-desc h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  color: #969fa8;
  text-transform: uppercase;
  letter-spacing: -.9px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out
}

#smartwizard, #chaptercontent, #maincontent {
  padding-top: 40px;
}

/* support accordion*/
.ui.styled.accordion .mini.steps .content {
  padding: 0;
}

.ui.styled.accordion .mini.steps .title {
  padding: 0;
  border: none;
}

/* support mta popup modal */
#popup_confirm {
  margin-top: -15% !important;
  bottom: unset !important;
}

/* fix conflict between semantic-ui and bootstrap css */

.ui.grid > .row {
  margin-left: 0;
  margin-right: 0;
}

/* Loader */

.loader_wrapper{
    width:200px;
    height:60px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.loader_circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #333;
    left:15%;
    transform-origin: 50%;
    animation: loader_circle .5s alternate infinite ease;
}

@keyframes loader_circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.loader_circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.loader_circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.loader_shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: loader_shadow .5s alternate infinite ease;
}

@keyframes loader_shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.loader_shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.loader_shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.loader_wrapper span{
    position: absolute;
    top:75px;
    font-family: 'Lato';
    font-size: 20px;
    letter-spacing: 12px;
    color: #aaa;
    left:15%;
}
