.close-mobile {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
    height: 40px;
    margin: auto 0;
}

@media (min-width: 601px) {
    #subcribe {
        padding-right: 10rem !important;
        padding-left: 1.5rem !important;
    }
}

@media only screen and (max-width: 600px) {
    .mobile-container {
        padding: 0 20px;
    }

    .hidden.sm-block {
        display: block;
    }

    .tabs-sm {
        padding-left: 10%;
    }

    div #subcribe {
        padding-right: 0;
        padding-left: 1.5rem !important;
    }
}

#pr-topic {
  margin: 0;
}

.tooltip {
    position: relative;
}

.smcx-embed {
    width: 100%;
    max-width: 500px !important;
    max-height: 600px !important;
    height: 600px;
}

.tooltip .tooltip-text {
    visibility: hidden;
    white-space: normal;
    width: 220px;
    background-color: #fff;
    color: #222;
    text-align: center;
    padding: 6px;
    border-color: #ccc;
    border-width: 1px;
    border-radius: 6px;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.5s;
}

.tooltip .tooltip-text-visible
{
    visibility: visible;
    opacity: 1;
}

.tooltip .tooltip-text::after
{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

:root {
    --header-height: 100px;
}

/* Adjust anchor scroll position based on fixed header height */
:target::before {
    content: "";
    display: block;
    height: 100px;
    margin: calc(var(--header-height) * -1)px 0 0;
}