﻿.visualCaptcha {
    margin-bottom: 20px;
    min-height: 120px;
}

.visualCaptcha-possibilities img {
    width: 32px;
    height: 32px;
    z-index: 5;
    transition: all 200ms;
    -webkit-transition: all 200ms;
}

    .visualCaptcha-possibilities img:hover {
        cursor: pointer;
    }

.visualCaptcha-possibilities .visualCaptcha-selected img {
    filter: grayscale(100%) brightness(350%) contrast(1);
}

a.imgLinks {
    background: #ffffff;
    margin: 4px;
    border-radius: 3px;
    border: solid 1px #c3e6f9;
}

.visualCaptcha-possibilities .visualCaptcha-selected {
    background-color: #0072b1 !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #3fbbff;
}
@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, .visualCaptcha-explanation, .status.valid {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 4px;
    background-color: rgba(181, 229, 255, 0.47);
    padding: 9px;
    text-align: center;
    font-family: Oxygen,sans-serif;
    font-size: 18px;
    font-weight: 100;
    margin: 10px 0 10px;
    border: solid 1px #c3e6f9;

}

@media only screen and (max-width:360px) {
    .accessibility-description, .visualCaptcha-explanation, .status.valid {
        font-size: 16px;
    }
}

.visualCaptcha-possibilities, .visualCaptcha-refresh-button, .visualCaptcha-accessibility-button, .visualCaptcha-button-group {
    display: inline-block;
}

.visualCaptcha-possibilities {
    vertical-align: middle;
}

@media only screen and (min-width:750px) {
    .visualCaptcha-possibilities {
        margin-right: 5px;
    }
}

.visualCaptcha-possibilities .img {
    padding: 4px;
    border: 1px solid #fff;
    display: inline-block;
}

@media only screen and (min-width:750px) {
    .visualCaptcha-possibilities .img {
        padding: 5px;
        border: 3px solid #fff;
    }
}

@media only screen and (max-width:360px) {
    .visualCaptcha-possibilities .visualCaptcha-button-group {
        text-align: center;
        margin-top: 5px;
    }
}

@media only screen and (min-width:750px) {
    .visualCaptcha-possibilities .visualCaptcha-button-group {
        float: right;
    }
}

@media only screen and (min-width:750px) {
    .visualCaptcha-possibilities .visualCaptcha-selected {
        border: 1px solid;
        background-color: #dcf3ff;
    }
}

.visualCaptcha-refresh-button {
    padding: 10px;
    margin: 0 5px;
    background-color: #ededed;
    border: 1px solid #5d5d5d;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

    .visualCaptcha-refresh-button img {
        width: 16px;
        height: 14px;
    }

    .visualCaptcha-refresh-button:hover {
        cursor: pointer;
    }

.visualCaptcha-accessibility-button {
    padding: 9px 10px 7px;
    border: 1px solid #000;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

    .visualCaptcha-accessibility-button img {
        width: 16px;
        height: 14px;
    }

    .visualCaptcha-accessibility-button:hover {
        cursor: pointer;
    }

@-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 300ms;
    animation: fadeIn 300ms;
}

div.visualCaptcha .visualCaptcha-hide {
    display: none !important;
    -webkit-animation: fadeOut 300ms;
    animation: fadeOut 300ms;
}
