.download-app-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in-out;
    z-index: 99999;
}

.download-app-modal--visible {
    opacity: 1;
    visibility: visible;
}

.download-app-modal__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(5, 21, 46, 0.8);
}

.download-app-modal__container {
    position: absolute;
    top: 32px;
    right: 32px;
    left: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 10px -10px rgba(0, 56, 76, 0.16);
    padding: 32px;
}

@media screen and (min-width: 768px) {
    .download-app-modal__container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        min-height: 400px;
    }
}

.download-app-modal__item {
    display: none;
}

.download-app-modal__item--visible {
    display: block;
}

.download-app-modal__header {
    position: relative;
}

.download-app-modal__title-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.download-app-modal__title {
    font-size: 20px;
    color: #00384c;
    margin: 0;
}

.download-app-modal__description {
    color: #00384c;
}

.download-app-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    color: #a6afca;
}

.download-app-modal__close:hover {
    background: #e1e5f1;
    border-radius: 100%;
}

.download-app-modal__close:hover > svg {
    color: #000;
}

.download-app-modal__close > svg {
    width: 16px;
    margin: 0;
}

.download-app-modal__body {
    margin-top: 32px;
}

.download-app-modal__body--center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.download-app-modal__body--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
}

.download-app-modal__grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.download-app-card {
    border: 1px solid #e1e5f1;
    border-radius: 16px;
    padding: 48px;
    transition: box-shadow .15s ease-in-out;
    box-shadow: 0 2px 4px 0 rgba(0, 56, 76, 0.04);
}

.download-app-card:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 56, 76, 0.04), 0 30px 20px -10px rgba(0, 56, 76, 0.16);
    cursor: pointer;
}

.download-app-card__icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 112px;
    height: 112px;
    border-radius: 40px;
}

.download-app-card__icon-container > svg {
    width: 54px;
}

.download-app-card__icon-container--android {
    box-shadow: 0 16px 32px 0 rgba(164, 198, 57, 0.56);
    background-color: #a4c639;
}

.download-app-card__icon-container--ios {
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.4), 0 2px 0 0 #000000;
    background-color: #000000;
}

.download-app-card__icon-container--ios > svg {
    margin-bottom: 8px;
}

.download-app-card__label {
    margin-top: 56px;
    font-size: 20px;
    font-weight: 500;
}

.download-app-qrcode {
    width: 250px;
    height: 250px;
    border: 1px solid #e1e5f1;
    box-shadow: 0 2px 4px 0 rgba(0, 56, 76, 0.04);
}

.download-app-qrcode__image {
    width: 248px;
    height: 248px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-app-link {
    margin-top: 40px;
}

.download-app-link:hover {
    text-decoration: underline;
}

.download-app-ios-iframe {
    height: 400px;
    border: 0;
    width: 100%;
    border-radius: 8px;
}
