html, body
{
    margin: 0;
    padding: 0;
    font-family: "Neue Helvetica W01",Arial,Roboto,sans-serif;
    overflow: hidden;
}

.scVFContainer
{
    max-width: 650px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.scVFFullHTWD
{
    width: 100%;
    height: 100%;
}

.scVFOverflow
{
    overflow: hidden;
    overflow-y: auto;
}

.scVFCenterXY
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.scVFHeaderBox
{
    width: 100%;
    height: 34%;
    position: relative;
    background: #339800;
}

.scVFHeaderBox img
{
    width: auto;
    height: 65%;
    border: 1px solid white;
    border-radius: 50%;
    background: white;
}

.scVFBodyBox
{
    width: calc(100% - 40px);
    height: calc(66% - 100px);
    position: relative;
    background: white;
    margin-top: 10px;
    border: 20px solid #339700;
    border-top: 0;
    padding-top: 70px;
    display: none;
}

.scVFValid .scVFValidBox
{
    display: block;
}

.scVFInvalid .scVFInvalidBox
{
    display: block;
}

.scVFInvalid .scVFMessageBox
{
    /* box-shadow: 0px 0px 20px red; */
}

.scVFInvalid >.scVFHeaderBox
{
    background: red;
}

.scVFInvalid >.scVFBodyBox
{
    border: 20px solid red;
    border-top: 0;
}

.scVFMessageBox
{
    flex-direction: column;
    /* box-shadow: 0px 0px 20px #339600; */
    margin-bottom: 54px;
}

.scVFItem
{
    font-size: 18px;
    padding: 10px;
    text-align: center;
    /* box-shadow: 0px 0px 5px #339700; */
    margin: 10px 0px;
    width: 100%;
}

.scVFItemLabel
{
    text-align: left;
    padding-left: 16px;
    color: #037aa5;
    min-width: 180px;
}

.scVFItemValue
{
    width: calc(100% - 180px);
    padding: 0px 16px;
    text-align: left;
    color: #315600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.scVFFooter
{
    box-shadow: 0px 0px 20px #339700;
    padding: 20px;
    width: calc(100% - 80px);
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 18px;
    text-align: center;
    background: white;
    display: none;
    font-weight: 600;
}

.scVFInvalidFooter
{
    box-shadow: 0px 0px 20px red;
}

/* **************SVG****************/

.scVFSection, .scVFInvalid 
 {
  background-size: cover;
  background-attachment: fixed;
}

.scVFSection .scVFWave , .scVFSection .scVFWave:before, .scVFSection .scVFWave:after
{
    position: absolute;
    width: 100%;
    height: 104px;
    left: 0;
    background: url(../images/pattern.svg);
}

.scVFInvalid  .scVFWave , .scVFInvalid .scVFWave:before, .scVFInvalid .scVFWave:after
{
    background: url(../images/err_pattern.svg);
}

.scVFSection .scVFWave {
    bottom: -80px;
    z-index: 1;
    transform: rotate(180deg);
    animation: waves 10s linear infinite;
}

.scVFSection .scVFWave:before {
  content:'';
  top: 0;
  opacity: 0.4;
  animation: waves-reverse 10s linear infinite;
}

.scVFSection .scVFWave:after {
  content:'';
  top: 0;
  opacity: 0.6;
  animation-delay: -5s;
  animation: waves 20s linear infinite;
}

@keyframes waves {
  0% {
    background-position: 0;
  }
  100% {
    /* from width of the svg file */
    background-position: 1600px;
  }
}

@keyframes waves-reverse {
  0% {
    background-position: 1600px;
  }
  100% {
    background-position: 0;
  }
}

@media only screen and (max-width: 1200px)
{
   .scVFMessageBox
        {
        margin-bottom: 238px;
    }
    
   .scVFContainer
        {
        max-width: 1200px;
   }
   
   .scVFItemLabel
        {
        min-width: 280px;
   }
   
   .scVFItemValue
      {
       width: calc(100% - 280px);
   }

   .scVFItem
        {
        font-size: 34px;
        padding: 20px;
        /* box-shadow: 0px 0px 10px #339700; */
   }
   
   .scVFFooter {       
        font-size: 44px;
        padding: 40px 20px;
    }
    
    .scVFSection .scVFWave , .scVFSection .scVFWave:before, .scVFSection .scVFWave:after
          {
       height: 140px;
    }
}

