﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*input[type="date"] {
    color-scheme: dark;
}*/

update-back-img {
    width: 100%;
}

html {
    height: 100%;
}

.contact-page-content {
    justify-content: center;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 30px;
}
/*Background color*/
#grad1 {
    background-color: #232B2B;
    /*  background-image: linear-gradient(120deg, #FF4081, #81D4FA);*/
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;/*
    background-color: #000*/
}

    #msform fieldset .form-card {
        background: white;
        border: 0 none;
        border-radius: 0px;/*
        box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);*/
        /* padding: 20px 40px 30px 40px; */
        box-sizing: border-box;
        width: 94%;
        margin: 0 3% 20px 3%;
        /*stacking fieldsets above each other*/
        position: relative;
    }

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
        /*stacking fieldsets above each other*/
        position: relative;
    }

        /*Hide all except first fieldset*/
        #msform fieldset:not(:first-of-type) {
            display: none;
        }

        #msform fieldset .form-card {
            text-align: left;
            color: #9E9E9E;
        }

    #msform input, #msform textarea {
        padding: 10px;
        border: none;
        border: 1px solid #ccc;
        border-radius: 0.2rem;
        /*margin-bottom: 25px;*/
        /*margin-top: 1px;*/
        width: 100%;
        box-sizing: border-box;
        font: 600 15px "Open Sans",sans-serif;
        color: black;
        font-size: 16px;
        /* letter-spacing: 1px; */
    }

        #msform input:focus, #msform textarea:focus {
            -moz-box-shadow: none !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            border: none;
            font-weight: bold;
            border-bottom: 2px solid skyblue;
            outline-width: 0;
        }

    /*Blue Buttons*/
    #msform .action-button {
        width: 100px;
        background: #7B7B7B;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 5px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
        font-family: 'Josefin Sans';
    }

        #msform .action-button:hover, #msform .action-button:focus {
            /*box-shadow: 0 0 0 2px white, 0 0 0 3px skyblue;*/
        }

    /*Previous Buttons*/
    #msform .action-button-previous {
        width: 100px;
        background: lightgrey;
        font-weight: bold;
        color: #000;
        border: 0 none;
        border-radius: 5px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
        font-family: 'Josefin Sans';
    }

        #msform .action-button-previous:hover, #msform .action-button-previous:focus {
            /*box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;*/
        }

/*Dropdown List Exp Date*/
select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

    select.list-dt:focus {
        border-bottom: 2px solid skyblue;
    }

/*The background card*/
.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
}

/*FieldSet headings*/
.fs-title {
    font-size: 20px;
    color: #888;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
    font-family: 'Josefin Sans';
    text-transform:uppercase
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #27bc83;
    background-color: white;
}

    #progressbar .active {
        color: #101010;
    }

    #progressbar li {
        list-style-type: none;
        font-size: 12px;
        width: 33.3%;
        float: left;
        position: relative;
        color: #888;
    }

    /*Icons in the ProgressBar*/
    #progressbar #contact:before {
        font-family: FontAwesome;
        content: "2";
    }

    #progressbar #personal:before {
        font-family: FontAwesome;
        content: "1";
    }

    #progressbar #academic:before {
        font-family: FontAwesome;
        content: "3";
    }

    #progressbar #experience:before {
        font-family: FontAwesome;
        content: "4";
    }

    #progressbar #document:before {
        font-family: FontAwesome;
        content: "5";
    }

    #progressbar #resume:before {
        font-family: FontAwesome;
        content: "6";
    }

    /*ProgressBar before any progress*/
    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 18px;
        color: black;
        background: aliceblue;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px;
    }

    /*ProgressBar connectors*/
    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: aliceblue;
        position: absolute;
        left: 0;
        top: 13px;
        z-index: 3;
    }

    /*Color number of the step and the connector before it*/
    #progressbar li.active:before, #progressbar li.active:after {
        background: #66fdd3;
        color: #000 !important;
    }

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display: inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px 2px;
}

    .radio:hover {
        box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
    }

    .radio.selected {
        box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
    }

