
.switch {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    box-sizing: content-box;
    outline: none; 
}
.switch,
.switch small {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.switch small {
    font-size: 12px;
    top: 0;
    border-radius: 100%;
    text-align: center;
    display: block;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
    color: #000;
}
.switch-default {
    width: 50px;
    height: 30px;
    border-radius: 20px;
    line-height: 30px;
}
.switch-large {
    border-radius: 40px;
    height: 40px;
    /* width: 66px; */ 
    width: 260px;
    line-height: 40px; 
    background-color: transparent; 
    padding:5px 0 5px 5px;
    background-image:url('../images/buttons/btn-yes-outline.svg');
    background-repeat: no-repeat;
    background-position: 220px 50%;
    background-size:40px 40px;
}

#btn-age-gate-yes-no.english .switch-large {
    background-image:url('../images/buttons/btn-yes-outline-english.svg');
}
.switch-large small {
    height: 40px;
    width: 40px;
}
.switch-disabled {
    opacity: 0.5;
}
span.switch-off small{
    /* background-image:url('../images/buttons/btn_no.svg'); */ 
    background-image:url('../images/buttons/btn-no.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size:40px 40px;
}
span.switch-on small{
    background-image:url('../images/buttons/btn-yes.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size:40px 40px;
}
#btn-age-gate-yes-no.english span.switch-on small {
    background-image:url('../images/buttons/btn-yes-english.svg');
}
