/* importing google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body{
    background: #fafafa
}

textarea { width: 500px; height: 150px; }

.fake-textarea {
    border: 1px solid black;
    width: 30rem;
    padding: .5rem;
    min-height: 3rem;
  }
  .fake-textarea:empty::before {
    position: absolute;
    content: "Escriba su comentarios...";
  }

.ComentarioEncuesta{
    width:1000px;
    height:100px;
    border: 2px solid
}

.titulos_general
{
margin-left: 30px;
margin-right: 30px;
justify-content: center;
}
.titulo{
text-align: center;
color: rgb(43, 43, 43);
font-size: 50px;
}
.titulo2{
    text-align: center;
    color: rgb(46, 156, 18);
    font-size: 90px;
    margin-top: -50px;
    }

.subtitulo{
     
    text-align: center;
    color: rgb(61, 61, 61);
    font-size: 17px;
    
    }

::selection{
    color: #fff;
    background: rgb(46, 156, 18);
}


.info_box,
.quiz_box,
.result_box,.preresult_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 
                0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.start_btn{
   
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 
                0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.info_box.activeInfo,
.quiz_box.activeQuiz,
.result_box.activeResult,.preresult_box.activePre{
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.start_btn button{
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    padding: 15px 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: rgb(46, 156, 18);
    cursor: pointer;
}

.start_btn button:hover{
  font-size: 25px;
  font-weight: 500;
  color: rgb(46, 156, 18);
  padding: 15px 30px;
  outline: none;
  border-radius: 5px;
  border: 1px solid rgb(46, 156, 18);
  border-radius: 5px;
  background: rgb(248, 248, 248);
  cursor: pointer;

}

.start_btn2 button{
    font-size: 25px;
    font-weight: 500;
    color: rgb(46, 156, 18);
    padding: 15px 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
  }

.info_box{
    margin-top: 2%;
    width: 540px;
    background: #fff;
    border-radius: 5px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.info_box .info-title{
    height: 60px;
    width: 100%;
    border-bottom: 1px solid lightgrey;
    display: flex;
    align-items: center;
    padding: 0 30px;
    border-radius: 5px 5px 0 0;
    font-size: 20px;
    font-weight: 600;
}

.info_box .info-list{
    padding: 15px 30px;
}

.info_box .info-list .info{
    /* margin: 5px 0; */
    font-size: 17px;
}

.info_box .info-list .info span{
    font-weight: 600;
    color: rgb(46, 156, 18);
}
.info_box .buttons{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 30px;
    border-top: 1px solid lightgrey;
}

.info_box .buttons button{
    margin: 0 5px;
    height: 40px;
    width: 100px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgb(46, 156, 18);
    transition: all 0.3s ease;
}

