@import './consts.scss';

.dialog {
    position: absolute;

    @media #{$mobile-devices} {
        height: calc(100% - 55px);
        top: 55px;
        width: 100vw;
    }

    @media #{$desktop-devices} {
        height: 600px;
        left: 50%;
        max-height: 90vh;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 768px;
    }
}

.content {
    line-height: 1;
    padding: 10px;
    overflow-y: auto;
}

.heading {
    color: #002a32;
    font-size: 16px;
    font-weight: 500;
}

.preferencesHeading {
    font-size: 14px;
    margin: 20px auto;
    text-align: center;

    @media #{$desktop-devices} {
        font-size: 16px;
    }
}

.preferencesDescription {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;

    p {
        margin: 1em 0;
    }
}

.preferencesSubheading {
    margin: 15px 0 10px 0;
}
