input[type="text"], [type=date], [type=email],  textarea {
    font-size: 30px;
    font-weight: 500;
    height: 40px !important;
    letter-spacing: 1px;
    width: auto;
    margin: 20px 0px 0px 0px !important;
    outline: none;
    border: 1px solid #c7c6c6 !important;
    color: #000;
    width: 100%;
    border-radius: 3px;
    box-shadow: 5px 5px 15px rgba(230, 230, 230, 0.8);
}

input [type=submit] {
    margin-top: 20px !important

}

input [type=file] {

} 

label {
    margin: 30px 0px 0px 0px !important;
}


input[type=radio] {
    margin: 30px 5px 0px 15px !important;
}

.upload-file {
    width: 300px;
    height: 300px;
    background-attachment: fixed;
    background-color: #808080;
    text-align: center;
    vertical-align: middle;

}


/* ================================Upload================================ */
.bar {
    display: block;
    background-color: #00cccf;
}

.bar h1 {
    margin: 0px;
    font-family: helvetica, sans-serif;
    font-size: 22px;
    padding: 10px;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
}

.profile-photo-div {
    position: relative;
    margin: 30px 0px 0px 0px;
    width: 150px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
}

.profile-img-div {
    display: block;
    position: auto;
    overflow: visible;
}

#loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #01325D;
    z-index: 10;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

#profile-img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#change-photo {
    display: none;
}

.profile-buttons-div {
    position: relative;
    display: block;
}

.button {
    position: relative;
    display: block;
    font-family: helvetica, sans-serif;
    font-size: 15px;
    padding: 10px 20px 20px 20px;
    height: 50px;
    bottom: 20px;
    text-align: center;
    color: white;
    background-color: #808080;
    cursor: pointer;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.button:hover {
    letter-spacing: 1px;
}

.button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: .9s;
    -o-transition: .9s;
    transition: .9s;
}

.button:hover:after {
    -webkit-transform: scale(50);
    -ms-transform: scale(50);
    transform: scale(50);
    opacity: 1;
}

.button.half {
    width: 50%;
    margin-top: 30px;
}

.green {
    background-color: #01325D;
}

.red {
    background-color: #ae0000;
}

#x-position {
    position: absolute;
    bottom: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none;
    margin: 0px 0px 70px 0px;
}

#y-position {
    position: absolute;
    right: -50px;
    top: 40%;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    display: none;
    margin: 0px 10px 0px 0px;
}

canvas {
    position: fixed;
    top: -2000px;
    left: -2000px;
    z-index: -1;
}

.profile-img-confirm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.error {
    font-family: Helvetica, sans-serif;
    font-size: 13px;
    color: red;
    text-align: center;
    display: none;
}
