html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
}

.root {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(30deg, #ecf0f1, #bdc3c7);
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.content .icon .name {
    font-weight: 500;
    font-size: 21px;
    color: #34495e;
    background: #e7e7e7;
    display: inline-block;
    vertical-align: middle;
    padding: 10px 15px;
    line-height: 21px;
    border-radius: 20px;
}

.content .icon {
    user-select: none;
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.content .icon img {
    width: 70px;
    height: auto;
    vertical-align: middle;
    filter: hue-rotate(120deg);
    z-index: 3;
    position: relative;
}

.content .block {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #ecf0f1;
    box-shadow: 0 0 60px 0 #bdc3c7;
    border-bottom: 4px rgba(0, 0, 0, 0.06) solid;
    border-radius: 42px;
    margin-top: 60px;
    margin-bottom: 12px;
    padding: 30px 20px;
    box-sizing: border-box;
}
.content .block.big {
    max-width: 800px;
}

.title {
    margin-top: 25px;
    text-align: center;
    color: #3498db;
    font-size: 27px;
    font-weight: 600;
}

.price {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    color: #3498db;
    opacity: 0.5;
    text-transform: uppercase;
}

.price b {
    font-weight: 400;
}

.offers {
    width: 100%;
}

.header {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #34495e;
    font-weight: 500;
}

.offers .item {
    display: inline-block;
    background: #e7e7e7;
    color: #34495e;
    width: calc(50% - 5px);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: all 200ms ease-out;
    cursor: pointer;
    user-select: none;
}

.offers .item:hover {
    background: #ecf0f1;
    box-shadow: 0 0 40px 0 rgba(189, 195, 199, 0.5);
    transform: scale(1.05);
}
.offers .item.selected {
    background: #34495e;
    color: #e7e7e7;
}

.offers .item .coins {
    font-size: 18px;
    font-weight: 500;
}

.offers .item .rub {
    opacity: 0.7;
}

.offers .item .rub b {
    font-weight: 600;
}

.offers .item.n1 {
    margin-right: 5px;
}
.offers .item.n2 {
    margin-left: 5px;
}

@media (max-width: 450px) {
    .offers .item{
        width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

.input {
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 30px;
    border: 0;

    background: #e7e7e7;
    color: #34495e;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.input::placeholder {
    color: #34495e;
    opacity: 0.5;
}

:-ms-input-placeholder {
    color: #34495e;
    opacity: 0.5;
}

::-ms-input-placeholder {
    color: #34495e;
    opacity: 0.5;
}

.button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    border: 0;
    box-sizing: border-box;
    border-radius: 30px;
    background: #34495e;
    outline: none;
    font-size: 16px;
    font-weight: 800;
    color: #e7e7e7;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    transition: background 200ms ease-out, color 200ms ease-out;
}

.button:hover {
    background: #e7e7e7;
    color: #34495e;
}

.social {
    margin-bottom: 40px;
    text-align: center;
    width: 90%;
}

.socialButton {
    background: rgba(52, 73, 94, 0.1);
    backdrop-filter: blur(6px);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 300;
    color: #34495e;
    margin: 8px 4px 0;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: background 200ms ease-out, color 200ms ease-out;
}

.socialButton:hover {
    background: rgba(52, 73, 94, 0.5);
    color: #e7e7e7;
}

.copy {
    margin-bottom: 30px;
    color: rgba(52, 73, 94, 0.5);
    font-size: 13px;
    font-weight: 300;
}

.contactsText {
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #34495e;
}

.contactsText a {
    font-weight: 500;
    color: #34495e;
}

.bigText{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #34495e;
    white-space: pre-line;
    margin-bottom: 30px;
}
.bigText a {
    font-weight: 500;
    color: #34495e;
}
.error {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 500;
    max-height: 50px;
    transition: all 200ms ease-out;
    padding-top: 10px;
    text-align: center;
}
.error.hidden {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
}