/* colors: blue-> #46c3f3 oranage-> #f7931e*/
.navbar {
  background: aliceblue;
}

.heading-wrap {
    position: relative;
    width: 197px;
    padding: 4px;
    display: flex;
    border: 1px solid lightblue;
    justify-content: center;
    background: aliceblue;
    margin: 20px 0 -6px 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 0;
    z-index: 999999;
}
.heading-wrap h3 {
    margin: 0;
}

.intro-wrapper {
    border-radius: 7px;
    border: 1px solid lightblue;;
}

.intro {
    display: flex;
    flex-flow: column;    
    line-height: 18px;
    padding: 17px 18px;
    background: aliceblue;
    border-radius: 7px;
    border-top-left-radius: 0;
}

.doc {
    font-weight: bold;
    background-color:rgb(91 159 237);
    padding: 1px 3px;
    border-radius: 3px;    
    color: white;
}

.pdf {
    font-weight: bold;
    background-color:rgb(206 63 37);
    padding: 1px 3px;
    border-radius: 3px;
    color: white;
}
.convertspan {
    padding: 6px 10px;
    color: white;
    background-color: #46c3f3;
    border: 2px solid #f7931e;
    border-radius: 4px;
}
.downloadspan {
    padding: 6px 10px;
    color: white;
    background-color: #28a745;
    border: 2px solid #3dbd02;
    border-radius: 4px;
}
.step {
    padding: 0 4px;
    margin-right: 10px;
    background-color: lightgrey;
    border-radius: 2px;
    border: 2px solid rgb(192, 192, 192);
}
.drop_zone_wrapper {
    margin-top: 30px;
    border-radius: 7px; 
    border: 5px dotted #f7931e;
  }
#drop_zone {
    
    border-radius: 7px;    
    display: flex;
    justify-content: center;
    
    background: aliceblue;
  }
  
  #drop-text{
      font-weight: 700;
      color: rgb(90, 90, 90);
      padding: 55px
  }

  #resultLink {
    border: 2px solid #3dbd02;
  }
  #fileSubmit {
      background-color: #46c3f3;
      color: white;
      border: 2px solid #f7931e;
  }
  .converter-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .footer {
    background: aliceblue;
  }
  .footer-links a:hover {
    color: #46c3f3;
  }

  /* animation */
  .convert-pulse {
    animation: pulse 2s infinite;    
  }
  .download-pulse {
    animation: dlpulse 2s infinite;    
  }


  .xlinks {    
    padding: 10px;     
  }
  .xlinks a {    
    background-color: red;
  }
  .xlink_inner {
    display: flex;
    justify-content: center;
    align-items: baseline;
    background-color: aliceblue;
    padding: 13px;
    border: 1px solid lightblue;
    border-radius: 4px;
    /* margin: 2px 0; */
  }

  .left {
    flex:1;
    font-size: 1.2em;
  }
  .right{
      flex:2;
      margin: 0;
      font-size: 1.1em;
  }
  .emoji {
    margin-right: 10px;
  }
  .heading2-wrap {
    position: relative;
    width: 197px;
    padding: 4px;
    display: flex;
    /* border: 1px solid lightblue; */
    justify-content: center;    
    margin: 20px 0 -1px 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 0;    
    border-bottom: 1px solid white;
  }

  @keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 #46c3f3;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,0,0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,0,0, 0);
    }
  }

  @keyframes dlpulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 #3dbd02;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,0,0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,0,0, 0);
    }
  }