/* PROCEDURE */

.procedure{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 20px;
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: #111;
}

.procedure > div{
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    
    border-radius: 50%;
}

.procedure > div:nth-child(1){
    border: 2px solid #fff;
}

.procedure > div:nth-child(3),
.procedure > div:nth-child(5),
.procedure > div:nth-child(7){
    border: 2px solid #5E5E5E;
}

.procedure > div > img{
    width: 50px;
    height: 50px;

    padding: 10px;
}

.procedure > p{
    width: 10%;
    height: 2px;
}

.procedure > p:nth-child(2),
.procedure > p:nth-child(4),
.procedure > p:nth-child(6){
    background-color: #5E5E5E;
}

.procedure-text{
    position: absolute;
    top: 70px;

    text-align: center;
    font-size: 14px;
}

.procedure > div:nth-of-type(1) > .procedure-text{color: #fff;}
.procedure > div:nth-of-type(2) > .procedure-text{color: #5E5E5E;}
.procedure > div:nth-of-type(3) > .procedure-text{color: #5E5E5E;}
.procedure > div:nth-of-type(4) > .procedure-text{color: #5E5E5E;}

@media (max-width: 700px) {
    .procedure > p{
        width: 10%;
    }

    .procedure-text{
        font-size: 10px;
    }
}

/* CALCULATOR */

.form-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    padding: 0 20px;
    padding-bottom: 100px;
    background-color: #111;
    color: #fff;
}

.form-container > form{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    width: 700px;

    padding: 40px;
    background-color: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 15px;
}

.form-container > form > h2{
    font-size: 40px;
    padding-bottom: 10px;
}

.form-container > form > h3{
    font-size: 12px;
    color: #808080;

    padding: 30px 0;
}

.calculator-inline-section{
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: 100%;
}

.calculator-spacing{
    padding-bottom: 30px;
}

.calculator-inline-section > p{
    font-size: 14px;
    white-space: nowrap;
    text-align: right;
}

.calculator-inline-section > select{
    background-color: #212121;
    border: 1px solid #5e5e5e;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    padding: 5px;

    cursor: pointer;
}

.calculator-inline-section > select:focus{
    outline: 0;
}

.calculator-horisontal-line{
    width: 100%;
    height: 2px;
    background-color: #323232;
}

.calculator-disclaimer-1{
    font-size: 12px;
    max-width: 400px;
}

.calculator-disclaimer-2{
    position: absolute;
    bottom: -20px;
    left: 0;

    font-size: 12px;
}

.container-storage{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.container-storage > div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
}

.container-storage > div > input{
    background-color: #212121;
    border: 1px solid #5e5e5e;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    padding: 5px;
}

.container-storage > div > input:focus{
    outline: 0;
}

.container-storage > div > b{
    font-size: 14px;
    white-space: nowrap;
}

.container-storage > p{
    font-size: 12px;
    color: #19AAA8;
}

.billing-cycle{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: 100%;
    padding-bottom: 50px;
}

.billing-cycle-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

    width: 33%;
    padding: 20px;

    border: 1px solid #2a2a2a;
    border-radius: 12px;

    cursor: pointer;
    transition: all 0.5s;
}

.billing-cycle-card > input{
    display: none;
}

.billing-cycle-card > img{
    width: 35px;
    height: 35px;
}

.billing-cycle-card > p{
    font-size: 14px;
    font-weight: 700;
}

.billing-cycle-card > div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.billing-cycle-card > div > input{
    background-color: #212121;
    border: 1px solid #5e5e5e;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    padding: 5px;

    width: 70px;
}

.billing-cycle-card > div > input:focus{
    outline: 0;
}

.billing-cycle-card > div > p{
    font-size: 10px;
}

.form-container > form > h4{
   font-size: 14px;
   color: #19AAA8;
   width: 100%;
   text-align: center;
   padding-top: 35px;
}

.container-submit-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-submit-button > button{
    padding: 10px;
    width: 60%;

    margin-top: 50px;

    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    border: 0;

    background-color: #c6168d;
    color: #fff;

    cursor: pointer;
}

@media (max-width: 740px) {
    .form-container > form{
        width: 100%;
    }
}

@media (max-width: 600px) {
    .form-container > form{
        padding: 20px;
    }

    .form-container > form > h2{
        font-size: 25px;
    }

    .billing-cycle{
        flex-direction: column;
    }

    .billing-cycle-card{
        width: 100%;
    }

    .container-submit-button > button{
        width: 100%;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .form-container > form > h3{
        font-size: 10px;
    }

    .calculator-inline-section > p{
        font-size: 10px;
    }

    .calculator-inline-section > select{
        font-size: 10px;
    }

    .calculator-disclaimer-1,
    .calculator-disclaimer-2{
        font-size: 10px;
    }

    .container-storage > p{
        font-size: 10px;
    }

    .container-storage > div > b{
        font-size: 10px;
    }

    .container-storage > div > input{
        font-size: 10px;
    }
}

/* BILLING CYCLE */

.billing-cycle-active{
    border: 1px solid #E24D99;
}

/* BILLING CYCLE INPUT NUMBER FIELD DISABLED */

.billing-cycle-card > div > input:disabled{
    background-color: #141414;
    border: 1px solid #2A2A2A;
}