/*Fit image in bootstrap div*/
.fit-image {
    width: 100%;
    object-fit: cover;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

input[type="text"], input[type="number"] {
    padding: 10px
}

label {
    
    margin-top: 5px;
}

.col {
    /*background-color: #000*/
}

select {
/*    background-color: #000;*/
    color: #7A7A7A;
}

.container-fluid {
    width: 100%
}

.form-card {
    /*background-color: #000;*/
    color: #000
}

.form-control {
    font-family: system-ui, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
}

<style >
.checkbox-wrapper-1 *,
.checkbox-wrapper-1 ::after,
.checkbox-wrapper-1 ::before {
    box-sizing: border-box;
}

.checkbox-wrapper-1 [type=checkbox].substituted {
    margin: 0;
    width: 0;
    height: 0;
    display: inline;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .checkbox-wrapper-1 [type=checkbox].substituted + label:before {
        content: "";
        display: inline-block;
        vertical-align: top;
        height: 1.15em;
        width: 1.15em;
        margin-right: 0.6em;
        color: rgba(0, 0, 0, 0.275);
        border: solid 0.06em;
        box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em inset, 0 0 0 0.07em transparent inset;
        border-radius: 0.2em;
        background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>') no-repeat center, white;
        background-size: 0;
        will-change: color, border, background, background-size, box-shadow;
        transform: translate3d(0, 0, 0);
        transition: color 0.1s, border 0.1s, background 0.15s, box-shadow 0.1s;
    }

    .checkbox-wrapper-1 [type=checkbox].substituted:enabled:active + label:before,
    .checkbox-wrapper-1 [type=checkbox].substituted:enabled + label:active:before {
        box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset;
        background-color: #f0f0f0;
    }

    .checkbox-wrapper-1 [type=checkbox].substituted:checked + label:before {
        background-color: #3B99FC;
        background-size: 0.75em;
        color: rgba(0, 0, 0, 0.075);
    }

    .checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled:active + label:before,
    .checkbox-wrapper-1 [type=checkbox].substituted:checked:enabled + label:active:before {
        background-color: #0a7ffb;
        color: rgba(0, 0, 0, 0.275);
    }

    .checkbox-wrapper-1 [type=checkbox].substituted:focus + label:before {
        box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55), 0 0 0 5px rgba(65, 159, 255, 0.3);
    }

    .checkbox-wrapper-1 [type=checkbox].substituted:focus:active + label:before,
    .checkbox-wrapper-1 [type=checkbox].substituted:focus + label:active:before {
        box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(0, 0, 0, 0.1) inset, 0 0 0 3.3px rgba(65, 159, 255, 0.55), 0 0 0 5px rgba(65, 159, 255, 0.3);
    }

    .checkbox-wrapper-1 [type=checkbox].substituted:disabled + label:before {
        opacity: 0.5;
    }

    .checkbox-wrapper-1 [type=checkbox].substituted.dark + label:before {
        color: rgba(255, 255, 255, 0.275);
        background-color: #222;
        background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="rgba(34, 34, 34, 0.999)" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>');
    }

    .checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled:active + label:before,
    .checkbox-wrapper-1 [type=checkbox].substituted.dark:enabled + label:active:before {
        background-color: #444;
        box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em transparent inset, 0 0 0 0.07em rgba(255, 255, 255, 0.1) inset;
    }

    .checkbox-wrapper-1 [type=checkbox].substituted.dark:checked + label:before {
        background-color: #a97035;
        color: rgba(255, 255, 255, 0.075);
    }

    .checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled:active + label:before,
    .checkbox-wrapper-1 [type=checkbox].substituted.dark:checked:enabled + label:active:before {
        background-color: #c68035;
        color: rgba(0, 0, 0, 0.275);
    }

.profile-pic {
    width: 200px;
    max-height: 200px;
    display: inline-block;
}

.file-upload {
    display: none;
}

.circle {
    border-radius: 100% !important;
    overflow: hidden;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

.p-image {
    position: absolute;
    top: 120px;
    left: 1020px;
    color: #666666;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}

    .p-image:hover {
        transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    }

.upload-button {
    font-size: 1.2em;
}

    .upload-button:hover {
        transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
        color: #999;
    }

.btn-primary {
    background: #7B7B7B;
    border-color: white;
}

    .btn-primary:hover {
        background: #7B7B7B;
        border-color: #7B7B7B;
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        background: #7B7B7B;
        border-color: #7B7B7B;
    }

        .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: none;
        }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        background: #7B7B7B;
        border-color: #7B7B7B;
        box-shadow: none;
    }

#B,
.hideError {
    display: none;
}

.showError {
    display: block;
    color: #DC3C14;
}
