/*
 * Theme Name:          Multicanais
 * Description:         Tema Multicanais - TV Online
 * Version:             2.0
 * Tested up to:        6.7
 * Requires at least:   6.7
 * Requires PHP:        8.0
 * Text Domain:         multicanais
*/

/* Frames */
@-webkit-keyframes Alert {
    from {
        opacity: .5;
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes Alert {
    from {
        opacity: .5;
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes AlertClose {
    to {
        opacity: 0;
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }
}
@keyframes AlertClose {
    to {
        opacity: 0;
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }
}

/* Reset */
* {
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: baseline;
}
a {
    text-decoration: none;
}
button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
}
button, select {
    cursor: pointer;
}
textarea {
    resize: none;
}
h1 {
    font-size: 130%;
}
h2 {
    font-size: 120%;
}
h3 {
    font-size: 110%;
}
h4, h5, h6 {
    font-size: 100%;
}
b, h1, h2, h3, h4, h5, h6, strong {
    font-weight: 600;
}
ul, ol {
    list-style: none;
}
svg {
    width: 24px;
    fill: currentColor;
}
svg, img {
    display: block;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img {
    height: auto;
}
body {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    overflow-x: hidden;
    background-color: #000;
    font-family: 'Montserrat', sans-serif;
}

.visually-hidden {
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* General */
.wrap {
    margin: auto;
    padding: 0 15px;
    max-width: 1140px;
    position: relative;
}

/* Header */
#header {
    background-color: #fff;
    border-top: 40px solid #8224e3;
}
#header .logo {
    display: block;
}
#header .logo img {
    width: auto;
    height: 70px;
    margin: auto;
    padding: 15px 0;
}
#header .menu {
    background-color: #f6f6f6;
}
#header .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#header .menu ul li a {
    color: #111;
    font-size: 85%;
    font-weight: 600;
    line-height: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-transform: uppercase;
    -webkit-transition: color 200ms;
    -o-transition: color 200ms;
    transition: color 200ms;
}
#header .menu ul li a:hover, #header .menu ul li .active {
    color: #733B87;
}
#header .menu ul li.search {
    margin-left: auto;
}

/* Search */
form {
    height: 40px;
    min-width: 210px;
    margin: 10px auto;
}
form input {
    width: 100%;
    height: 100%;
    color: #000;
    display: block;
    font-size: 90%;
    padding: 0 15px;
    border-radius: 50px;
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow 200ms;
    transition: -webkit-box-shadow 200ms;
    -o-transition: box-shadow 200ms;
    transition: box-shadow 200ms;
    transition: box-shadow 200ms, -webkit-box-shadow 200ms;
}
form input:focus {
    -webkit-box-shadow: 0 0 0 1px #000;
    box-shadow: 0 0 0 1px #000;
}
form input::-webkit-input-placeholder {
    color: #000;
}
form input::-moz-placeholder {
    color: #000;
}
form input:-ms-input-placeholder {
    color: #000;
}
form input::-ms-input-placeholder {
    color: #000;
}
form input::placeholder {
    color: #000;
}
#open_search {
    height: 50px;
    display: none;
    padding-left: 20px;
    position: relative;
}
#open_search svg {
    color: #000;
    position: relative;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
#open_search .box {
    top: 100%;
    opacity: 0;
    right: -15px;
    width: 100vw;
    padding: 10px;
    visibility: hidden;
    position: absolute;
    background-color: #f6f6f6;
    -webkit-transition: opacity 200ms, visibility 200ms;
    -o-transition: opacity 200ms, visibility 200ms;
    transition: opacity 200ms, visibility 200ms;
}
#open_search.active .box {
    opacity: 1;
    visibility: visible;
}
#open_search .box form {
    margin: auto;
}

/* Sections */
section {
    margin: 40px auto;
}
.sec_title {
    line-height: 1;
    font-size: 110%;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.sec_title.large {
    font-size: 140%;
}
.sec_desc {
    font-size: 90%;
    margin-top: -20px;
    margin-bottom: 30px;
}

/* Cards */
.cards ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -15px;
    margin-top: -10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cards ul li {
    width: 25%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 15px;
    padding-top: 10px;
}
.cards ul li a {
    display: block;
    position: relative;
    -webkit-transition: opacity 200ms;
    -o-transition: opacity 200ms;
    transition: opacity 200ms;
}
.cards ul li > a:hover {
    opacity: .8;
}
.cards ul li a img {
    width: 100%;
}
.cards .match li a img {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}
.cards .channel li > a {
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .1);
}
.cards .channel li a img {
    width: 50%;
    margin: auto;
}
.cards ul li a svg {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 35%;
    margin: auto;
    position: absolute;
}
.cards ul li h3 {
    font-size: 100%;
    margin-top: 10px;
    line-height: 25px;
}
.cards ul li h3 a {
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: color 200ms;
    -o-transition: color 200ms;
    transition: color 200ms;
}
.cards ul li h3 a:hover {
    color: #c85aed;
}
.cards ul li h2 {
    font-size: 100%;
    margin-top: 10px;
}
.cards ul li h2 a {
    -webkit-transition: color 200ms;
    -o-transition: color 200ms;
    transition: color 200ms;
}
.cards ul li h2 a:hover {
    color: #c85aed;
}

