/**
 * GoonVidz Duo
 */

.gvd-search-box {
    background: #1d1d1d;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 35px;
}



.gvd-duo-form{

display:flex;

justify-content:center;

align-items:center;

width:100%;

margin-top:35px;

}

.gvd-field {
    flex: 1;
    min-width: 260px;
}

.gvd-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.gvd-field select {
    width: 100%;
}

.gvd-duo-form .button{

display:block;

min-width:260px;

padding:14px 50px;

font-size:18px;

margin:0 auto;

}

.gvd-popular-duos,
.gvd-latest-duos,
.gvd-stats {
    margin-top: 40px;
}

.gvd-popular-duos h2,
.gvd-latest-duos h2,
.gvd-stats h2 {
    margin-bottom: 18px;
}

.gvd-stats ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gvd-stats li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.gvd-stats strong {
    float: right;
}

.gvd-duo-hero {
    margin-bottom: 35px;
}

.gvd-duo-hero h1 {
    margin-bottom: 12px;
}

.gvd-duo-hero p {
    font-size: 16px;
    line-height: 1.7;
}

.gvd-empty-state {
    background: #1d1d1d;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 35px;
    text-align: center;
}

.gvd-empty-state h2 {
    margin-bottom: 15px;
}

.gvd-empty-state p {
    margin-bottom: 12px;
}

.gvd-empty-state .button {
    margin: 15px 8px;
}

.gvd-links {
    margin-top: 20px;
}

.gvd-links a {
    margin: 0 8px;
}

.gvd-popular-grid,
.gvd-latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 15px;
}

.gvd-duo-card {
    background: #1f1f1f;
    border-radius: 8px;
    padding: 18px;
    transition: .2s;
}

.gvd-duo-card:hover {
    transform: translateY(-2px);
}

.gvd-duo-card a {
    text-decoration: none;
}

.gvd-duo-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.gvd-duo-card small {
    opacity: .75;
}

@media (max-width:768px){

    .gvd-duo-form{
        display:block;
    }

    .gvd-field{
        margin-bottom:18px;
    }

    .gvd-duo-form button{
        width:100%;
    }

}


.gvd-performer-selector{

display:flex;
justify-content:center;
align-items:flex-start;
gap:50px;
margin-bottom:40px;
flex-wrap:wrap;
}

.gvd-performer-box{

width:360px;
display:flex;
flex-direction:column;
align-items:center;

}

.gvd-preview{

position:relative;

width:100%;

aspect-ratio:16/9;

background:#1d1d1d;

border-radius:12px;

overflow:hidden;

}

.gvd-preview-image{

display:none;

width:100%;

height:100%;

object-fit:cover;

}



.gvd-placeholder-image{

display:block;

width:100%;

height:100%;

object-fit:cover;

}



.gvd-duo-plus{

font-size:46px;

font-weight:bold;

margin-top:95px;

opacity:.35;

}

.gvd-performer-box .ts-wrapper{

width:100%;

}

.gvd-duo-form{

display:flex;

justify-content:center;

margin-top:35px;

margin-bottom:20px;

}

.gvd-duo-form .button{

padding:14px 55px;

font-size:18px;

}

@media (max-width: 768px) {

    .gvd-performer-selector {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
    }

    .gvd-performer-box {
        display: contents;
    }

    .gvd-performer-box:first-child .gvd-preview {
        order: 1;
    }

    .gvd-performer-box:first-child .gvd-search {
        order: 2;
    }

    .gvd-duo-plus {
        display: block;
        order: 3;
        margin: 0;
        font-size: 40px;
        line-height: 1;
        opacity: .4;
    }

    .gvd-performer-box:last-child .gvd-search {
        order: 4;
    }

    .gvd-performer-box:last-child .gvd-preview {
        order: 5;
    }

    .gvd-preview,
    .gvd-search {
        width: 100%;
        max-width: 420px;
    }

    .gvd-duo-form {
        width: 100%;
        margin-top: 30px;
    }

    .gvd-duo-form .button {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }
}
.gvd-duo-thumb{

display:block;

width:100%;

aspect-ratio:16/9;

object-fit:cover;

border-radius:8px;

margin-bottom:12px;

transition:.2s;

}

.gvd-duo-card:hover .gvd-duo-thumb{

transform:scale(1.03);

}

.gvd-search{

width:100%;

margin-top:12px;

}

.gvd-search .ts-wrapper{

width:100%;

}

.gvd-search .ts-control{

min-height:48px;

border-radius:8px;

transition:.2s;

}

.gvd-search .ts-wrapper.focus .ts-control{

border-color:#e74d72;

box-shadow:0 0 0 3px rgba(231,77,114,.18);

}

.gvd-search input{

color:#111 !important;

caret-color:#111 !important;

opacity:1 !important;

}

.gvd-search .ts-control input{

color:#111 !important;

caret-color:#111 !important;

opacity:1 !important;

background:transparent !important;

}

.gvd-search .ts-control{

cursor:text;

}

.gvd-search .ts-wrapper.focus .ts-control{

border-color:#ff4f7b;

box-shadow:0 0 0 4px rgba(255,79,123,.25);

}

.gvd-search .ts-control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 10px 16px 10px 46px;
    border: 2px solid transparent;
    border-radius: 9px;
    background: #ffffff;
    cursor: text;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.gvd-search .ts-control::before {
    content: "\f002";
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-family: FontAwesome;
    font-size: 16px;
    color: #777;
    pointer-events: none;
}

.gvd-search .ts-wrapper.focus .ts-control {
    border-color: #e7476c;
    box-shadow: 0 0 0 4px rgba(231, 71, 108, .2);
    transform: translateY(-1px);
}

.gvd-search .ts-control input{

color:#111 !important;

caret-color:#e7476c !important;

background:transparent !important;

opacity:1 !important;

min-width:4px !important;

width:auto !important;

flex:1;

}

.gvd-search .ts-control input::placeholder {
    color: #777;
    opacity: 1;
}

.gvd-search .ts-dropdown {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.gvd-search .ts-dropdown .option {
    padding: 11px 14px;
}

.gvd-search .ts-dropdown .active {
    background: #e7476c;
    color: #fff;
}