/*custom font*/

            /*form styles*/
            #msform {
                width: 75%;
                margin: 50px auto;
                text-align: center;
                position: relative;
                z-index: 9;
            }
            #msform fieldset {
                background: white;
                border: 0 none;
                border-radius: 3px;
                box-shadow: #ccc 0 0 10px;
                padding: 20px 30px;
                box-sizing: border-box;
                width: 96%;
                margin: 0 2%;
                /*stacking fieldsets above each other*/
                /*position: absolute;*/
            }
            /*Hide all except first fieldset*/
            #msform fieldset:not(:first-of-type) {
                display: none;
            }
            /*inputs*/
            #msform input::-webkit-input-placeholder ,#msform textarea::-webkit-input-placeholder { /* Microsoft Edge */
                color: #00bcd4;
               }
            #msform input, #msform textarea {
                padding: 9px;
                border: 1px solid #00bcd4;
                border-radius: 3px;
                margin-bottom: 10px;
                width: 49%;
                box-sizing: border-box;
                font-family: 'Rubik', sans-serif;
                color: #038393;
                font-size: 13px;
            }
            input[type="radio"]{width:auto!important;}
            /*buttons*/
            #msform .action-button {
                width: 100px;
                background: #f56223;
                font-weight: bold;
                color: white;
                border: 0 none;
                border-radius: 1px;
                cursor: pointer;
                padding: 10px 5px;
                margin: 10px 5px;
                outline: none;
            }
            #msform .action-button:hover, #msform .action-button:focus {
                box-shadow: 0 0 0 2px white, 0 0 0 3px #f56223;
            }
            /*headings*/
            .fs-title {
                color: #1e7fb2;
                font-weight: bold;
                font-size: 19px;
                margin-bottom: 10px;
            }
            .fs-subtitle {
                font-size: 15px;
                color: #7b1fa2;
                margin-bottom: 20px;
                font-weight: 600;
            }
            /*progressbar*/
            #progressbar {
                margin-bottom: 30px;
                overflow: hidden;
                /*CSS counters to number the steps*/
                counter-reset: step;
                padding: 0 10px;
            }
            #progressbar li {
                list-style-type: none;
                color: #283593;
                text-transform: uppercase;
                font-size: 11px;
                width: 25%;
                float: left;
                position: relative;
                font-weight: 500;
            }
            #progressbar li:before {
                border: 1px solid #eee;
                font-family: monospace;
                content: counter(step);
                counter-increment: step;
                width: 20px;
                line-height: 20px;
                display: block;
                font-size: 10px;
                color: #333;
                background: white;
                border-radius: 3px;
                margin: 0 auto 5px auto;
            }
            /*progressbar connectors*/
            #progressbar li:after {
                content: '';
                width: 100%;
                height: 2px;
                background: #f56223;
                position: absolute;
                left: -50%;
                top: 9px;
                z-index: -1; /*put it behind the numbers*/
            }
            #progressbar li:first-child:after {
                /*connector not needed before the first step*/
                content: none;
            }
            /*marking active/completed steps green*/
            /*The number of the step and the connector before it = green*/
            #progressbar li.active:before, #progressbar li.active:after {
                background: #f56223;
                border: 1px solid #f56223;
                color: white;
            }
            input[type="file"] {
                color: transparent !important;
            }
            
            .desposit_method label
            {
                width: 46%;
                text-align: right;
                padding-right: 15px;
                display: inline-block;
                font-size:14px;
            }
            .error{
                color: red;
            }