﻿.gap-root {
    width: 350px;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: white;
    border-radius: 0.25rem;
    box-sizing: border-box;
}

    .gap-root .gap-title {
        padding: 1rem;
        font-size: 1.5rem;
        font-weight: 500;
        text-align: center;
    }

    .gap-root .gap-description {
        padding: 0 1rem 2rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .gap-root .gap-phonenumber-container {
        padding: 0 1rem 1rem 1rem;
    }

    .gap-root .gap-errormessage-container {
        padding: 0 1rem;
    }

    .gap-root .gap-button-container {
        display: flex;
        flex-wrap: nowrap;
        padding: 1rem;
        box-sizing: border-box;
    }

    .gap-root .gap-button-cancel-container {
        flex-grow: 1;
        padding-right: 0.5rem;
        box-sizing: border-box;
    }

    .gap-root .gap-button-cancel {
        width: 100%;
    }

    .gap-root .gap-button-send-container {
        flex-grow: 2;
        padding-left: 0.5rem;
        box-sizing: border-box;
    }

    .gap-root .gap-button-send {
        width: 100%;
    }

    .gap-root .gap-smalltext {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.75rem;
        color: #737373;
    }

@media (max-width: 768px) {
    .gap-root {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
    }
}