@font-face {
    font-family: "Roboto";
    src: url("/static/fonts/roboto/roboto-regular-webfont.tff") format("tff"),
         url("/static/fonts/roboto/roboto-regular-webfont.svg") format("svg"),
         url("/static/fonts/roboto/roboto-regular-webfont.woff") format("woff"),
         url("/static/fonts/roboto/roboto-regular-webfont.eot") format("eot");
}

@font-face {
    font-family: "SourceSansPro";
    src: url("/static/fonts/source-sans-pro/sourcesanspro-regular-webfont.tff") format("tff"),
         url("/static/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2") format("woff2"),
         url("/static/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff") format("woff"),
         url("/static/fonts/source-sans-pro/sourcesanspro-regular-webfont.eot") format("eot");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: SourceSansPro, sans-serif;
    background-color: #F0F0F0;
    color: #585B63;
}

a[href] {
    color: #0079AA;
    text-decoration: none;
}

.header {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: #111;
}

.header__brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #C046FF;
}

.header__brand-icon img {
    width: 30px;
    height: 30px;
}

.header__brand-title {
    padding: 0 15px;
    color: white;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 30px 30px 15px;
    background-color: white;
}

.popup__title {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

.popup__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 20px auto 10px;
    background-color: #F3F3F3;
    border-radius: 50%;
}

.popup__text {
    font-size: 14px;
    line-height: 17px;
}

.popup__text p {
    margin: 15px 0;
}

.popup__text ul {
    margin: 15px 0 15px 14px;
}

.popup__text li {
    margin: 3px 0;
}
