body {
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1.2em;
    background-color: #F0F0F0;
}

.wra-body {
}

a {
    color: #f60;
    text-decoration: none;
}

a:hover {
    filter: drop-shadow(1px 1px 5px #f60);
}

.badge {
    background-color: #f60;
    color: white;
    font-weight: bold;
    padding: 3px 7px;
    text-align: center;
    border-radius: 8px;
}

.white {
    color: white !important;
}

.disabled {
    pointer-events: none;
    cursor: default;
    color: #808080;
}

.text-center {
    text-align: center;
}

::selection {
    background-color: rgb(255, 204, 174);
    color: black;
}

div.wra-base-content {
    margin-left: 240px;
    padding: 16px 30px 16px 30px;
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

.wra-blog-body {
    line-height: 1.5;
}

.wra-base-jumbotron {
    display: inherit;
    width: auto;
    height: 400px;
    padding-top: 100px;
    font-size: 150%;
}

.wra-alert-message {
    padding: 15px;
    border: 1px solid black;
    border-radius: 10px;
}

.wra-alert-info {
    background-color: #80ce80;
}

.wra-alert-warning {
    background-color: #ffa0a0;
}

/* SIDEBAR */

.wra-base-container {
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    grid-auto-rows: auto;
}


.wra-base-sidebar {
    margin: 0;
    width: 220px;
    background-color: black;
    position: fixed;
    height: 100%;
    padding: 0 0 0 20px;
    overflow: auto;
    box-shadow: 0 0 10px 5px #404040;
}


.wra-base-sidebar a.wra-base-foot-link-small {
    font-size: 80%;
    display: inline;
    padding: 0;
}

.wra-base-sidebar a {
    display: block;
    padding: 8px;
    font-weight: bold;
}

.wra-base-sidebar a.wra-base-logo {
    background-color: black;
    color: white;
    font-size: 120%;
    padding: 0;
    text-align: center;
}

.wra-base-sidebar a.wra-base-logo-small {
    display: none;
}

.wra-base-sidebar a.wra-base-logo img {
    transition-duration: 0.5s;
    transform: scale(1);
}

.wra-base-sidebar a.wra-base-logo img:hover {
    transition-duration: 0.5s;
    transform: scale(1.05);
}

.wra-base-sidebar a.active {
    background-color: #202020;
    color: #f60;
}


.wra-base-sidebar a.wra-base-logo:hover {
    filter: none;
}

/* FOOTBAR */

.wra-base-foot-container {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 240px;
    margin: 0;
    padding: 0 0 24px 0;
    text-align: center;
}

.wra-base-foot {
    color: white;
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding:2px;
    font-size: 80%;
}

.wra-base-foot h4 {
    text-transform: uppercase;
    margin-bottom: 4px;
    padding-left: 4px;
    color: white;
}

.wra-base-foot a {
    font-size: 80%;
    display: block;
    color: #f60;
    padding: 2px;
    margin: 1px;
    text-decoration: none;
    font-weight: bold;
}

.wra-base-foot a.wra-base-foot-link-small {
    display: inline;
    font-size: 100%;
    padding: 0;
}

.wra-base-foot-version {
    font-size: 80%;
    color: #A0A0A0;
}

/* PAGER */

.wra-base-pager {
    margin-top: 30px;
    display: block;
    text-align: center;
}

.wra-base-pager-link {
    padding: 8px 12px 8px 12px;
    margin: 1px;
    background-color: white;
}

.wra-base-pager-end {
    border-radius: 0 10px 10px 0;
}

.wra-base-pager-front {
    border-radius: 10px 0 0 10px;
}

.wra-base-pager .current {
    pointer-events: none;
    background-color: #F60;
    color: white;
}

.wra-base-pager .disabled {
}

/* Forms */

.wra-base-form {
    padding: 10px;
}

.wra-base-form-group {
    padding: 10px;
}

.wra-base-form-group label {
    display: block;
    text-align: left;
}

.wra-base-form-group input {
    display: block;
    font-family: Georgia, "Times New Roman", Times, serif;
    text-align: left;
    font-size: 1em;
}

.wra-base-form .error {
    color: red;
    font-size: 90%;
}

/* TexBlog */

.wra-blog-container h2 {
    font-weight: normal;
    font-size: 200%;
}

.wra-blog-container hr {
    width: 60%;
    margin: 30px auto 30px 0;
    color: rgb(255, 204, 174);
    background-color: rgb(255, 204, 174);
    border: 0;
    height: 1px;
}


@media screen and (max-width: 2570px) {
    .wra-base-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 2050px) {
    .wra-base-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1580px) {
    .wra-base-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1110px) {
    .wra-base-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-height: 540px) {
    .wra-base-sidebar a.wra-base-logo img {
        height: 64px;
        width: 95px;
    }

    .wra-base-foot-container {
        display: inherit;
        position: relative;
        width: auto;
        margin: 0 auto 0 240px;
        background-color:black;
    }
}

@media screen and (max-width: 800px) {
    div.wra-base-content {
        margin-left: 0;
    }

    .wra-base-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .wra-base-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 0 0 5px 0;
    }

    .wra-base-sidebar a {
        text-align: center;
        float: none;
        display: inline;
    }

    .wra-base-sidebar a.wra-base-logo {
        display: none;
    }

    .wra-base-sidebar a.logo_small {
        display: block;
        float: none;
        color: white;
    }

    .wra-base-foot-container {
        display: block;
        position: relative;
        width: 100%;
        margin-left: 0;
        background-color:black;
    }
}

@media screen and (max-width: 550px) {
    .wra-base-container {
        grid-template-columns: repeat(1, 1fr);
    }
}