@charset "utf8";

.formSurround {
    display: none;
}

form {
    height: calc(100% - 20px);
    padding: 10px;
    width: calc(370px + 20px);
    top: 0;
    right: 0;
    position: absolute;
    z-index: 10;
    opacity: 1;
    overflow-y: auto;
}

@media only screen and (max-width: 400px) {
    form {
        height: calc(100% - 70px);
        position: fixed;
        top: 50px;
        right: 0;
        width: calc(100% - 20px);
    }
}

form fieldset {
    border-radius: 0 15px 15px 15px;
    border: #aaaaaa solid 1px;
}

form input {
    width: calc(100% - 8px);
}

form button {
    width: 75px;
    margin-top: 5px;
    margin-left: 5px;
    float: right;
}

form select {
    width: calc(100% - 8px);
}

.blockingBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .25;
    background: #000000;
    z-index: 1;
}

/*icon chooser*/
.iconDiv{
    display: table;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 400px) {
    .iconDiv {
        position: relative;
        left: -7px;
        width: calc(100% + 20px);
    }
}

.iconDiv label{
    background-color: #fff;
    height: 20px;
    width: 20px;
    color: #999;
    border: none;
    border-bottom: 1px solid #999;
    border-radius: 15px;
    padding: 5px;
    margin-top: 5px;
    margin-left: 5px;
    font-size: 20px;
    z-index: 90;
    text-align: center;
    float:left;
}
.iconDiv input[type="radio"] {
    position: relative;
    top: -32.5px;
    left: -11px;
    opacity: 0.01;
    height: 32px;
    width: 32px;
    border: none;
    z-index: 100;
}

.followUp input[type="radio"]:checked+label,
.Checked+label {
    visibility: visible;
    position: relative;
    top: -76px;
    left: -13px;
    color: #191970;
    border: 3px solid #191970;
    border-radius: 20px;
}

.followUp label{
    visibility: hidden;
    position: relative;
    top: -72px;
    left: -10px;
    z-index: 95;
    background-color: #fff;
    height: 20px;
    width: 20px;
    color: #999;
    border: 1px solid #999;
    border-radius: 15px;
    font-size: 20px;
    text-align: center;
}