a {
    text-decoration: none;
}

.colpay-smart-alert {
    --colpay-alert-accent: #ef233c;
    --colpay-alert-duration: 8500ms;
    position: relative;
    display: flex;
    align-items: center;
    gap: .65rem;
    width: min(100%, 360px);
    min-height: 58px;
    margin: .65rem 0;
    padding: .72rem 2.55rem .82rem .78rem;
    overflow: hidden;
    color: #2d3036;
    background: #fff;
    border: 1px solid #b9bdc4;
    border-radius: .65rem;
    box-shadow: 0 .45rem 1.15rem rgba(22, 28, 45, .12);
    animation: colpaySmartAlertIn .22s ease-out;
}

.colpay-smart-alert.alert-success {
    --colpay-alert-accent: #21d45b;
}

.colpay-smart-alert.alert-danger {
    --colpay-alert-accent: #ef233c;
}

.colpay-smart-alert__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    color: #fff;
    background: var(--colpay-alert-accent);
    font-size: 1.05rem;
    line-height: 1;
}

.colpay-smart-alert__message {
    min-width: 0;
    flex: 1 1 auto;
    font-size: .92rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.colpay-smart-alert__close {
    position: absolute;
    top: .55rem;
    right: .62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    padding: 0;
    color: #7b8088;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.colpay-smart-alert__close:hover,
.colpay-smart-alert__close:focus {
    color: #454950;
    background: #f1f3f5;
    outline: none;
}

.colpay-smart-alert__progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--colpay-alert-accent);
    transform-origin: left center;
    animation: colpaySmartAlertProgress var(--colpay-alert-duration) linear forwards;
}

.colpay-smart-alert-persistent .colpay-smart-alert__progress {
    display: none;
}

.colpay-smart-alert.is-hiding {
    animation: colpaySmartAlertOut .18s ease-in forwards;
}

.colpay-smart-alert-floating-stack {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 11050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .6rem;
    width: min(360px, calc(100vw - 2rem));
    pointer-events: none;
}

.colpay-smart-alert-floating-stack .colpay-smart-alert {
    width: 100%;
    margin: 0;
    pointer-events: auto;
}

.colpay-action-alert-anchor,
.colpay-form-submit-anchor,
.settings-form-submit-anchor {
    position: relative;
    display: inline-flex;
}

.colpay-action-alert-anchor .colpay-action-alert-end,
.colpay-form-submit-anchor .colpay-form-alert-end,
.settings-form-submit-anchor .settings-form-alert-end {
    position: absolute;
    left: 0;
    bottom: calc(100% + .55rem);
    z-index: 1060;
    width: max-content;
    max-width: min(360px, calc(100vw - 2rem));
    pointer-events: auto;
}

.colpay-action-alert-anchor .colpay-action-alert-end .colpay-smart-alert,
.colpay-form-submit-anchor .colpay-form-alert-end .colpay-smart-alert,
.settings-form-submit-anchor .settings-form-alert-end .colpay-smart-alert {
    width: min(360px, calc(100vw - 2rem));
    min-width: min(280px, calc(100vw - 2rem));
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: auto;
}

.colpay-action-alert-anchor .colpay-smart-alert__close,
.colpay-form-submit-anchor .colpay-smart-alert__close,
.settings-form-submit-anchor .colpay-smart-alert__close {
    z-index: 2;
    pointer-events: auto;
}

@media (max-width: 767.98px) {
    .colpay-smart-alert-floating-stack {
        top: auto;
        right: 1rem;
        bottom: calc(1rem + env(safe-area-inset-bottom));
        left: 1rem;
        width: auto;
        align-items: stretch;
    }

    .colpay-action-alert-anchor .colpay-action-alert-end,
    .colpay-form-submit-anchor .colpay-form-alert-end,
    .settings-form-submit-anchor .settings-form-alert-end {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: calc(.85rem + env(safe-area-inset-bottom));
        z-index: 1080;
        width: auto;
        max-width: none;
    }

    .colpay-action-alert-anchor .colpay-action-alert-end .colpay-smart-alert,
    .colpay-form-submit-anchor .colpay-form-alert-end .colpay-smart-alert,
    .settings-form-submit-anchor .settings-form-alert-end .colpay-smart-alert {
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 0;
    }
}

@keyframes colpaySmartAlertIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes colpaySmartAlertOut {
    to {
        opacity: 0;
        transform: translateY(-6px) scale(.98);
    }
}

@keyframes colpaySmartAlertProgress {
    to {
        transform: scaleX(0);
    }
}

.navbar-default {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(3, 0, 71, .09)
}


/* Prevent horizontal overflow on builder screens */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.clear {
    clear: both;
}


/* Content */

#content {
    padding: 10px 0px;
    /*
padding:0px 30px;
*/
}

