html {
    min-height: -webkit-fill-available;
}

:root {
    --primary: #03A9F4; 
    --secondary: #863BDC; 
    --error: #e91e54;
    --text-0: #5F6368;
}

.button {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(152.21deg, #2CBDFF 17.25%, #05A2E9 100.93%);
    border-radius: 8px;
    height: 48px;
    width: auto;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0px;
    text-align: left;
    text-decoration: none;
}

.button.open {
    background: transparent;
    margin-bottom: 12px;
}

body {
    background: #ffffff;
    color: var(--text-0);
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

.main {
    background: #fff;
}

header {
    position: relative;
    z-index: 100;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

header .inner {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

header .inner br {
    display: none;
}

header h1 {
    color: var(--text-0);
    box-sizing: border-box;
    padding: 0 32px;
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    margin: 148px 0 0 0;
}

header h2 {
    color: var(--text-0);
    box-sizing: border-box;
    font-weight: 400;
    padding: 0 32px;
    margin: 20px 0 0 0;
}

header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 32px;
    box-sizing: border-box;
    color: #FFFFFF;
}

.filters {
    background: #fff;
    padding:  16px 32px 112px 32px;
    position: relative;
}

.filters > * {
    position: relative;
    z-index: 1;
}

.filters .input {
    border-radius: 8px;
    border: 1px solid #D1D1D1;
    height: 48px;
    width: 100%;
    position: relative;
    background-color: #ffffff;
    width: 100%;
    max-width: 880px;
    margin:24px auto 0 auto ;
}

.filters .input input {
    background-color: transparent;
    border: none;
    height: 100%;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0 48px 0 12px;
    outline: 0;
    position: relative;
    z-index: 1;
}

.filters .input .icon {
    width: 24px;
    color: #969696;
    position: absolute;
    right: 14px;
    top: 10px;
    z-index: 0;
}

.filters .input input::placeholder {
    color: #969696;
}

.filters .input select {
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    background-color: transparent;
    font-size: 16px;
    border: none;
    height: 100%;
    width: 100%;
    padding: 0px 10px;
    outline: 0;
    position: relative;
    color: var(--text-0);
}

.filters .input .arrow {
    width: 16px;
    position: absolute;
    right: 18px;
    top: 21px;
    color: #969696;
}

.filters .wave {
    width: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: -112px;
    height: 400px;
}

.pluxins {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 880px;
    margin: auto;
}

.pluxins .inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0 32px;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
}

.pluxins > div .pluxin {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex: 0 0 33%; */
    margin-bottom: 20px;
    font-weight: 400;
    flex: 0 0 14%;
}

.pluxins > div .pluxin label {
    font-size: 14px;
    margin-top: 4px;
    text-align: center;
}

.pluxins > div .pluxin > div {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 1px 0px #000000aa;
    background-color: #fff;
}


.pluxins .link {
    text-decoration: none;
    font-weight: 600;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    color: var(--primary);
}

.cards {
    width: 100%;
    max-width: 880px;
    margin: 56px auto 0 auto;
    display: flex;
    flex-direction: row;
}

.build,
.missing {
    background: #fff;
    /* padding:  56px 32px 32px 32px; */
    overflow: hidden;   
    position: relative;
}

.missing {  
    flex: 0 0 50%;
    box-sizing: border-box;
    padding-right: 16px;
}

.missing .button { 
    margin-top: 43px;
}

.build {
    padding-top:  0;
    padding-bottom: 64px;

    flex: 0 0 50%;
    box-sizing: border-box;
    padding-left: 16px;
}

.build .card,
.missing .card {
    border-radius: 8px; 
    border: 1px solid var(--primary);
    background-color: #ffffff;
    box-shadow: 0px 2px 8px 0px #0000001A;
    box-sizing: border-box;
    padding: 24px;
}

.build .card h2,
.missing .card h2 {
    font-size: 20px;
    margin: 0;
}

@media only screen and (max-width: 480px) {

    header .inner {
        text-align: left;
    }

    header .inner br {
        display: block;
    }

    .cards {
        margin-top: 0;
        flex-direction: column;
    }
    
    .build,
    .missing {
        padding:  56px 32px 32px 32px;
    }

    .build {
        padding-top: 0;
        padding-bottom: 64px;
    }

    .pluxins > div .pluxin {
        flex: 0 0 33%;
    }

    .filters {
        padding-bottom: 92px;
    }

    .filters .wave {
        top: -44px;
        height: auto;
    }
    
}
