/*! visualCaptcha - v0.0.8 - 2016-01-23
* http://visualcaptcha.net
* Copyright (c) 2016 emotionLoop; Licensed MIT */
.visualCaptcha-accessibility-button:hover, .visualCaptcha-possibilities img:hover, .visualCaptcha-refresh-button:hover {
    cursor: pointer
}
/*
.visualCaptcha {
    margin-bottom: 20px;
    min-height: 120px
}

@media only screen and (min-width: 750px) {
    .visualCaptcha {
        margin-bottom: 50px
    }
}
*/
.visualCaptcha * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.visualCaptcha .audioField {
    font-size: 15px;
    color: #495e62;
    font-weight: 100;
    padding: 5px;
    border: 1px solid #3bb6e4;
    height: 40px;
    width: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

@media only screen and (max-width: 360px) {
    .visualCaptcha .audioField {
        margin-bottom: 15px
    }
}

@media only screen and (min-width: 360px) {
    .visualCaptcha .audioField {
        width: 240px;
        float: left
    }
}

.accessibility-description, .status.valid {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color: #c1f7e8;
    padding: 10px;
    text-align: center;
    font-family: Oxygen, sans-serif;
    font-size: 18px;
    color: #219589;
    font-weight: 100;
    margin: 20px 0 24px
}
.visualCaptcha-explanationX {
    display: block;
    width: 30%;
    float: left;
    clear: left;
    font-weight: normal;
    margin-top: 9px;
    margin-bottom: 0px;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    border: 0;
}
@media (max-width: 767px) {

    .visualCaptcha-explanation {
        width: 100%;
    }
}




.visualCaptcha-accessibility-button, .visualCaptcha-button-group, .visualCaptcha-possibilities, .visualCaptcha-refresh-button {
    display: inline-block
}

.visualCaptcha-possibilities {
    vertical-align: middle
}

.visualCaptcha-possibilities .img {
    padding: 4px;
    border: 1px solid #fff;
    display: inline-block
}

.visualCaptcha-possibilities img {
    width: 32px;
    height: 32px;
    z-index: 5;
    transition: all .2s;
    -webkit-transition: all .2s
}

.visualCaptcha-accessibility-button img, .visualCaptcha-refresh-button img {
    width: 16px;
    height: 16px
}

@media only screen and (max-width: 360px) {
    .accessibility-description, .status.valid, .visualCaptcha-explanation {
        font-size: 16px
    }

    .visualCaptcha-possibilities .visualCaptcha-button-group {
        text-align: center;
        margin-top: 15px
    }
}

@media only screen and (min-width: 750px) {
    .visualCaptcha-possibilities {
        margin-right: 15px;
        border: 1px solid rgb(255, 255, 255);
    }

    .visualCaptcha-possibilities .img {
        padding: 10px;
        border: 1px solid #fff
    }

    .visualCaptcha-possibilities .visualCaptcha-button-group {
        float: right
    }
}

.visualCaptcha-possibilities .visualCaptcha-selected {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    border: 1px solid rgb(230, 190, 60);
}

@media only screen and (min-width: 750px) {
    .visualCaptcha-possibilities .visualCaptcha-selected {
        padding: 10px;
        border: 1px solid rgb(230, 190, 60);
    }
}

.visualCaptcha-refresh-button {

    padding: 5px 8px 8px 8px !important;
    background-color: rgb(153, 153, 153) !important;
    /*
    border: 1px solid rgb(230, 190, 60);
     */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.visualCaptcha-accessibility-button {
    padding: 9px 10px 7px;
    border: 1px solid #000;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

div.visualCaptcha .visualCaptcha-show {
    -webkit-animation: fadeIn .3s;
    animation: fadeIn .3s
}

div.visualCaptcha .visualCaptcha-hide {
    display: none !important;
    -webkit-animation: fadeOut .3s;
    animation: fadeOut .3s
}
