@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* BACKGROUND COLORS */
    --header_bgcolor: #35415e;
    --content_bgcolor: #2A3550;
    --box_bgcolor: #4E5677;
    --highlight_bgcolor: #555c81;
    --highlight_bgcolor_contrast: #5E678E;
    --green: #2DA478;
    --red: #FF3C2E;
    --yellow: #FFB84A;
    --new_fp_bgcolor: #3FCADB;
    --new_fp_bgcolor_dark: #2481C6;
    --input_error_bgcolor: #e6262944;

    /* FONT PROPERTIES*/
    --font_family: Poppins, sans-serif;
    --font_color: #ADB9D8;
    --font_size: 13pt;
    --font_size_mobile: 11pt;
    --font_size_h1_mobile: 1.5em;
    --font_size_highlight: 1.2em;
    --font_size_pager: 1.4em;

    /* BORDER PROPERTIES */
    --border_radius: 6px;
    --border: 1px solid #adb9d840;
    --border2: 1px solid #4e5677a0;
    --input_error_bordercolor: #e62629aa;
    --box_shadow: 0px 3px 6px #00000029;
}

* {
    font-family: var(--font_family);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

body {
    font-size: var(--font_size);
    background-color: var(--content_bgcolor);
    color: var(--font_color);
}

body#tinymce,
body.embed {
    background: #fff !important;
}

body.pw {
    overflow: hidden;
    height: auto;
}

h1,
h2 {
    margin: 20px 0px;
}

h3,
h4 {
    margin: 6px 0px;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: var(--font_color);
    outline: none;
}




.content input,
.content select,
.content textarea {
    border: 1px solid #ccc;
    font-size: 13pt;
}

.btn {
    border: 0 !important;
    color: #fff;
    background: var(--green);
    border-radius: var(--border_radius);
    padding: 0px 20px;
    margin: 6px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    line-height: 50px;
    font-size: 15pt;
    min-width: 200px;
    min-height: 50px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover,
.btn:active,
.btn:visited,
.btn {
    color: #ffffff;
    background: var(--green);
    text-decoration: none;
}

.hidden {
    display: none !important;
}

.text-wrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.txt {
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #444444;
    padding: 3px;
    min-width: 330px;
}

.b {
    font-weight: bold;
}

.i {
    font-style: italic;
}

.r {
    text-align: right;
}

.l {
    text-align: left;
}

.c {
    text-align: center;
}

.h {
    display: none;
}

::selection {
    background: var(--yellow);
    color: var(--content_bgcolor);
}

::-moz-selection {
    background: var(--yellow);
    color: var(--content_bgcolor);
}

.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
}

div#cookie {
    width: 100%;
    padding: 5px;
    font-size: 10pt;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    background: rgba(0, 0, 0, .8);
    color: #ffffff;
    text-align: center;
    display: none;
    z-index: 100;
}

div#cookie a {
    color: #ffffff;
    text-decoration: underline;
}

div#cookie input {
    border: 0;
    background: #1380d2;
    color: #ffffff;
    padding: 3px 10px;
    margin-left: 10px;
}

#hider {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
}

.expandblock {
    margin-bottom: 15px;
}

.expandblock_title {
    cursor: pointer;
    background: #888888 url('images/right.png') 5px center no-repeat;
    color: #FFFFFF;
    padding: 3px 5px 3px 25px;
    font-weight: bold;
}

.expandblock_content {
    display: none;
    padding: 5px 10px 10px 10px;
    overflow: hidden;
}

a.minigallery {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

div#main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logins {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div#content {
    width: 100%;
    margin-top: 10px;
    min-height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div#contentb {
    width: 80%;
    min-height: 100%;
    max-width: 1960px;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

div#foot {
    width: 100%;
    clear: both;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    color: #444;
    color: #ffffff;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

div#foot a:visited,
div#foot a:active,
div#foot a:hover,
div#foot a {
    color: #fff;
}

.s {
    max-width: 400px;
    margin: auto;
}


.c label {
    color: var(--box_bgcolor);
    font-size: 14pt;
}


/* INDEX */
#index_logo {
    background: transparent url('images/practi_logo.png') top center no-repeat;
    padding: 150px 20px 20px 20px;
    font-size: 22pt;
    max-width: 960px;
    margin: auto;
    text-align: center;
    margin-bottom: 30px;
    color: #ffff;
}

#index_logo span {
    color: #39cae2;
}

.error {
    text-align: center;
    margin: 20px auto;
    color: var(--red);
}

/* DASHBOARD */

.dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dashboard_link:active,
.dashboard_link:hover,
.dashboard_link:visited,
.dashboard_link {
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    margin: 10px;
    background-color: #2da478;
    color: #fff;
    min-width: 200px;
}


@media screen and (min-width:500px) {
    .circle_bg {
        background-image: url("images/circles.png");
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
    }
}

@media screen and (max-width: 500px) {
    body {
        font-size: var(--font_size_mobile);
    }
}

@media screen and (min-width: 350px) and (max-width:450px) {
    div#foot {
        font-size: 12pt;
    }

    .txt {
        padding: 3px;
        min-width: 200px;
    }

    .c label {
        font-size: 12pt;
    }
}