/* Footer */
#footer {
    margin-top: 30px;
    background-color: #273746;
}
#footer p {
    font-size: 70%;
    padding: 25px 0;
    text-transform: uppercase;
}
#footer p a {
    -webkit-transition: color 200ms;
    -o-transition: color 200ms;
    transition: color 200ms;
    color: rgba(255, 255, 255, .8);
}
#footer p a:hover {
    color: #fff;
}

/* Single */
#single .wrap {
    gap: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
#single .content {
    width: 70%;
}
#single .content h1 {
    font-size: 150%;
    margin-bottom: 10px;
}
#single .content h4 {
    font-size: 90%;
    color: #8224e3;
    margin-bottom: 40px;
}
#iframe {
    max-width: 640px;
    margin: 40px auto;
}
#player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .1);
}
#player iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
#player img {
    width: 100%;
}
#single #player h4 {
    top: 50%;
    width: 100%;
    margin: auto;
    font-size: 150%;
    font-weight: 300;
    padding: 0 20px;
    position: absolute;
    text-align: center;
    color: #ef009d;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#players {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#players a {
    cursor: pointer;
    padding: 10px 15px;
    white-space: nowrap;
    border-radius: 10px;
    background-color: #572e57;
    -webkit-transition: -webkit-transform 200ms;
    transition: -webkit-transform 200ms;
    -o-transition: transform 200ms;
    transition: transform 200ms;
    transition: transform 200ms, -webkit-transform 200ms;
}
#players a:hover {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
}
#single .desc {
    margin: 40px auto;
}
#single .desc blockquote {
    font-size: 120%;
    padding-left: 30px;
    margin-bottom: 20px;
    border-left: 2px solid #ef009d;
}
#single .desc p {
    display: block;
    margin: 10px auto;
}
#single .sidebar {
    width: 30%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
}
#single .sidebar h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
}
#single .sidebar p {
    display: block;
    margin: 10px auto;
}
#single .sidebar > a {
    color: #ef009d;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: color 200ms;
    -o-transition: color 200ms;
    transition: color 200ms;
}
#single .sidebar > a:hover {
    color: #fff;
}
#single .sidebar p a {
    color: #ef009d;
    -webkit-transition: color 200ms;
    -o-transition: color 200ms;
    transition: color 200ms;
}
#single .sidebar p a:hover {
    color: #fff;
}
#single .sidebar p:last-of-type {
    margin-bottom: auto;
}

/* Alert */
#alert {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 99999;
    position: fixed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: opacity 200ms 500ms, visibility 200ms 500ms;
    -o-transition: opacity 200ms 500ms, visibility 200ms 500ms;
    transition: opacity 200ms 500ms, visibility 200ms 500ms;
}
#alert.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#alert.close {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#alert .box {
    width: 95%;
    max-width: 500px;
    position: absolute;
    will-change: opacity, transform;
}
#alert.active .box {
    -webkit-animation: Alert 500ms;
    animation: Alert 500ms;
}
#alert.active.close .box {
    -webkit-animation: AlertClose 500ms forwards;
    animation: AlertClose 500ms forwards;
}
#alert .box a {
    display: block;
}
#alert .box a img {
    width: 100%;
}
#alert .box button {
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1000;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f64545;
}
#alert .box button svg {
    width: 30px;
}

/* Media */
@media only screen and (max-width:1024px) {

    /* Section */
    section {
        margin: 30px auto;
    }
    .sec_title {
        margin-bottom: 20px;
    }
    .sec_desc {
        margin-top: -10px;
    }

    /* Cards */
    .cards ul li {
        width: 50%;
    }
    .cards .links {
        overflow: auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .cards .links li {
        width: 240px;
    }
}
@media only screen and (max-width:680px) {

    /* Body */
    body {
        padding-top: 50px;
    }

    /* Header */
    #header {
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        position: fixed;
        border-top: none;
    }
    #header .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    #header .logo img {
        height: 50px;
        padding: 10px 0;
    }
    #header .menu {
        display: none;
    }

    /* Search */
    #open_search {
        display: block;
    }

    /* Single */
    #single .wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #single .content {
        width: 100%;
    }
    #single .sidebar {
        width: 100%;
    }
}
@media only screen and (max-width:500px) {

    /* Header */
    #header .logo img {
        height: 45px;
    }

    /* Cards */
    .cards ul li {
        width: 100%;
    }

    /* Single */
    #single .content h1 {
        font-size: 120%;
    }
}

/* DezPila Conversion Upgrade */
.iptv-hero-inner{
    background:linear-gradient(135deg,#080808 0%,#171717 45%,#2b0010 100%) !important;
    border:1px solid rgba(255,0,55,.35)!important;
    box-shadow:0 15px 50px rgba(255,0,55,.18)!important;
}
.iptv-hero-badge{
    background:#e50914!important;
    color:#fff!important;
    border-radius:30px;
    padding:8px 18px;
    display:inline-block;
    font-weight:800;
}
.iptv-hero-btn{
    background:linear-gradient(90deg,#e50914,#ff1744)!important;
    border-radius:12px!important;
    box-shadow:0 10px 25px rgba(229,9,20,.35);
    transform:translateY(0);
    transition:.3s;
}
.iptv-hero-btn:hover{
    transform:translateY(-3px);
    filter:brightness(1.15);
}
.iptv-footer-strip{
    background:linear-gradient(90deg,#111,#e50914)!important;
    border-radius:14px;
    margin:25px auto;
    box-shadow:0 10px 35px rgba(229,9,20,.25);
}
