﻿@import url('https://fonts.googleapis.com/css2?family=Gugi&family=Yusei+Magic&display=swap');

/*font-family: 'Gugi', cursive;*/
/*color: #333F50;
color: #ff0000;*/

* {
    box-sizing: border-box;
    font-family: 'Gugi', cursive;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-wrapper h1 
{
    color: #ff0000;
    font-family: 'Gugi', cursive;
    font-weight: 700;
    text-align: center;
    line-height: 23px;
}

.process-wrapper h1 span
{
    color: #ff0000;
}

.process-wrapper
{
    margin: auto;
    max-width: 1080px;
}

#progress-bar-container
{
    position: relative;
    width: 90%;
    margin: auto;
    height: 100px;
    margin-top: 10rem;
}

#progress-bar-container ul
{
    padding: 0;
    margin: 0;
    padding-top: 15px;
    z-index: 9999;
    position: absolute;
    width: 100%;
    margin-top: -90px;
}

#progress-bar-container li:before
{
    content: "";
    display: block;
    margin: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: solid 3px #ff0000;
    transition: all ease 0.3s;
}

#progress-bar-container li.active:before,
#progress-bar-container li:hover:before
{
    border:solid 2px #fff;
	background: linear-gradient(to right, #ff0000 0%,#333F50 100%); 
}

#progress-bar-container li
{
    list-style: none;
    float: left;
    width: 9%;
    text-align: center;
    color: #ff0000;
    font-size: 2rem;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.2s;
    vertical-align: bottom;
    height: 60px;
    position: relative;
}

#progress-bar-container li .step-inner
{
    position: absolute;
    width: 100%;
    bottom: 0;
    font-size: 2rem;
}

#progress-bar-container li .active,
#progress-bar-container li:hover
{
    color: #ff0000;
}

#progress-bar-container li:after
{
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #333F50;
    margin: auto;
    border: solid 7px #ff0000;
    border-radius: 50%;
    margin-top: 40px;
    box-shadow: 0 2px 13px -1px rgba(0,0,0,0.3);
    transition: all ease 0.2s;
}

#progress-bar-container li:hover:after
{
    background: #333F50;
}

#progress-bar-container li.active:after
{
    background: #333F50;
}

#progress-bar-container #line
{
    width: 100%;
    margin: auto;
    background: #eee;
    height: 5px;
    position: absolute;
    z-index: 1;
    border-radius: 50px;
    transition: all ease 0.9s;
}

#progress-bar-container #line-process
{
    content: "";
    width: 100%;
    height: 100%;
    background: #ff0000;
    background: linear-gradient(to right, #ff0000 0%, #333F50 100%);
    position: absolute;
    z-index: 2;
    border-radius: 50px;
    transition: all ease 0.9s;
}

#progress-content-section
{
    width: 90%;
    margin: auto;
    background: #F3F3F3;
    border-radius: 4px;
}

#progress-content-section .section-content
{
    padding: 30px 40px;
    text-align: center;
}

#progress-content-section .section-content h2 {
	font-size: 17px;
	text-transform: uppercase;
	color: #ff0000;
	letter-spacing: 1px;
}

#progress-content-section .section-content p {  
	font-size: 16px;
	line-height: 1.8em;
	color: #777;
}

#progress-content-section .section-content {
	display: none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode: forwards;
	transform: translateY(15px);
	opacity: 0;
}

#progress-content-section .section-content.active {
	display: block;
}

@keyframes FadeInUp {
	0% {
		transform: translateY(15px);
		opacity: 0;
	}
	
	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

/*Close Button*/

.close-container {
    position: absolute;
    width: 30px;
    height: 10px;
    margin-left: 93%;
    cursor: pointer;
}

.leftright {
    height: 4px;
    width: 30px;
    position: absolute;
    margin-top: -280px;
    background-color: #FF0000;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all .3s ease-in;
}

.rightleft {
    height: 4px;
    width: 30px;
    position: absolute;
    margin-top: -280px;
    background-color: #FF0000;
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: all .3s ease-in;
}

.close-container:hover .leftright {
    transform: rotate(-45deg);
    background-color: #333F50;
}

.close-container:hover .rightleft {
    transform: rotate(45deg);
    background-color: #333F50;
}

.close-container:hover label {
    opacity: 1;
}