@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Open Sans", sans-serif;
    background: #092244;
    color: #7e7e7e;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

header{
    width: 100%;

    .container{
        max-width: 1200px;
        width: 100%;
        margin: auto;
        display: flex;
        align-items: center;
        padding: 10px 0;

        div{
            flex:1;
        }

        .logo{
            text-align: center;
        }
    }

    .text-container{
        max-width: 1200px;
        width: 100%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        color: #fff;
    }
}

main.main{
    width: 100%;
    padding: 0 10px;

    .wrap{
        max-width: 1200px;
        width: 100%;
        margin: auto;
        background: #fff;
        border-radius: 10px;
        padding: 15px;
    }
}

.successBox{
    width: 100%;
    padding: 20px;
    background: #a8f5ab;
    margin-bottom: 20px;
    border-radius:2.5px;

    .successMessage{
        text-align: center;
        color: #005900;
        font-weight: 700;
    }
}

.successHomeBtn{
    text-align: center;

    a{
        display: inline-block;
        text-decoration: none;
        padding: 15px 30px;
        background: #f1f1f1;
        color: #000;
        font-size: 16px;
        font-weight: 500;
        transition: .3s;
        border-radius: 2.5px;
        margin-bottom: 20px;
        
        &:hover{
            background: #e5e5e5;
        }
    }
}



.calcTable{
    width: 100%;
    color: #000;
    border-collapse: collapse;

    th{
        padding: 5px;
    }

    tr{
        text-align: center;
        font-size: 18px;
        font-weight: 500;
    }

    td{
        padding: 20px 10px;
    }

    tfoot{
        border-top: 2px solid #01233f1c;
        
        td{
            color: #a1742c;

            div{
                color: initial;
            }
        }
    }
}


.inputWrap{
    display: inline-flex;
    background: #f3f3f3;
    overflow: hidden;
    border-radius: 25px;

    input[type="number"]{
        border: 0px;
        background: transparent;
        text-align: center;
        outline: none;
        font-size: 16px;
        font-weight: 600;
        color: #00000096;
    }

    .inputBtn{
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0px;
        background: transparent;
        cursor: pointer;
        color: #00000096;

        svg{
            width: 20px;
            height: 20px;
        }
    }
}

footer{
    padding: 20px;

.copy{
    text-align: center;
    color: #405a7d;
    text-decoration: underline;
}

}


.input {
    background-color: #f3f3f3;
    border: 1px solid #3e3e3e;
    border-radius: 8px;
    color: #000;
    padding: 14px 24px;
    text-decoration: none;
    font-size: 16px;
    margin: 12px 14px;
    cursor: pointer;
    outline: none;
}

.input:hover {
    border: 1px solid #5b5efc;
}


.send {
    appearance: none;
    background-color: transparent;
    border: 0.125em solid #1A1A1A;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 3.75em;
    min-width: 0;
    outline: none;
    padding: 1em 65px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
   }
   
   .send:disabled {
    pointer-events: none;
   }
   
   .send:hover {
    color: #fff;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
   }
   
   .send:active {
    box-shadow: none;
    transform: translateY(0);
   }