body, html {
    font-family: Arial;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.anps-frame {
    background: #363636;
    color: #363636;
    text-align: left;
    height: 50px;
    padding: 20px 35px 0 35px;
}

.anps-frame:after {
  content: "";
  display: table;
  clear: both;
}

.anps-frame img, .select-wrapper {
    float: left;
}

.anps-frame img {
    border: none;
    margin: 0 60px 0 0;
}

#anps-frame-purchase, #anps-frame-close {
    border: none;
    cursor: pointer;
    display: inline-block;
    float: right;
    height: 31px;
    width: 50px; 
}

#anps-frame-purchase {
    background: url(../img/purchase.png) center no-repeat;
    margin-right: 10px;
}

#anps-frame-purchase-text {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    float: right;
    font-size: 18px;
    display: inline-block;
    margin-top: 6px;
    padding-right: 5px;
}

#anps-frame-close {
    margin-top: 2px;
    background: url(../img/close.png) center no-repeat;
}

@media (max-width: 767px) {

    .anps-frame img {
        display: none;
    }

}

@media (max-width: 530px) {

    .anps-frame {
        padding-right: 10px;
        padding-left: 10px;
    }

    .select-wrapper {
        display: none;
        text-align: center;
    }

    #anps-frame-purchase, #anps-frame-purchase-text {
        float: left
    }

}

#iframe {
    width: 100%;
}


/* Select box */

.select-wrapper {
    position: relative;
}

.select-wrapper.open ul {
    display: block;
}

.select-val {
    background: #eaeaea;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    padding: 10px 50px 10px 20px;
    width: 187px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: -3px;
}

.select-val:after {
    background: url(../img/select-arrow.png) center no-repeat;
    background-color: #eaeaea;
    content: "";
    width: 40px;
    height: 33px;
    position: absolute;
    top: 0;
    right: 0px;
}

.select-wrapper ul {
    background: #363636;
    -webkit-box-shadow: 2px 3px 3px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: 2px 3px 3px 0 rgba(0, 0, 0, .3);
    box-shadow: 2px 3px 3px 0 rgba(0, 0, 0, .3);
    display: none;
    list-style: none;
    font-size: 12px;
    position: absolute;
    top: 33px;
    left: 0;
    margin: 0;
    padding: 0;
    width: 400px;
}

.select-wrapper ul li {
    color: #fff;
    cursor: pointer;
    padding: 0 20px;

    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.select-wrapper ul li:hover {
    background: #eaeaea;
    color: #000;
}

.select-wrapper ul li:hover span {
    border-color: #eaeaea;
}

.select-wrapper ul li span {
    border: 1px solid #444;
    border-style: none none solid none;
    display: block;
    padding: 16px 0;

    -webkit-transition: border-color .2s linear;
    -moz-transition: border-color .2s linear;
    -ms-transition: border-color .2s linear;
    -o-transition: border-color .2s linear;
    transition: border-color .2s linear;
}