@import 'navigation.css';
@import 'footer.css';

@font-face {
    font-family: "Maax Black";
    src: url('../fnt/Maax-Black.otf');
}

body {
    background-color: rgb(247, 247, 247);
}

#content {
    width: 1140px;
    margin: 0 auto;
    padding-top: 84px;
}

#content>h2 {
    position: relative;
    top: -4px;
    margin-top: 0px;
    margin-left: 96px;
    font-family: inherit;
    font-weight: 700;
    font-size: 24pt;
}

.padding {
    padding: 12px 0;
}

.blue {
    background-color: #70bfea;
}

#aviso p {
    margin-left: 96px;
    color: #fff;
    font-family: "Maax Black";
    font-weight: 400;
    font-size: 14pt;
}

#content>.third {
    display: inline-block;
    float: left;
    width: 33%;
    height: 90px;
}

#content>.third span {
    position: relative;
    top: 16px;
    color: #70bfea;
    font-size: 24pt;
}

#content>.third p {
    display: inline-block;
    position: relative;
    top: 12px;
    margin-left: 8px;
}

.step1 {
    padding-left: 96px;
    background-color: rgba(85, 173, 227, .5);
}

.step1 span {
    color: #fff;
}

.step2,
.step3 {
    padding-left: 48px;
}

#inner-content {
    position: relative;
    clear: both;
    background-color: #fff;
    overflow: hidden;
    -webkit-transition: height 1s;
    transition: height 1s;
}

.form {
    display: inline-block;
    float: left;
    width: 66%;
    padding: 32px 64px 0 96px;
}

.form h3 {
    font-family: "Maax Black";
}

.form p {
    font-size: 10pt;
}

.half {
    display: inline-block;
    float: left;
    width: 50%;
}

input,
select {
    padding: 6px 16px;
    font-size: 10pt;
}

select {
    width: 228px;
    height: 36px;
    margin-bottom: 16px;
}

#email {
    margin: 32px 0 4px;
}

.error {
    color: #f00;
    font-style: normal;
    font-weight: 400;
    font-size: 10pt;
}

.button {
    padding: 6px 24px;
    border-radius: 12.5px;
    background-color: #70bfea;
    color: #fff;
    font-size: 9pt;
    cursor: pointer;
}

#volver {
    position: relative;
    top: 14px;
    left: 12px;
    font-size: 9pt;
}

#volver:before {
    display: inline-block;
    position: relative;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 24px;
    background-image: url('../img/back.png');
    background-size: 100%;
    background-repeat: no-repeat;
    content: "";
}

#fase2 {
    display: none;
    position: relative;
    padding-right: 110px;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

#fase2 h3:first-of-type {
    margin-top: 28px;
}

#fase2>div:first-of-type,
#fase2>div:nth-of-type(2),
#fase3>div:first-of-type,
#fase3>div:nth-of-type(2) {
    display: inline-block;
    float: right;
    margin-top: 12px;
    margin-bottom: 24px;
}

#fase2>div:first-of-type,
#fase3>div:first-of-type {
    width: 250px;
}

#fase2>div:nth-of-type(2),
#fase3>div:nth-of-type(2) {
    width: 100px;
    margin-right: 32px;
    text-align: right;
}

#fase2>div:nth-of-type(2) p,
#fase3>div:nth-of-type(2) p {
    margin-bottom: 27px;
}

#fase2 input {
    margin-bottom: 16px;
}

#fase2 hr {
    clear: both;
    width: 588px;
    border-color: #000;
}

#fase2>h3:nth-of-type(2) {
    margin-top: 48px;
    margin-bottom: 24px;
}

#address {
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

#address p {
    cursor: pointer;
}

#fase3 {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

#confirmar-direccion {
    position: relative;
    top: -3px;
    left: 24px;
}

#direccion-error {
    display: block;
}

#fase3>div:first-of-type p {
    cursor: pointer;
}

#fase3>div:first-of-type span {
    position: relative;
    top: 8px;
    padding: 6px 64px;
}

#resume {
    display: inline-block;
    width: 34%;
    padding: 32px 64px 32px 48px;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
    background-color: rgb(247, 247, 247);
}

#resume h2 {
    margin-top: 0;
    line-height: 24pt;
}

#resume h3 {
    margin-bottom: 0;
    font-family: "Maax Black";
}

.item div {
    display: inline-block;
    float: left;
    width: 60%;
    margin-bottom: 16px;
}

#resume p {
    font-size: 9pt;
}

#resume img {
    position: relative;
    top: 20px;
    float: right;
    width: 76px;
}

#resume hr {
    clear: both;
    border-top: 3px solid rgb(224, 224, 224);
}

#resume p#total {
    margin-bottom: 32px;
    font-family: "Maax Black";
    font-weight: 400;
    font-size: 20px;
    text-align: right;
}

.resume-button {
    padding: 8px 12px;
    background-color: rgb(224, 224, 224);
    font-size: 10pt;
}

.opacity {
    animation: opacity 1s;
    animation-fill-mode: forwards;
}

@-webkit-keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}