﻿@charset "utf-8";
/* CSS Document */
/*editclassinfo*/
.hidden {
    display: none !important;
}

#inAppBrowserWarningModal.modal-container {
    z-index: 10000;
    justify-content: center;
    align-items: center;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    position: fixed;
    inset: 0;
}

.modal-backscreen {
    cursor: pointer;
    background-color: #000000d9;
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    inset: 0;
}

.modal-content {
    position: relative;
}

.modal-close {
    width: 32px;
    height: 32px;
    z-index: 10;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
}

.modal-body {
    max-width: 480px;
    padding: 18px;
    background-color: white;
}

.modal-header {
    font-weight: bold;
    font-size: 18px;
    color: #f067a6;
    text-align: center;
    margin-bottom: 12px;
}

.info_p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.btn_area {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

#btnOpenExternal {
    font-weight: bold;
    font-size: 16px;
    height: 48px;
    color: white;
    background-color: #f067a6;
    border-radius: 9999px;
    border-style: none;
    cursor: pointer;
}

.btn_area .info_p {
    font-size: 12px;
    margin-top: 15px;
}

#btnCopyUrl {
    font-weight: bold;
    font-size: 16px;
    height: 48px;
    color: #0f1b50;
    background-color: white;
    border-color: #0f1b50;
    border-style: solid;
    border-width: 1px;
    border-radius: 9999px;
    cursor: pointer;
}

#btnCancel{
    font-size: 14px;
    height: 40px;
    color: #666;
    cursor: pointer;
    border-style: none;
    background-color: #0000;
}

#btnCancel:focus {
    outline: none;
}
#copySuccessMsg {
    font-size:13px;
    margin-top: 12px;
    border-radius: 2.5px;
    background-color: #e5f2d4;
    padding: 9px;
    text-align: justify;
    line-height: 1.5;
    color: #007f58;
}

#copyFailureMsg {
    font-size:13px;
    margin-top: 12px;
    border-radius: 2.5px;
    background-color: #fde8e8;
    padding: 9px;
    text-align: justify;
    line-height: 1.5;
    color: #a00;
}

@media only screen and (max-width: 767px) {
    .modal-body {
        width: 90dvw;
    }

    .modal-header {
        font-size: 15px;
    }

    .info_p {
        font-size: 12px;
    }

    #btnOpenExternal {
        font-size: 13.5px;
        height: 42px;
    }

    .btn_area.info_p {
        font-size: 10.5px;
    }

    #btnCopyUrl {
        font-size: 13.5px;
        height: 42px;
    }

    #btnCancel {
        font-size: 12px;
        height: 36px;
    }

    #copySuccessMsg {
        font-size: 10.5px;
    }

    #copyFailureMsg {
        font-size: 10.5px;
    }
}


