﻿/* WEBKIT BROWSERS - CHROME, OPERA AND SAFARI */
progress::-webkit-progress-bar {
    background-color: #777;
    border-radius: 20px;
}

progress::-webkit-progress-value {
    background-image: -webkit-linear-gradient(45deg, transparent 40%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 70%, transparent 70%), -webkit-linear-gradient(top, rgba(255, 255, 255, .25), rgba(0, 0, 0, .25)), -webkit-linear-gradient(left, #1abc9c, #3498db);
    border-radius: 20px;
}

/* MOZILLA FIREFOX */
progress::-moz-progress-bar {
    background-image: -moz-linear-gradient(45deg, transparent 33%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 70%, transparent 70%), -moz-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left, #1abc9c, #3498db);
    border-radius: 20px;
}

/* MICROSOFT EDGE & IE */
.custom-progress::-ms-fill {
    border-radius: 18px;
    background: repeating-linear-gradient(45deg, #1abc9c, #1abc9c 10px,#3498db 10px, #3498db 20px);
}
.progress1 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 60px);
    margin: 0 30px;
    background-color: #943a3a;
    color: #03dc50;
    border-radius: 20px;
}
.fholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.fholder.rowshow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}
.descform{
    text-align: justify;
    font-size: 1.8em;
    font-weight: 400;
    padding: 20px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.descform.greencode{
    background: #94e193;
    width: 300px;
    margin: auto;
    margin-top: 20px;
    color: #165818;
}
.form1 .catpchaholder {
    justify-content: flex-end;
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
}
    .form1 .catpchaholder * {
        margin: 0 10px;
    }
    .form1 .catpchaholder input {
        max-width: 300px;
    }
    .form1 .catpchaholder span {
        font-size: 20px;
        font-size: 2rem;
    }
.form1 div.elemHolder {
    width: 60%;
}

    .fholder.rowshow.form1 div.elemHolder {
        width: auto;
        max-width: 100%;
        position: relative;
    }
.form1 input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 25px;
    box-sizing: border-box;
    border: 2px solid #e53527;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    font-size: 1.7rem;
}

    .form1 input[type=text]:focus {
        border: 2px solid #e53527;
    }
.form1 textarea {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 25px;
    box-sizing: border-box;
    border: 2px solid #1a171a;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    font-size: 1.7rem;
}
    .form1 textarea:focus {
        border: 3px solid #e53527;
        background-color: #fff;
    }
    .form1 h3 {
    margin: 1em 0 0.5em 0;
    font-weight: 600;  
    position: relative;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.4);
    font-size: 22px;
    line-height: 40px;
    color: #684d90;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(104, 76, 144, 0.49);
}
/*custom*/

.custom .btn-1 {
    width: 400px;
    text-align: center;
    padding: 25px 0;
    margin: 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: 3px solid #882c6b;
   
}




