body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 700;
    text-transform: uppercase;
}

#content {
    padding: 10px 20px;
}

b{
    font-weight: bold;
}

a{
    text-decoration: none;
}

button, .button {
    padding: 14px 10px;
    border-radius: 5px;
    background-color: #00b5fa;
    border: 0;
    color: #FFF;
    text-transform: uppercase;
    cursor: pointer;
}

table.sln-table{
    border-spacing: 0;
    border-color: rgba(255,255,255,0);
    width: 100%;
}

table.sln-table th{
    font-weight: normal;
    text-align: left;
    background: #000;
    color: #FFF;
}

table.sln-table tr:nth-child(odd) {
    background: #FFF;
}

table.sln-table tr:nth-child(odd) {
    background: #e0e0e0;
}

table.sln-table td,
table.sln-table th {
    padding: 20px 10px;
    font-size: 14px;
}

.sln_filters {
    margin-bottom: 20px;
    width: 100%;
}
.select2-container{
    vertical-align: top;
}

.select2-container--default .select2-selection--single{
    height: 48px;
    vertical-align: top;
    font-weight: 700;
    text-transform: uppercase;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow{
    margin-top: 10px;
}

.sln_filters .ui-selectmenu-button.ui-button,
.sln_filters .sln_filter_text_input{
    padding: 15px;
    margin-right: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sln_filters .sln_filter_text_input,
.sln_filters #sln_hide_deleted_container{
    width: 228px;
}

.sln_filters .ui-selectmenu-button.ui-button,
.sln_filters .sln_filter_text_input,
.sln_filters #sln_hide_deleted_container{
    margin-bottom: 10px;
}

#sln_hide_deleted_container{
    display: inline-block;
}

.sln_filters button{
    vertical-align: super;
}

.sln_filters label {
    display: none;
}

.sln_filters_select li.ui-menu-item {
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.sln_filters_select li.ui-menu-item:first-child{
    padding-top: 20px;
}

.sln_filters_select li.ui-menu-item:last-child{
    padding-bottom: 20px;
}

.sln_filters_additional{
    display: none;
}

#sln_show_more_filters {
    background-color: #000000;
    color: #00b5fa;
    width: 40px;
}

#sln-templates-list {
    margin-top: 50px;
    display: inline-block;
}

#sln-templates-list .button {
    margin-right: 20px;
    margin-bottom: 20px;
    width: 200px;
    text-align: center;
    padding: 0;
    height: 100px;
    line-height: 100px;
    display: list-item;
    float: left;
    font-size: 18px;
    list-style: none;
}

#sln-templates-list .button span{
/*    display: inline-block;
    vertical-align: middle;
    line-height: normal;*/
}

#email-form-result {
    background-color: #e4e4e4;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
}

#progress-message{
    background-color: #00b5fa;
    border-radius: 5px;
    position: fixed;
    left: 45%;
    color: #FFF;
    padding: 5px 15px;
}

/*Checkbox Styling*/
/* Customize the label (the container) */
label.checkbox_container {
    display: block;
    position: relative;
    padding-top: 2px;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ececec;
    border: 1px solid #b7b6b6;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media print {

    .sln_actions,
    #templates,
    #pre-loader,
    #powered-by-slynk{
        display: none !important;
    }

    #content {
        padding: 0;
    }
}