html,
body {
    margin: 0;
    padding: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}


.loader {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: #00001a;
}

.loader:empty {
    display: none;
}


.header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

.logo {
    max-width: 520px;
    display: flex;
}

.logo__text {
    font-size: 36px;
    font-weight: 600;
    color: #00001a;
    font-family: Roboto-bold, sans-serif;
    margin-right: 22px;
}

/*============================================*/

.inner {
    max-width: 425px;
    width: 100%;
    padding: 30px 0;
}

@media (max-width: 520px) {
    .inner {
        padding: 0 15px;
        box-sizing: border-box;
    }
}

.search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #cccccc;
    transition: .3s;
    outline: none;
}

.search-btn--no-border {
    border: none;
}

.search-btn:hover {
    background-color: #dedede;
    transition: .3s;
    cursor: pointer;
}
