﻿
.lp-header-studio-bg {
    margin-top: -172px;
    padding-top: 275px !important;
    background: rgb(73,60,189);
    background: url("/assets/images/studio-landing-bg.png") center center, linear-gradient(124deg, rgba(73,60,189,1) 0%, rgb(149 78 186) 35%, rgba(52,18,97,1) 100%);
    /*rgba(78,186,160,1)*/
}

.studio-search-input {
    width: 100%;
    height: 100%;
    display: flex;
    display: flex;
    justify-content: center;
}

    .studio-search-input > input {
        width: 75% !important;
        background-color: #ffffff !important;
        opacity: .9 !important;
        box-shadow: 0px 3px 14px 0px #7f7f7f;
        padding-left: 24px !important;
        font-size: 1.1rem;
    }

.brand-kit-card {
    background-color: white;
    box-shadow: 0px 0px 20px 0px #eaeaea;
    border-radius: 8px;
    padding: 16px 16px;
    height: 248px;
}

.studio-hero-search-area {
    position: relative;
}

.studio-search-input .mq-i-search {
    position: absolute;
    z-index: 99;
    top: 14px;
    opacity: .35;
    right: 14%;
}

.studio-hero-title {
    text-shadow: -1px 0px 0px black !important;
}

.brand-color {
    width: 100%;
    transition: all .5s;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

    .brand-color span {
        display: flex;
        justify-content: center;
        align-content: center;
        font-weight: bold;
        letter-spacing: 1px;
        mix-blend-mode: soft-light;
    }

    .brand-color.primary {
        height: 100%;
        background-color: rgb(88, 78, 176);
    }

    .brand-color.secondary {
        height: 100px;
        margin-bottom: 16px;
        background-color: rgba(78,186,160,1)
    }


    .brand-color.tertiary {
        height: 100px;
        background-color: rgba(238,130,58,1)
    }

.make-me-flash {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.change-text {
    font-size: 35pt;
    color: black;
    animation-name: fontChange;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}


#crawl-logo {
    transition: all .5s;
}


.template-list-area {
    padding: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.template-list-item {
    /*width: 500px;*/
    /*height: 650px;*/
    /*   margin-left: 16px;
    margin-top: 16px;*/

    display: flex;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    /*box-shadow: 0px 0px 9px 3px #f3f3f3;*/
    border: 1px solid #ebebeb;
    background-color: white;
    border-radius: 8px;
    position: relative;
}

.template-list-item-cover {
    width: 100%;
    border-radius: 8px;
    height: 330px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.bottom-placements {
    width: 100%;
    height: 130px;
    margin-top:16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /*background-color: rgba(255,255,255,.35);*/
}

.more-templates {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: #E3E3E3;
    border-radius: 8px;
    border: 3px solid white;
    user-select:none;
    cursor:pointer;

}

.more-templates .count{
    font-size:1.5rem;
    margin-bottom:8px;
}
.more-templates .more{

}

.placement-thumb{
    border-radius:8px;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:top left;
    transition:opacity .3s;
    border:2px solid white;
}

    .placement-thumb:hover{
        cursor:pointer;
        opacity:.75;
    }


    .placement-portrait {
        width: 68px;
        height: 118px;
        /*background-color: green;*/
    }

.placement-square {
    width: 100px;
    height: 100px;
    /*background-color: yellow;*/
}

.placement-landscape {
    width: 130px;
    height: 45px;
    /*background-color:purple;*/
}

.template-list-item-cover:hover + .select-template-btn-area, .select-template-btn-area:hover{
    display: flex;
}

.select-template-btn-area {
    width: 100%;
    height: 360px;
    align-content: center;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.7);
    position: absolute;
    top: 10px;
    display: none;
    z-index:99;
    cursor:pointer;
    transition:all .3s;
}

.btn-select-template-set{

}


@keyframes fontChange {
    0% {
        font-family: 'Major Mono Display', monospace;
    }

    20% {
        font-family: 'Kaushan Script', cursive;
    }

    40% {
        font-family: 'Lobster', cursive;
    }

    60% {
        font-family: 'Ranchers', cursive;
    }

    80% {
        font-family: 'Bitter', serif;
    }

    100% {
        font-family: 'Major Mono Display', monospace;
    }
}

.template-list-item-cover, .placement-thumb {
    background-color: #E3E3E3;
    transition: background-color ease .3s;
}
@keyframes img-loading-animation {
    0% {
        background-color: #E3E3E3;
    }

    50% {
        background-color: #fafafa;
    }

    100% {
        background-color: #E3E3E3;
    }
}


@media screen and (max-width: 768px) {
    .bottom-placements {
        display: none;
    }

    .template-list-item-cover {
        height: 130px;
    }

    .select-template-btn-area{
        height:140px;
    }

    .lp-header-studio-bg {
        margin-top: -250px;
    }

    .btn-select-template-set {
        zoom: .7;
    }
}