/* 
 * combine with odin.tmpl.css
 */

header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: stretch;
}

header h1 { 
    margin: 20px 0;
}

header .tyr__subnav { 
    padding-top: 15px;
}

header .tyr__subnav a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
    margin-right: 10px;
    transition: all 300ms ease-out;
}

header .tyr__subnav a:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

header .social-links__parent {
    text-align: right;
}

header .social-links {
    display: inline-block;
    float: none;
    margin: 20px 0;
    text-align: right;
}

header .social-links.tyr__social__first {
    margin-right: 40px;
}


section.latest .cover {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    right: inherit;
    top: inherit;
}

section.latest .cover img {
    box-shadow: inherit;
}

.tyr__grid {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}

.tyr__grid__col-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
}

.tyr__grid__col-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
}

.tyr__grid__col-6 {
    width: 50%;
}

.tyr__concerts .shows {
    max-height: 490px;
    overflow: hidden;
}

.tyr__concerts .shows:hover {
    overflow: auto;
}

.tyr__concerts .show {
    color: var(--color-primary);
    position: relative;
    background-color: rgba(0,0,0,0.05);
    padding: 15px 25px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.tyr__concerts .show .show__date {
    color: var(--color-inverse,'white');
    font-size: 70%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tyr__concerts .show h4 { 
    color: var(--color-secondary);
    margin: 7px 0; 
    font-size: 14px;
    letter-spacing: 0px;
}


.tyr__concerts .show .show__place { 
    color: var(--color-primary);
    font-size: 80%;
    letter-spacing: 0.5px;
}


.tyr__concerts .show a.more_info {
    float: right;
    color: var(--color-primary);
    font-size: 60%;
}

.tyr__concerts .show a:hover {
    text-decoration: none;
}

.tyr__concerts .show .btn {
    color: var(--color-secondary);
    background-color: rgba(0,0,0,0.05 );
    text-decoration: none;
    font-size: 14px;
}

.tyr__concerts .show a.btn:hover {
    opacity: 0.8;
}

.tyr__concerts .show .btn.btn-call {
    display: block;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 4px;
    /* font-weight: bold; */
}

.tyr__youtube h3 {
    margin-bottom: 20px;
}

section.latest {
    padding-bottom: 80px;
}

section.latest .videoclip {
    padding: 0; 
    margin-bottom: 15px;
}

section.bio .videoclip {
    padding: 0; 
    margin-bottom: 15px;
}

.tyr__youtube .bio {
    padding-top: 25px;
}

.tyr__bio a {
    color: var(--color-secondary);
    background-color: rgba(0,0,0,0.05 );
    text-decoration: underline;
}

.tyr__bio a:hover {
    text-decoration: none !important;
}

.bio__content {
    line-height: 23px;
    font-weight: 400;
    max-width: 550px;
}

.show__past {
    text-decoration: line-through;
    text-decoration-color: #c0c0c0;
}

.btn.btn-presave {
    display: flex;
    padding: 10px 15px;
    justify-content: space-between;
    border-radius: 15px;
    text-decoration: none;
    align-items: cen;
}

.btn.btn-presave span {
    text-decoration: underline;
}
.btn.btn-presave i {
    text-decoration: none;
    font-style: normal;
    font-size: 180%;
}

.latest-links {
     
}

.latest-links .links-products a {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    /* pastilla */
    background-color: transparent;
    color: black;
    padding: 10px 15px;
    border-radius: 15px; 
    font-weight: bold;
    border: 1px solid black;
    text-decoration: none;
    align-items: center;
}

.tyr__latest_column .cover__links {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 15px;
}



@media only screen and (max-width: 800px) {
    
    header {
        flex-direction: column;
    }

    header .tyr__subnav {
        width: 100%;
        text-align: center;
    }


    .social-links.tyr__social__second  {
        display: none;
    }

    .tyr__grid {
        flex-direction: column-reverse;
    }
    .tyr__grid__col-40,
    .tyr__grid__col-60 {
        width: 100%;
    }

    header .social-links.tyr__social__first {
        margin-bottom: 0;
        text-align: center;
    }
    
    .tyr__youtube h3 {
        text-align: center;
    }


    .tyr__latest_column .cover__links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    section.latest .latest-links {
        padding-bottom: 10px;
    }


}