h1
{
    text-align: center;
    height: 70px;
    color: rgb(95, 89, 89);
    margin: 0 0 -29px 0;
    padding-top: 14px;
    border-radius: 10px 10px 0 0;
    font-size: 35px;
    font-weight: 300;
}
.main {
    margin-top: 75px;padding-top: 17px;
}
/*.main label{
    color: rgba(0, 0, 0, 0.71);
    margin-left: 60px;
}*/
#image_preview{
    position: absolute;
    font-size: 30px;
    top: 100px;
    left: 10px;
    width: 502px;
    height: 251px;
    text-align: center;
    line-height: 180px;
    font-weight: bold;
    color: #C0C0C0;
    background-color: #FFFFFF;
    overflow: auto;
}
selectImage{
    padding: 19px 21px 14px 15px;
    position: absolute;
    bottom: 0px;
    width: 484px;
    background-color: #FEFFED;
    border-radius: 10px;
}
.submit{
    font-size: 16px;
    background:#13bb6b;
    color: #fff;
    font-weight: 300;
    cursor: pointer;
    width: 345px;
    border-radius: 10px;
    padding: 10px 0;
    outline: none;
    border:0px;
    transition: all 250ms ease-in-out;
}
.submit:hover{
    box-shadow: 1px 1px 4px #666;
}
#file {
    color: red;
    padding: 5px;
    border: 5px solid #8BF1B0;
    background-color: #8BF1B0;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 0 15px #626F7E;
    margin-left: 15%;
    width: 72%;
}
#message{
    position:absolute;
    top:140px;
    left:600px;
}
#success
{
    color:green;
}
#invalid
{
    color:red;
}
#line
{
    /*margin-top: 274px;*/
}
#error
{
    color:red;
}
#error_message
{
    color:blue;
}
#loading
{
    display:none;
    position:absolute;
    top:190px;
    left:786px;
    font-size:25px;
}
#previewingVideo {
    display: none;
}
.formsection{
    margin-top:0px;
    margin-bottom: 15px;
    overflow: hidden;
}
.formsection input[type='text']{
    /*margin-left: 15%;
    width: 75%;
    padding: 1%;
    margin-top: 2%;*/
}
.formsection textarea{
    /*margin-left: 15%;
    width:75%;
    padding:1%;
    margin-top:2%;
    height:75px;
    resize: none;*/
}
.formsection select{
    /*margin-left: 15%;
    width: 75%;
    padding: 1%;
    margin-top: 2%;*/
}
.vhashTags{
    margin-left: 75px !important;
    width: 78%;
    margin-top: 10px !important;
}
.select2{
    /*margin-left: 15% !important;
    width: 75% !important;
    margin-top: 10px !important;*/
}
#container2{
      /*margin-top: -300px;*/
}
.container{
    /*width:100% !important;*/
}

@keyframes blink {
    /**
     * At the start of the animation the dot
     * has an opacity of .2
     */
    0% {
      opacity: .2;
    }
    /**
     * At 20% the dot is fully visible and
     * then fades out slowly
     */
    20% {
      opacity: 1;
    }
    /**
     * Until it reaches an opacity of .2 and
     * the animation can start again
     */
    100% {
      opacity: .2;
    }
}

.saving span {
    /**
     * Use the blink animation, which is defined above
     */
    animation-name: blink;
    /**
     * The animation should take 1.4 seconds
     */
    animation-duration: 1.4s;
    /**
     * It will repeat itself forever
     */
    animation-iteration-count: infinite;
    /**
     * This makes sure that the starting style (opacity: .2)
     * of the animation is applied before the animation starts.
     * Otherwise we would see a short flash or would have
     * to set the default styling of the dots to the same
     * as the animation. Same applies for the ending styles.
     */
    animation-fill-mode: both;


    width: 16px; 
    height: 64px;
    background: #aeb5da;
    border: 1px solid #8490c6;
    box-sizing: border-box;
    margin-right:8px;
    opacity: 0.2;
}

.saving span:nth-child(2) {
    /**
     * Starts the animation of the third dot
     * with a delay of .2s, otherwise all dots
     * would animate at the same time
     */
    animation-delay: .2s;
}

.saving span:nth-child(3) {
    /**
     * Starts the animation of the third dot
     * with a delay of .4s, otherwise all dots
     * would animate at the same time
     */
    animation-delay: .4s;
}
.saving-block {
    padding: 8px;
    word-break: break-all;
    line-height: 2.5em;
}