.site_title {
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
    font-size: 22px;
    padding: 30px 50px;
    margin-bottom: 20px;
}

.site_content {
    padding: 10px 50px;
}

.featured-ads {
    margin: 0px;
    list-style: none;
    padding: 5px;
}

.featured-ads li {
    color: #303030;
    margin-bottom: 5px;
}

.featured-ads li a {
    color: #3978e1;
    text-decoration: underline;
}

.featured-ads li span {
    color: #009900;
    text-decoration: none;
    font-size: 10px;
}

#specialdescription {
    padding: 10px;
    border: 1px solid #dbdcdc;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: #f6f6f6;
}


/* Login/Logout process */

.progressbar {
    border: 1px solid #6898e8;
    width: 300px;
    height: 20px;
}

.progressbar div {
    height: 20px;
    background: #6898e8;
    width: 3px;
}

.disabledclass {
    filter: alpha(opacity=35);
    opacity: .35;
}


/* PTSU */

.ptsu_content {
    cursor: pointer;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-bottom: 5px;
    border: 1px solid #e1e8ff;
    padding: 5px;
    background: #ffffff;
    line-height: 20px;
}

.ptsu_title {
    color: #0000ff;
    font-weight: bold;
    text-decoration: underline;
}

.ptsu_descr {
    color: #303030;
}

.ptsu_url {
    color: #009900;
    font-size: 10px;
}

.ptsu_reward {
    color: #d9006c;
    font-size: 20px;
}

input[type="button"],
input[type="submit"] {
    padding: 7px 12px;
    color: #ffffff;
    border: 0px;
    background: #37b6bd;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    transition-property: background;
    transition-duration: 0.2s;
    transition-timing-function: linear;
}

input[type="button"]:hover,
input[type="submit"]:hover {
    background: #aaaaaa;
}

input[type="button"].btn-disabled,
input[type="button"].btn-disabled:hover,
input[type="submit"].btn-disabled,
input[type="submit"].btn-disabled:hover {
    padding: 7px 12px;
    color: #e0e0e0;
    border: solid 1px #e0e0e0;
    background: #f7f7f7;
    cursor: default;
    font-size: 12px;
}

input[type="button"].forumbtn,
input[type="submit"].forumbtn {
    padding: 7px 12px;
    color: #ffffff;
    border: 0px;
    background: #4c4c4c;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    transition-property: background;
    transition-duration: 0.2s;
    transition-timing-function: linear;
}

input[type="button"].forumbtn:hover,
input[type="submit"].forumbtn:hover {
    background: #37b6bd;
}

input[type="submit"].frm_search_btn {
    padding: 5px 12px;
    color: #ffffff;
    border: 0px;
    background: #4c4c4c;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    transition-property: background;
    transition-duration: 0.2s;
    transition-timing-function: linear;
}

input[type="submit"].frm_search_btn:hover {
    background: #37b6bd;
}


/* Boxes */

.error_box {
    background: #fde2db url(images/erroricon.png) no-repeat scroll 10px 5px;
    padding: 8px;
    padding-left: 50px;
    border: 1px solid #fbc2b5;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #ce3a40;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.success_box {
    background: #effae7 url(images/successicon.png) no-repeat scroll 10px 5px;
    padding: 8px;
    padding-left: 50px;
    border: 1px solid #c5eda7;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #41701b;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.info_box {
    background: #e1f7fd url(images/infoicon.png) no-repeat scroll 10px 5px;
    padding: 8px;
    padding-left: 50px;
    border: 1px solid #a2e6f9;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #0d97bf;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}


/* Misc */

.pointer {
    cursor: pointer;
}

.padding5 {
    padding: 5px;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

#preloader {
    background: url(images/loader.gif) no-repeat -9999px -9999px;
}

.loader {
    background: url(images/loader.gif) no-repeat scroll 50% 50%;
}

.corner-all {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.corner-bottom-left {
    border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.corner-bottom {
    border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
}

.corner-top {
    border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
}


/*======================== REFERRAL LIST ===========================*/

.widget-ref-option {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-bottom: 5px;
    border: 1px solid #dd3c10;
    background: #fff4ea;
    padding: 5px;
    margin-top: 5px;
    text-align: center;
}


/*================ ERROR =================*/

.disabled {
    opacity: .55;
    filter: Alpha(Opacity=55);
    background-image: none;
}


/* Pagination */

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #4c4c4c;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    margin-left: -1px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #dddddd;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 3;
    color: #ffffff;
    background-color: #4c4c4c;
    border-color: #4c4c4c;
    cursor: default;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777777;
    background-color: #ffffff;
    border-color: #dddddd;
    cursor: not-allowed;
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}


/* Raffles publicity images */

.raffle-publicity-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
}
