
:root {
    --grey:  #777;
    --grey2: #dfe3e4;
    --blue:  #2183dd;
    --green: #009900;
    --white: #fff;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url('fonts/CenturyGothic.eot');
    src: url('fonts/CenturyGothic.eot') format('embedded-opentype'),
         url('fonts/CenturyGothic.woff2') format('woff2'),
         url('fonts/CenturyGothic.woff') format('woff'),
         url('fonts/CenturyGothic.ttf') format('truetype');
}

body {
    font-family: CenturyGothic,"Times New Roman",serif;
    font-size: 14px;
}
header {
    background-color: #103052;
    color: #fff;
}
header .text-logo{
    color: #ffce43;
    font-weight: bold;
    font-size: 24px;
    align-content: center;
    padding-left: 20px;
    min-height: 60px;
    letter-spacing: 2px;
}
header .signup-progress{
    color: #fff;
    font-weight: bold;
    padding-right: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 580px) {
    header .text-logo{
        padding-left: 0;
    }
    header .signup-progress{
        padding: 20px;
        position: relative;
        transform: translateY(0);
    }
}
.btn {
    font-size: 1em;
}
.button-size {
    width: 200px !important;
}
@media (max-width: 1400px) {
    .button-size {
        width: 100% !important;
    }
}
@media (max-width: 1200px) {
    .button-size {
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    .button-size {
        width: 100% !important;
    }
}
@media (max-width: 600px) {
    .button-size {
        width: 100% !important;
    }
}
.input-field {
    max-width: 300px;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid var(--grey2);
    border-radius: 4px;
}
/******
POP BOX
******/
button.close {
	font-size: 1em;
	font-weight: 400;
	padding: 0 0.5em;
	color: #fff;
	text-shadow: none;
	opacity: 1;
}

#dim {
	display: none;
	position: fixed;
	z-index: 9998;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	left: 0;
}

.pop {
	display: none;
	position: fixed;
	max-width: 50vw;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	left: 0;
	margin: auto;
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	z-index: 9999;
	width: max-content;
	height: max-content;
}

.pop#pup-ajax {
	width: 400px;
	text-align: center;
}

.pop#pup-ajax p {
	margin-top: 0;
	font-size: 13px;
}

.pop#pup-ajax form {
	margin: 0;
}

.pop#pup-ajax div {
	display: flex;
	align-items: center;
}

.pop#pup-ajax input[type='text'] {
	width: calc(100% - 155px);
	margin-right: 5px;
	font-family: 'Lato';
}

.pop#pup-ajax input[type='submit'] {
	width: 150px;
}



.twc-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.twc-progressbar {
    counter-reset: step;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.twc-progressbar li {
    position: relative;
    width: 20%;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .twc-progressbar {
        flex-wrap: wrap;
    }
    .twc-progressbar li {
        width: calc(100% / 4);
    }
}

.twc-progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    border: 2px solid #bebebe;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    line-height: 27px;
    background: white;
    color: #bebebe;
    text-align: center;
    font-weight: bold;
}

.twc-progressbar li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #979797;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.twc-progressbar li:first-child:after {
    content: none;
}

.twc-progressbar li.active:before {
    border-color: #3aac5d;
    background: #3aac5d;
    color: white;
}
.twc-progressbar li.active:hover {
    cursor: pointer;
}
.twc-progressbar li.active:hover:before {
    border-color: #3aac5d !important;
    background: #fff !important;
    color: #3aac5d !important;
}

.twc-progressbar li.active + li:after {
    background: #3aac5d;
}
