#deck {
    width: 73%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
}
#deck .deck-tab {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
}
#deck .deck-tab a {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 1px solid #1964bc;
    font-size: 24px;
    box-sizing: border-box;
    transition: all .2s;
    margin: 10px; 
    color: #1964bc;
    border-radius: 40px;
    line-height: 67px;
    cursor: pointer;
}

#deck .deck-tab a.active {
    background: #1964bc;
    color: #FFF;
}
#deck .deck-inner{
    
}
#deck .deck-inner > li {
    display: none;
    padding: 20px;
    list-style: none;
    width: 100%;
}

.deck-inner{
    width: 60%;
    height: auto;
    margin: 0 auto;
}

.deck-info{
    display: inline-block;
    width: 60%;
}

.deck-title{
    max-width: 400px;
}

.deck-info .deck-list{
    margin-top: 70px;
    line-height: 50px;
}

.deck-info .deck-list span{
    font-size: 15px;
}

.deck-pic{
    display: inline-block;
    width: 28%;
    margin: 0 auto;
    float: right;
}

.deck-pic img{
    max-width: 220px;
}

#mobile-deck{
    display: none;
}

@media screen and (max-width: 1440px){
    .deck-inner{
        width: 70%;
    }
}

@media screen and (max-width: 1199px){
    .deck-inner{
        width: 80%;
    }

    #deck .deck-tab a {
        width: 60px;
        height: 60px;
        font-size: 20px;
        line-height: 60px;
    }
}

@media screen and (max-width: 992px){
    .deck-inner{
        width: 90%;
    }

    #deck .deck-tab a {
        width: 50px;
        height: 50px;
        font-size: 18px;
        line-height: 50px;
        margin: 8px; 
    }

    #deck .deck-tab{
        margin-bottom: 0;
    }

}

@media screen and (max-width: 768px){

    #deck{
        display: none;
    }

    #mobile-deck{
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    .mobile-select{
        position: relative;
        display: block;
        margin-bottom: 50px;
        box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    }

    .mobile-select select{
        width: 100%;
        border: 1px solid #1964bc;
        font-size: 18px;
        border-radius: 5px;
        padding: .6em 1.9em .5em .8em;
        color: #1964bc;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
    }

    .mobile-select::after{
        content: "";
        position: absolute;
        width: 20px;
        height: 8px;
        top: 50%;
        right: 1em;
        margin-top:-4px;
        pointer-events:none;
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpolygon fill='rgb(25,100,188)' points='8,12 0,0 16,0'/%3E%3C/svg%3E") 0 0 no-repeat;
        z-index: 2;  
    }

    .mobile-deck-info{
        display: none;
    }

    .deck-info, .deck-pic{
        display: block;
        width: 100%;
        text-align: center;
    }

    .deck-info .deck-list{
        margin-top: 50px;
    }

    .deck-list p{
        text-align: center !important;
    }

    .deck-pic{
        margin-top: 70px;
    }

   select::-ms-expand {
        display: none;
    }