
            html,body {
                font-family: 'Ubuntu', sans-serif;
                background: #3e3e3e;
            }

            #error {
                background: #fdd;
                width: 500px;
                margin: 0 auto;
                border: 2px dashed #f00;
                padding: 10px 15px;
                display: none;
            }

            #success {
                background: #e2ffe4;
                width: 500px;
                margin: 0 auto;
                border: 2px dashed #00c321;
                padding: 10px 15px;
                display: none;
            }

            #success a{
                color: #1b3d1d;
            }

            #info {
                background: #c2d9ff;
                width: 500px;
                margin: 0 auto;
                border: 2px dashed #0d6aff;
                padding: 10px 15px;
                display: none;
            }
            
            #convert {
                width: 500px;
                height: 60px;
                margin: 0 auto;
				display: flex;
				align-items: center;
				justify-content: center;
            }

            #radiobuttons {
                width: 500px;
                height: 60px;
                margin: 0 auto;
				display: flex;
				align-items: center;
				justify-content: center;
            }

            #radiobuttons p {
                margin-right: 20px;
            }

            #radiobuttons p:last-child {
                margin-right: 0px;
            }
            
            #radiobuttons p label{
                color: #fff;
            }

            #radiobuttons p [type="radio"]:checked,
            #radiobuttons p [type="radio"]:not(:checked) {
                position: absolute;
                left: -9999px;
            }
            #radiobuttons p [type="radio"]:checked + label,
            #radiobuttons p [type="radio"]:not(:checked) + label
            {
                position: relative;
                padding-left: 28px;
                cursor: pointer;
                line-height: 20px;
                display: inline-block;
            }
            #radiobuttons p [type="radio"]:checked + label:before,
            #radiobuttons p [type="radio"]:not(:checked) + label:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 18px;
                height: 18px;
                border: 1px solid #ddd;
                border-radius: 100%;
                background: #fff;
            }
            #radiobuttons p [type="radio"]:checked + label:after,
            #radiobuttons p [type="radio"]:not(:checked) + label:after {
                content: '';
                width: 12px;
                height: 12px;
                background: #0089ff;
                position: absolute;
                top: 4px;
                left: 4px;
                border-radius: 100%;
                -webkit-transition: all 0.2s ease;
                transition: all 0.2s ease;
            }
            #radiobuttons p [type="radio"]:not(:checked) + label:after {
                opacity: 0;
                -webkit-transform: scale(0);
                transform: scale(0);
            }
            #radiobuttons p [type="radio"]:checked + label:after {
                opacity: 1;
                -webkit-transform: scale(1);
                transform: scale(1);
            }


            #dropzone {
                border: 2px dashed #ccc;
                width: 500px;
                height: 300px;
				display: flex;
				align-items: center;
				justify-content: center;
				margin: 0 auto;
				background: #585858;
				color: #ccc;
				transition: all 0.5s ease-out;
			}

			#dropzone:hover {
				border: 2px dashed #fff;
				cursor: pointer;
				color: #fff;
				background: #2f2f2f;
			}

			#dropzone .text {
				width: 100%;
				font-size: 20px;
				text-align: center;
				line-height: 30px;
			}
            
            #files {
                width: 500px;
                margin: 0 auto;
                color: #fff;
            }

            #files button {

                background: #333;
                color: #f00;
                border: 1px solid #f00;
                height: 25px;
                width: 25px;
                -webkit-border-radius: 6px;
                -moz-border-radius: 6px;
                border-radius: 6px;
                transition: all 0.5s ease-out;
                cursor: pointer;
                outline: none;

            }

            #files button:hover {

                background: #212121;
                color: #f00;
                border: 1px solid #f00;
                -webkit-border-radius: 0px;
                -moz-border-radius: 0px;
                border-radius: 0px;


                }

            #convert button {

                background: #333;
                color: #00ff89;
                border: 1px solid #00ff89;
                height: 45px;
                width: 205px;
                -webkit-border-radius: 6px;
                -moz-border-radius: 6px;
                border-radius: 6px;
                transition: all 0.5s ease-out;
                cursor: pointer;
                outline: none;

            }

            #convert button:hover {

                background: #212121;
                color: #00ff89;
                border: 1px solid #00ff89;
                -webkit-border-radius: 0px;
                -moz-border-radius: 0px;
                border-radius: 0px;


                }