.quiz_box{
    width: 550px;
    background: #fff;
    border-radius: 5px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.quiz_box header{
    position: relative;
    z-index: 2;
    height: 70px;
    padding: 0 30px;
    background: #fff;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.1);
}

.quiz_box header .title{
    font-size: 20px;
    font-weight: 600;
}

.quiz_box header .timer{
    color: #004085;
    background: #cce5ff;
    border: 1px solid #b8daff;
    height: 45px;
    padding: 0 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 145px;
}

.quiz_box header .timer .time_left_txt{
    font-weight: 400;
    font-size: 17px;
    user-select: none;
}

.quiz_box header .timer .timer_sec{
    font-size: 18px;
    font-weight: 500;
    height: 30px;
    width: 45px;
    color: #fff;
    border-radius: 5px;
    line-height: 30px;
    text-align: center;
    background: #343a40;
    border: 1px solid #343a40;
    user-select: none;
}

.quiz_box header .time_line{
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 3px;
    width: 550px;
    background: rgb(46, 156, 18);
}

section{
    padding: 25px 30px 20px 30px;
    background: #fff;
}

section .que_text{
    font-size: 15px;
    font-weight: 600;
}

section .option_list{
    padding: 20px 0px;
    display: block;   
}

section .option_list .option{
    background: aliceblue;
    border: 1px solid #84c5fe;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 17px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .option_list .option:last-child{
    margin-bottom: 0px;
}

section .option_list .option:hover{
    color: rgb(46, 156, 18);
    background: #d8ffcc;
    border: 1px solid #cfffb8;
}

section .option_list .option.correct{
    color: rgb(46, 156, 18);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(46, 156, 18);
}



section .option_list .option.disabled{
    pointer-events: none;
}

section .option_list .option .icon{
    height: 26px;
    width: 26px;
    border: 2px solid transparent;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    pointer-events: none;
    transition: all 0.3s ease;
    line-height: 24px;
}
.option_list .option .icon.tick{
    color: #23903c;
    border-color: #23903c;
    background: #d4edda;
}

.oculto{
    display: none;
  }


footer{
    height: 60px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid lightgrey;
}

footer .total_que span{
    display: flex;
    user-select: none;
}

footer .total_que span p{
    font-weight: 600;
    padding: 0 5px;
}

footer .total_que span p:first-child{
    padding-left: 0px;
}

footer button{
    height: 40px;
    padding: 0 13px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    background: rgb(46, 156, 18);
    border: 1px solid rgb(46, 156, 18);
    line-height: 10px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

footer button:hover{
    background: #81B214;
}

footer button.show{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.result_box{
    background: #fff;
    border-radius: 5px;
    display: flex;
    padding: 25px 30px;
    width: 450px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.preresult_box{
    background: #fff;
    border-radius: 5px;
    display: flex;
    padding: 25px 30px;
    width: 95%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.result_box .icon ,.preresult_box{
    /* font-size: 150px; */
    color: rgb(46, 156, 18);
    margin-bottom: 10px;
}

.result_box .complete_text ,.preresult_box{
    font-size: 20px;
    font-weight: 500;
}

.result_box .score_text span ,.preresult_box {
    display: flex;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
}

.result_box .score_text span p ,.preresult_box{
    padding: 0 4px;
    font-weight: 600;
}

.result_box .buttons ,.preresult_box {
    display: flex;
    margin: 20px 0;
}

.result_box .buttons button ,.preresult_box {
    margin: 0px;
    height: 45px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgb(46, 156, 18);
    transition: all 0.3s ease;
}

.buttons button.restart{
    color: #fff;
    background: rgb(46, 156, 18);
}

.buttons button.restart:hover{
    background: #81B214;
}

.buttons button.quit{
    color: #6a2020;
    background: #fff;
    border: 1px solid #6a2020;
}

.buttons button.quit:hover{
    color: #fff;
    background: #ad1616;
}

/*///////////FORMULARIO///////////*/

.form {
  
    border-radius: 20px;
    box-sizing: border-box;
    /* padding: 20px;
    width: 320px; */
    margin: 0 auto;
  }
  
  .input-container {
    height: 50px;
    position: relative;
    width: 100%;

  }
  
  .ic1 {
    margin-top: 26px;
  }
  
  .ic2 {
    margin-top: 30px;
  }
  
  .input {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    font-size: 18px;
    height: 100%;
    outline: 0;
    padding: 4px 20px 0;
    width: 100%;
  }
  
 
  .cut-short {
    width: 50px;
  }
  
  .input:focus ~ .cut,
  .input:not(:placeholder-shown) ~ .cut {
    transform: translateY(10px);
  }
  
  .placeholder {
    color: rgb(201, 201, 201);
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
  }
  
  .input:focus ~ .placeholder,
  .input:not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-40px) translateX(10px) scale(0.75);
  }
  
  .input:not(:placeholder-shown) ~ .placeholder {
    color: #808097;
  }
  
  .input:focus ~ .placeholder {
    color: rgb(46, 156, 18);
  }
  
  .submit {
    background-color: #08d;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    margin-top: 38px;
    
    text-align: center;
    width: 100%;
  }
  
  .submit:active {
    background-color: #06b;
  }
  
  #divPadre {
    height:100px;
    flex-grow: 1; 
     text-align:center;
   
}
#divHijo {

     margin:0px auto;
     border-radius: 5px;
    text-align:center;
}

.contenido1 {
    display: inline-block;
}




@media only screen and (max-width:500px) {
    /* For mobile phones: */
    html{
        justify-content: center;
        margin-left: 0px;
        margin-right: 0px;  
        width: 100%;
    }

    textarea { width: 300px; height: 150px; }

    .titulos_general
    {
    margin-left: 30px;
    margin-right: 30px;
    justify-content: center;
    }

    .titulo{
    text-align: center;
    /* color: #fff; */
    font-size: 45px;
    line-height: 100%;
    MARGIN-BOTTOM: 5%;
    margin-top: 5%;
  
    }
    .titulo2{
        text-align: center;
        /* color: #fff; */
        font-size: 47px;
        margin-top: -30px;
        }
    
    .subtitulo{
         
        text-align: center;
        /* color: rgb(211, 211, 211); */
        font-size: 15px;
        
        }
        .info_box{    
            margin-top: 13%;
            width: 350px;
            background: #fff;
            border-radius: 5px;
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .quiz_box{
            width:  350px;
            background: #fff;
            border-radius: 5px;
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }


        .result_box ,.preresult_box{
            background: #fff;
            border-radius: 5px;
            display: flex;
            padding: 25px 30px;
           
            align-items: center;
            flex-direction: column;
            justify-content: center;
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form {
  
            border-radius: 20px;
            box-sizing: border-box;
            padding: 0px;
            width: 290px;
            margin: 0 auto;
          }
          .input {
            background-color: #303245;
            border-radius: 12px;
            border: 0;
            box-sizing: border-box;
            color: #eee;
            font-size: 18px;
            height: 100%;
            outline: 0;
           
            width: 100%;
          }


          .quiz_box header{
            position: relative;
            z-index: 2;
            height: 100px;
            padding: 0 30px;
            background: #fff;
            border-radius: 5px 5px 0 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.1);
        }

        .result_box .buttons button ,.preresult_box{
            margin: 0px;
            height: 55px;
            padding: 0 20px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            outline: none;
            border-radius: 5px;
            border: 1px solid rgb(46, 156, 18);
            transition: all 0.3s ease;
        }

        section .que_text{
            font-size: 14px;
            font-weight: 600;
            text-align: justify;
        }

        section .option_list .option{
            background: aliceblue;
            border: 1px solid #84c5fe;
            border-radius: 5px;
            padding: 8px 15px;
            font-size: 14px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .quiz_box header .time_line{
            width: 350px;

        }
        .buttons button.quit {
          color: #6a2020;
          background: #fff;
          border: 1px solid #6a2020;
      }    
        
  }


  /* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #206A5D #fff;
  }
  
  /* Works on Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px;
  }
  
  *::-webkit-scrollbar-track {
    background: #fff;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: rgb(46, 156, 18);
    border-radius: 20px;
    border: 1px solid #fff;
  }
  

  @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600&subset=latin-ext");



  @media screen and (max-width: 768px) {
    html, body {
      font-size: 12px;
    }
  }
  

.button {
    text-decoration: none;
    font-size: .875rem;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 1.5rem;
    background-color: rgb(46, 156, 18);
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 900;
  }
   a.button:hover{


    text-decoration: none;
    font-size: .875rem;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 1.5rem;
    border: 1px solid rgb(46, 156, 18);
    background-color: rgb(248, 248, 248);
    color: rgb(46, 156, 18);
    padding: 1rem 2rem;
    font-weight: 900;


    /* font-size: 25px;
    font-weight: 500;
    color: rgb(46, 156, 18);
    padding: 15px 30px;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgb(46, 156, 18);
    border-radius: 5px;
    background: rgb(248, 248, 248);
    cursor: pointer;
   */
  }
  .popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    overflow: hiden;
    transition: .64s ease-in-out;
  }
  .popup-inner {
    position: relative;
    bottom: -100vw;
    right: -100vh;
    display: flex;
    align-items: center;
    max-width: 800px;
    max-height: 700px;
    width: 60%;
    height: 80%;
    background-color: #fff;
    transform: rotate(32deg);
    transition: .64s ease-in-out;
  }
  .popupphoto {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 40%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }
  .popupphoto img {
    width: auto;
    height: 100%;
  }
  .popuptext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    height: 100%;
    padding: 1rem;
  }
  .popuptext h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #0A0A0A;
  }
  .popuptext p {
    font-size: .875rem;
    color: #686868;
    line-height: 1.5;
  }
  
  .popuptext a {
      text-decoration: none;
      color:  rgb(46, 156, 18);
  }
  .popup:target {
    visibility: visible;
    opacity: 1;
  }
  .popup:target .popup-inner {
    bottom: 0;
    right: 0;
    transform: rotate(0);
    border-radius: 20px;
  }
  .closepopup {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 3rem;
    height: 3rem;
    font-size: .875rem;
    font-weight: 300;
    border-radius: 100%;
    background-color: rgb(46, 156, 18);
    z-index: 4;
    color: #fff;
    line-height: 3rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
  }
  
  
  body {
    font-family: "Lato", sans-serif;
   
  }
  a:link,
  a:visited {
  /* color: #444; */
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    
  }
  
  
  /* CSS Whatsapp Chat */
  #whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    right: 30px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
  }
  
  a.blantershow-chat {
    /*   background: #009688; */
    background: #fff;
    color: #404040;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 98;
    bottom: 25px;
    right: 30px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  }
  
  a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
  }
  
  .header-chat {
    background: #095e54;
    color: #fff;
    padding: 20px;
  }
  .header-chat h3 {
    margin: 0 0 10px;
  }
  .header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }
  .info-avatar {
    position: relative;
  }
  .info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
  }
  .info-avatar:before {
    content: "0";
    z-index: 1;
    font-family: "Font Awesome 5 Brands";
    background: #23ab23;
    color: #23ab23;
    padding: 2px 6px;
    border-radius: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
  }
  
  .info-chat span {
    display: block;
  }
  #get-label,
  span.chat-label {
    font-size: 12px;
    color: #888;
  }
  #get-nama,
  span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
  }
  #get-label,
  #get-nama {
    color: #fff;
  }
  span.my-number {
    display: none;
  }
  .blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd;
  }
  textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 60px;
    outline: none;
    resize: none;
  }
  a#send-it {
    color: #555;
    /* width: 40px; */
    margin: -5px 0 0 5px;
    font-weight: 700;
    padding: 8px;
    background: #eee;
    border-radius: 10px;
    height: 40px;
  
  }
  .first-msg {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
  }
  .first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
  }
  .start-chat .blanter-msg {
    display: flex;
  }
  #get-number {
    display: none;
  }
  a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
  }
  @keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
  }
  @keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
  }
  @media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
  
    .popup {
      display: flex;
      align-items: center;
      justify-content: right;
      position: fixed;
      width: 100vw;
      FONT-VARIANT: JIS04;
      bottom: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 2;
      visibility: hidden;
      opacity: 0;
      overflow: hiden;
      transition: .64s ease-in-out;
      
  }
  .popuptext {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* width: 60%; */
    height: 100%;
    padding: 1rem;
  }
  
  .closepopup {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: .875rem;
    font-weight: 300;
    border-radius: 100%;
    background-color: rgb(46, 156, 18);
    z-index: 4;
    color: #fff;
    line-height: 3rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
  }
  .popup-inner {
    margin-top: 10%;
    position: relative;
    bottom: -100vw;
    right: -100vh;
    display: flex;
    /* align-items: center; */
    max-width: 800px;
    max-height: 700px;
    width: 100%;
    height: 80%;
    background-color: #fff;
    transform: rotate(32deg);
    transition: .64s ease-in-out;
  }
  
  .popuptext {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
     width: 90%; 
    height: 100%;
    padding: 1rem;
  }
  
  .closepopup {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: .875rem;
    font-weight: 300;
    border-radius: 100%;
    background-color: rgb(46, 156, 18);
    z-index: 4;
    color: #fff;
    line-height: 3rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
  } 
  .popupphoto {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 20%;
    height: 100%;
    overflow: hidden;
  }
  
  a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 0px 0 0;
    
  }
  
  
  
  }
  .hide {
    display: none;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
  }
  .show {
    display: block;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
  }
  
  /* PROGRES BAR */
  
  @import url(https://fonts.googleapis.com/css?family=Raleway:100,200,300);
  
  
  
  .progress-bar {
    position: absolute;
    top: 50%;
    height: 2px;
    background: rgb(46, 156, 18);
  }
  
  .done {
    top: 0;
    height: 100%;
    width: 100%;
    transition: all .33s ease;
  }
  
  .count {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-weight: 100;
    font-size: 3em;
    margin-top: -1.33em;
    color: rgb(46, 156, 18);
  }