.tab-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px 0px;
    margin: 0 auto;
    width: 100%;
}

.tab-info.roaming {
    height: 76px;
}

.tab-info.idd {
    height: 56px;
}

.info {
    flex: 1 1 0;
    text-align: center;
    min-width: 100px;
    position: relative;
}

.info:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #1f1f1f;
}

.info-label {
    font-size: 14px;
    color: #1f1f1f;
}

.info-value {
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    font-size: 18px;
    margin-top: 5px;
    color: #1f1f1f;
}

.roaming-container .tab-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tab-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    background-color: #fff;
    padding: 24px 53px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.divider-roaming {
    bottom: -17px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* .countries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    justify-content: left;
} */

.countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 20px;
    gap: 10px;
}

.country {
    display: flex;
    align-items: flex-start;
    width: 183px;
    font-size: 14px;
    gap: 8px;
}

.country-wrapper {
    height: auto;
}

.roaming-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.roaming-link-container {
    line-height: 16px;
    font-size: 14px;
    margin-top: 45px;
}

.roaming-overlay-link {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
}

.roaming-link-container > span, .roaming-overlay-link a {
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

section.contents {
    margin: 0 auto;
    margin-bottom: 56px;
    position: relative;
    z-index: 100;
}

.content-header {
    margin-bottom: 40px;
}

.content-header h2 {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    color: #1f1f1f;
}

.idd-tab-content {
    flex-direction: column;
    gap: 32px;
}

.talktime-title {
    font-size:18px;
}

.talktime-header {
    margin-bottom: 8px;
}

.footnote-section {
    margin-top: 8px;
}

.footnote-section p {
    font-size: 12px;
    line-height: 16px;
    color: #1f1f1f;
}

@media (max-width: 768px) {
    section.contents {
        padding: 0 24px;
        margin-bottom: 56px;
    }

    #esim-hero section.contents {
        margin-top: 0px !important;
    }

    .roaming-container .tab-content-container {
        margin-bottom: 0px;
    }

    .tab-content-container > section.contents {
        margin-bottom: 0px;
    }

    .tab-content {
        padding: 24px;
    }

    .info.covers {
        flex: 3 1 0;
    }

    .info.data {
        flex: 1 1 0;
    }

    .info.validity {
        flex: 2 1 0;
    }

    .countries {
        grid-auto-rows: 13px;
        grid-template-columns: repeat(2, 1fr);
    }

    .country {
        width: 125px;
    }
    
    .content-header h4 {
        font-size: 21px;
        line-height: 24px;
        text-align: center;
        font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    }

    .roaming-link-container {
        margin-top: 32px;
    }

}