
body {
    font-family: arial;
}
.table_wrapper table {
    border: 2px solid red;
    border-spacing: 0;
    text-align: center;
}
.table_wrapper table td {
    padding: 3px 15px;
}
.table_wrapper table thead {
    background: red none repeat scroll 0 0;
    font-weight: bold;
}
.table_wrapper table tbody tr:nth-child(2n) {
    background-color: lightgray;
}
.table_wrapper table td > div.view {
    background-image: url("images/view.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.table_wrapper table td > div.delete {
    background-image: url("images/delete.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.table_wrapper table td > div.edit {
    background-image: url("images/edit.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.table_wrapper table td > div.edit_fields {
    background-image: url("images/pin.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.table_wrapper table td > div.edit_permissions {
    background-image: url("images/permissions.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.table_wrapper table td > div.duplicate {
    background-image: url("images/duplicate.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.table_wrapper table td > div.manage {
    background-image: url("images/manage.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.table_wrapper table tr.selected {
    background: lightblue none repeat scroll 0 0 !important;
    color: red;
}
#templates_table td img {
    max-height: 200px;
    max-width: 200px;
}
.status.success {
    border: 1px solid green;
    color: green;
}
.status.failure {
    border: 1px solid red;
    color: red;
}
.button {
    border: 1px solid black;
    color: black;
    cursor: pointer;
    display: inline-block;
    padding: 5px 15px;
    transition: all 0.5s ease-in-out 0s;
}
.button:hover {
    background: black none repeat scroll 0 0;
    color: white;
}
.admin-section {
    border-bottom: 1px solid lightgray;
    padding: 15px 0;
}
.fancybox {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(235,235,235,.95);
    width: 100%;
    height: 100%;
    overflow: scroll;
}
.fancybox .fancybox-inner {
    background: white;
    margin: 50px;
    border-radius: 10px;
    padding: 20px;
}
.fancybox .fancybox-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 65px;
    right: 65px;
    background-image: url("images/delete.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: inline-block;
}
.two_columns {
    width: 100%;
}
.two_columns .column_one {
    display: inline-block;
    width: 48%;
    margin-right: 3.66%;
    vertical-align: top;
}
.two_columns .column_one img {
    max-width: 100%;
}
.two_columns .column_two {
    display: inline-block;
    width: 48%;
    vertical-align: top;
}
.permissions_table {
    border-spacing: 0;
    border: 2px solid red;
    border-bottom: none;
}
.permissions_table td {
    border-bottom: 2px solid red !important;
}
.permissions_table td {
    text-align: center;
    padding: 7px 25px 5px;
}
.permissions_table td.header {
    background: red;
}
#newsletter_section_table input.order {
    width: 2em;
    text-align: center;
}
#newsletter_section_table img {
    max-width: 600px;
}
.add_section #templates .template {
    max-width: 230px;
    display: inline-block;
    border: 1px solid black;
    vertical-align: top;
    padding: 5px;
    margin: 10px;
    min-height: 135px;
}
.add_section #templates .template img {
    width: 100%;
}