@import 'https://fonts.googleapis.com/css?family=Raleway';
/* =report button styles */
.report-link-holder {
    display: block;
    margin: 0 auto 20px;
    position: relative;
    min-height: 34px;
    min-width: 150px;
}
.report-link-frame {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 227px;
    margin-left: -112px;
    right: auto;
    border: 1px solid #bbb;
    max-height: 35px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-transition: max-height 0.15s 0.25s ease-out;
    -moz-transition: max-height 0.15s 0.25s ease-out;
    transition: max-height 0.15s 0.25s ease-out;
}
.report-link-frame:hover { border-color: #999; }
.report-link-frame.active {
    border-color: #999;
    max-height: 500px;
    z-index: 9;
    -webkit-transition: max-height 0.25s 0.15s ease-in;
    -moz-transition: max-height 0.25s 0.15s ease-in;
    transition: max-height 0.25s 0.15s ease-in;
}
.report-link-frame.disabled { border-color: #bbb; }
.report-link {
    display: block;
    text-align: center;
    font: 400 14px/1.25 gotham-web, sans-serif !important;
    padding: 8px 16px;
    color: #999 !important;
    -webkit-transition: min-width 0.15s ease-out;
    -moz-transition: min-width 0.15s ease-out;
    transition: min-width 0.15s ease-out;
    min-width: 0;
    white-space: nowrap;
}
.report-link:hover {
    text-decoration: none;
    color: #777 !important;
}
.report-link.active {
    color: #777 !important;
    -webkit-transition: min-width 0.25s ease-in;
    -moz-transition: min-width 0.25s ease-in;
    transition: min-width 0.25s ease-in;
    min-width: 225px;
}
.report-link.disabled {
    background-color: #fcf8e3 !important;
    cursor: default !important;
    color: #333 !important;
}
/* report button styles */
/* =report popups  */
.report-popup {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #fff;
    margin: 0 0 -1px;
}
.report-popup .row {
    padding: 0 20px;
    margin: 0 0 7px;
}
.report-popup .button-row {
    margin: 0;
    padding: 0;
}
.report-popup .error {
    display: block;
    padding: 5px 15px;
    margin: 0 20px;
    background-color: #f2dede;
    color: #333;
    font-size: 14px;
}
/* =recaptcha styles */
.report-popup .captcha-row {
    background-color: #f9f9f9;
    border-top: 1px solid #d3d3d3;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.report-popup .captcha-row .g-recaptcha > div {
    width: 154px !important;
    height: 134px !important;
    margin: 0 auto 10px;
    overflow: hidden;
}
.report-popup .captcha-row .g-recaptcha > div > div {
    float: left;
    margin: -2px 0 0 -2px;
}
/* =recaptcha styles */
.report-popup label {
    font: 14px/1.25 'Raleway', sans-serif;
}
.report-popup label input[type="radio"] {
    vertical-align: top;
    margin: 6px 3px 0 0;
    width: 18px;
    height: 18px;
}
/* report popups  */
/* =tank you message styles*/
.thank-you-message {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 15px;
    font: 16px/1.25 'Raleway', sans-serif;
    background-color: rgba(255, 255, 255, 0.9);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
/* tank you message styles*/
/* =spinner styles */
.loader {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.spinner,
.spinner::before,
.spinner::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgb(204,204,204);
    border-left-color: rgb(0,0,0);
    border-radius: 974px;
    -o-border-radius: 974px;
    -ms-border-radius: 974px;
    -webkit-border-radius: 974px;
    -moz-border-radius: 974px;
}

.spinner {
    margin: -24px 0 0 -24px;
    height: 49px;
    width: 49px;
    animation: cssload-rotate 1150ms linear infinite;
    -o-animation: cssload-rotate 1150ms linear infinite;
    -ms-animation: cssload-rotate 1150ms linear infinite;
    -webkit-animation: cssload-rotate 1150ms linear infinite;
    -moz-animation: cssload-rotate 1150ms linear infinite;
}

.spinner::before {
    content: "";
    margin: -22px 0 0 -22px;
    height: 43px;
    width: 43px;
    animation: cssload-rotate 1150ms linear infinite;
    -o-animation: cssload-rotate 1150ms linear infinite;
    -ms-animation: cssload-rotate 1150ms linear infinite;
    -webkit-animation: cssload-rotate 1150ms linear infinite;
    -moz-animation: cssload-rotate 1150ms linear infinite;
}

.spinner::after {
    content: "";
    margin: -28px 0 0 -28px;
    height: 55px;
    width: 55px;
    animation: cssload-rotate 2300ms linear infinite;
    -o-animation: cssload-rotate 2300ms linear infinite;
    -ms-animation: cssload-rotate 2300ms linear infinite;
    -webkit-animation: cssload-rotate 2300ms linear infinite;
    -moz-animation: cssload-rotate 2300ms linear infinite;
}



@keyframes cssload-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes cssload-rotate {
    100% {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes cssload-rotate {
    100% {
        -ms-transform: rotate(360deg);
    }
}

@-webkit-keyframes cssload-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes cssload-rotate {
    100% {
        -moz-transform: rotate(360deg);
    }
}
/* spinner styles */
@media only screen and (min-width: 416px) {
    .report-link-holder {
        float: right;
        margin: 0;
    }
    .report-link-frame {
        right: 0;
        left: auto;
        margin-left: 0;
        min-width: 0;
    }
}