.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.icon {
    width: 44px;
    height: 24px;
    padding-right: 20px;
}


.notification {
    text-align: center;
    background-color: #2980b9;
    color: #fff;
    padding: 10px 0;
    font-weight: bold;
}

.notification a {
    color: #eee;
    text-decoration: underline;
}

.btn.shop img {
    width: 20px;
    height: 20px;
}

.btn.shop {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}



/* dialog */


.dialog .btn {
    background-color: #eee;
    box-shadow: none;
    color: #222;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.dialog {
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dialog .title {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.dialog .message {
    margin-bottom: 20px;
}

.dialog .btns {
    display: flex;
    justify-content: flex-end;
}


.info .message {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.info .message a {
    display: block;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1.3rem;
    color: #222;
    text-decoration: none;
}

.info .message a:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.btn.secondary {
    background-color: #b32246;
}

.btn.secondary:hover, .btn.primary:hover {
    text-decoration: none;
}
