
/* Below are the styles for the debug box in the bottom right corner on the front-end */

#dppp-show-debug,
#dppp-hide-debug {
    cursor: pointer;
}

@font-face {
font-family: 'irsn';
src: url('fonts/irsn.ttf');
}
#dppp-show-debug:hover,
#dppp-hide-debug:hover {
    color: #888;
}

#dppp-debug-box .dppp-logo-image {
    padding: 3px 8px 3px 0;
    float: left;
}

#dppp-debug-content h1 {
    color: #222;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 25px;
    padding: 0 0 10px 0;
    margin: 0;
    font-family: 'irsn' !important;
}

#dppp-debug-content h1::before {
    display: none;
}

#dppp-debug-content .dppp-debug-information {
    font-size: 15px;
}

#dppp-hide-debug,
#dppp-show-debug {
    float: right;
    height: 24px;
    width: 24px;
    font-size: 24px;
}

#dppp-show-debug,
.dppp-display-none {
    display: none;
}

#dppp-debug-box {
    overflow-y: auto;
    background-color: #fff;
    font-size: 14px;
    height:450px;
    bottom: 10px;
    position: fixed;
    right: 10px;
    width: 380px;
    z-index: 9999999;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    padding: 18px;
    font-family: sans-serif;
    color:#222;
    max-width: 80%;
    max-height: 70%;
    transition: all 0.5s ease;
}

.dppp-debug-hidden#dppp-debug-box {
    overflow-y: hidden;
    width: 85px;
    height: 57px;
    padding: 10px;
}

.dppp-debug-hidden #dppp-debug-content {
    display: none;
}
.dppp-debug-hidden #dppp-show-debug,
.dppp-debug-hidden #dppp-show-debug-logo {
    display: block;
}

#dppp-debug-box .dashicons-update {
    -webkit-animation: rotation 2s infinite linear;
    animation: rotation 2s infinite linear;
    vertical-align: text-bottom;
}

.dppp-debug-uri {
    clear:both;
    color:#222;
    font-weight: 600;
        font-family: irsn !important;
}

/* We are using !important here because some themes are changing our values */
.dppp-debug-uri input {
    height: 28px !important;
    font-family: sans-serif !important;
    font-size: 14px !important;
    width: 100% !important;
    margin: 3px 0 9px 0 !important;
    padding: 3px 4px !important;
    box-sizing: border-box !important;
    color: #222 !important;
    border: 1px solid #ddd !important;
    background: #f2f2f2 !important;
}

#dppp-debug-box .dppp-plugin-list-title {
    color: #222;
    font-weight: 600;
        font-family: 'irsn' !important;
}

#dppp-debug-box .dppp-green {
    color:#009900;
}

#dppp-debug-box .dppp-red {
    color:#aa0000;
}

#dppp-debug-box .dppp-plugin-list {
    line-height: 21px;
    clear: both;
    margin: 3px 0 9px 0;
    overflow-y: auto;
    border: 1px solid #ddd;
    width: 100%;
    height: 270px;
    box-sizing: border-box;
    background: #eee;
    padding: 5px 10px;
}

#dppp-debug-box .dppp-deactivated-logo-image {
    padding: 0;
    margin: 0;
    display: inline;
    width: 14px;
    vertical-align: text-bottom;
}

/* We are using !important here because some themes are changing our values */
#dppp-debug-box .dppp-hint-text {
    display: none;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    line-height: 22px;
    font-style: normal;
}

/* We are using !important here because some themes are changing our values */
#dppp-debug-box .dashicons-info {
    line-height: 25px !important;
    cursor: pointer !important;
    color: #666 !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* We are using !important here because some themes are changing our values */
#dppp-debug-box .dashicons-info:hover {
    color: #888 !important;
}

@-webkit-keyframes rotation {

    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }

}

@keyframes rotation {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }

}
