.resizeer_tab_content p {
    margin: 0;
    padding: 0;
}
.resizeer_tab_content hr {
    opacity: .4;
    margin-top: 2em;
    margin-bottom: 2em;
}
.resizeer_tab_content h1, .resizeer_tab_content h2, .resizeer_tab_content  h3 {
    padding: 0;
    margin: 0;
    margin-bottom: .5em;
    margin-top: .5em;
}
.resizeer_tab_content h1 {
    font-weight: 700;
}
.resizeer_tab_content .button {
    margin-top: 1em;
}

.resizeer_tab_content {
    padding: 1em;
    background: #fbfbfb;
    margin-bottom: 1em;
    box-shadow: 0 0 10px 10px #00000008;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    border: 1px solid #ddd;
}
.resizeer_tab_content.active {
    display: block;
}
.resizeer_tabs {
    background: #2f2264;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.resizeer_tab {
    padding: 1em;
    display: inline-block;
    margin: 0;
    min-width: 100px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: all 0.3s;
}

.resizeer_tab:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #2f2264;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}

.resizeer_tab:hover{
    color:#fff;
    text-shadow: 0px 0px 3px #fff;
}

.resizeer_tab:hover:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    bottom: 0;
    left: 0;

}
.resizeer_tab.active:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    bottom: 0;
    left: 0;

}

.resizeer_tab.active{
    font-weight: 700;
    text-shadow: 0px 0px 3px #fff;
}

#resizeer-options label {
    font-weight: 600;
    text-align: left;
}

#resizeer-options input {
    margin-top: .5em;
    margin-bottom: 1.5em;
}

.resizeer_tab.active:focus {
    color: #fff;
}

div#resizeer-logs-container {
    background: #f0f0f0;
    padding: 1em;
    max-height: 250px;
    overflow-y: scroll;
}