
.borderWrap-md {
    border: 1px solid #000;
    position: relative;
    width: 100%;
    height: 287px;
    z-index: 1;
    margin: 0;
    top: 0;
    background-color: white;

}

.tabcontent-md .item-md {
    background-color: rgba(255,255,255,0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    -webkit-animation: fadeout 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeout 1s; /* Firefox < 16 */
     -ms-animation: fadeout 1s; /* Internet Explorer */
      -o-animation: fadeout 1s; /* Opera < 12.1 */
         animation: fadeout 1s;
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"


}
.tabcontent-md .sel-md {
    background-color: rgba(255,255,255,1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
     -ms-animation: fadein 1s; /* Internet Explorer */
      -o-animation: fadein 1s; /* Opera < 12.1 */
         animation: fadein 1s;
    opacity:1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"


}

@keyframes fadein {
    from { opacity: 0;
        background-color:rgba(255,255,255,0); }
    to   { opacity: 1;background-color:rgba(255,255,255,1); }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0;background-color:rgba(255,255,255,0); }
    to   { opacity: 1; background-color:rgba(255,255,255,1);}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; background-color:rgba(255,255,255,0);}
    to   { opacity: 1;background-color:rgba(255,255,255,1); }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0;background-color:rgba(255,255,255,0); }
    to   { opacity: 1;background-color:rgba(255,255,255,1); }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0;background-color:rgba(255,255,255,0); }
    to   { opacity: 1; background-color:rgba(255,255,255,1);}
}
.tab-md {
    width: 100%;
    height: 44px;
    position: relative;
    z-index: 3;
    margin: 0;
    display: flex;
}

.tab-md a {
    border: none;
    text-decoration: none;
    background-color: #f7f7f7;
    color: #999;
}

.tab-md .button-css-md {
    margin: 0px;
    margin-right: 2px;
    width: 146px;
    height: 45px;
    background-color: #f7f7f7;
    display: block;
    border: 1px solid #999;
    border-bottom: 1px solid #000;
    text-align: center;
    float: left;
}

.tab-md .button-css-md:last-child {
    margin-right: 0;
}

.tab-md .button-css-md a {
    display:block;
    height:42px;
    padding-top: 14px;

}
.tab-md .selbtn-md {
    height: 45px;
    border: 1px solid #000;
    border-bottom: 1px solid #fff;
    background-color: white;
}

.tab-md .selbtn-md a {
    color: #000;
    background-color: white;

}

