:root {
    --maincolor: #097dcb;
    --color2: #344781;
    --zold: #5cb85c;
    /* 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;
}

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

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

body {
    font-size: 13pt;
    background: #c3cbd5;
    color: #222;
}

@media screen and (min-width:500px) {
    body {
        background: #2A3550 url('images/circles.png') center no-repeat;
        background-attachment: fixed;
    }
}

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

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

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: #46b;
    outline: none;
}

a:hover {
    /* color: #666; */
}

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

.btn {
    border: 0 !important;
    color: #fff;
    background: #00BADA;
    padding: 5px 12px 5px 12px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    line-height: 50px;
    margin: 20px;
    font-size: 15pt;
    min-width: 200px;
    min-height: 50px;
}

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

.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: #aaaaaa;
}

::-moz-selection {
    background: #aaaaaa;
}

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;
}

@media screen and (max-width: 1000px) {
    div.inlineblock {
        padding: 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#breadcrumbs {
    color: #666;
    font-size: 8pt;
    padding-left: 5px;
    margin-bottom: 10px;
}

div#breadcrumbs a {
    color: #666;
}

div#content {
    width: 100%;
    margin-top: 10px;
    min-height: 70vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
}

div#contentb {
    width: 80%;
    max-width: 1960px;
    padding: 10px;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

div#foot {
    clear: both;
    padding: 10px;
    text-align: center;
    margin-top: 50px;
    color: #2f3e4c;
    min-height: 100px;
    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: #2f3e4c;
}

#head_logo {
    width: 60px;
    height: 60px;
    top: 5px;
    left: 10px;
    /* position: absolute; */
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
}


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

div.login_tab {
    width: 100%;
    text-align: center;
}

div.login .l {
    margin-bottom: 10px;
    color: #4E5677;
}

form.login {
    padding: 30px;
    text-align: center;
    min-width: 400px;
    top: -35px;
    z-index: -10;
    margin: auto;
    background-color: var(--bgcolor);
    border-radius: 6px;
    padding-top: 50px;
    margin: 40px 20px;
    box-shadow: 0px 0px 2px 1px #0d1b2a70;
}

form.login .btn {
    text-transform: uppercase;
    min-width: 240px;
    font-size: 13pt;
    padding: 3px 10px 3px 10px;
    margin: 35px 0px;
}

form.login a:visited,
form.login a:active,
form.login a:hover,
form.login a {
    color: #2f3e4c;
    font-style: italic;
}

form.login input.txt {
    background-color: transparent;
    color: #2f3e4c;
    border: 0;
    /* border-bottom: 1px solid #ffffff; */
    background-color: #e7ebef;
    text-align: center;
    margin-bottom: 20px !important;
    margin-top: 20px;
    padding: 10px;
    max-width: 250px;
    border-radius: 3px;
}

form.login .title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15pt;
    margin-bottom: 10px;
}

form.login input[type=text],
form.login input[type=password] {
    width: 100%;
    margin-bottom: 10px;
    font-size: 13pt;
    font-style: italic;
}


.loginregister {
    margin: 20px 0;
    padding: 20px;
    background: rgba(100, 100, 100, .2);
    text-align: center;
    color: #ffffff;
    min-width: 300px;
    max-width: 350px;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    display: none;
}

.loginregister .btn {
    line-height: 40px;
}

.loginregister h1 {
    text-align: center;
    padding: 0 10px 10px 0;
    font-size: 14pt;
    border-bottom: 1px solid #666;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.c label {
    color: #4E5677;
    font-size: 14pt;
}

.fpass {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 60%;
    margin: auto;
}

.resetpasswd {
    font-size: 12pt;
    color: #fff;
    font-weight: 600;
}

.fpass [type="checkbox"] {
    height: 23px;
    width: 23px;
    border: 1px solid #4E5677;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

#persistentlogin:checked {
    height: 20px;
    width: 20px;
    background-color: #4E5677;
    border: 1px solid #2A3550;
    outline: 1px solid #2DA478;
    outline-offset: 1px;
}


@media screen and (max-width: 1000px) {
    div#contentb {
        padding: 20px;
    }
}

@media screen and (max-width: 800px) {
    div#contentb {
        padding: 10px;
    }
}

/* INDEX */
#index_logo {
    background: transparent url('images/practi-logo-center.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;
}

#i_bs {
    max-width: 990px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

#i_bs>div {
    width: 32%;
    min-width: 200px;
    margin: .5%;
    padding: 20px 15px 50px 15px;
    background: #eeeeff;
    flex-grow: 1;
    background-position: center 10px;
    background-repeat: no-repeat;
    transition: ease all .1s;
    z-index: 10;
    position: relative;
}

#i_bs>div:nth-child(1) {
    background: #0079c1;
}

#i_bs>div:nth-child(2) {
    background: #39cae2;
}

#i_bs>div:nth-child(3) {
    background: #74b3de;
}

#i_bs>div a {
    text-align: center;
    padding: 10px;
    color: #fff;
    display: block;
    position: absolute;
    bottom: 5px;
    left: 10px;
    right: 10px;
    font-size: 15pt;
    letter-spacing: 1px;
    font-weight: bold;
}

#i_bs>div a span {
    color: #000000;
}

#i_bs>div h1 {
    text-align: center;
    font-size: 22pt;
    margin: 0 0 10px 0;
    color: #444444;
}

#i_bs2 {
    max-width: 990px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

#i_bs2>div {
    width: 49%;
    text-align: center;
    background: rgba(100, 100, 150, .2);
    padding: 20px 15px 50px 15px;
    margin: .5%;
    position: relative;
}

#i_bs2>div a {
    text-align: center;
    padding: 10px;
    color: #fff;
    display: block;
    position: absolute;
    bottom: 5px;
    left: 10px;
    right: 10px;
    font-size: 15pt;
    letter-spacing: 1px;
    font-weight: bold;
}

div#i_b2_2 {
    background: rgba(100, 100, 150, .5);
}

@media screen and (max-width: 500px) {

    #i_bs>div,
    #i_bs2>div {
        width: 100%;
    }
}

.error {
    background: rgba(255, 100, 100, 0.2);
    text-align: center;
    max-width: 330px;
    margin: 5px auto 5px auto;
    display: block;
    padding: 10px;
    color: #ff0000;
    border-bottom: 4px solid #ff0000;
}

.success {
    background: rgba(100, 255, 100, 0.2);
    text-align: center;
    max-width: 330px;
    margin: 5px auto 5px auto;
    display: block;
    padding: 10px;
    color: #00ff00;
    border-bottom: 4px solid #00ff00;
}


.profile_password {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    color: #ADB9D8;
    width: 100%;
    height: 60vh;
}

.profile_password h1 {
    margin: 30px 20px;
    width: 100%;
    /* margin: 50px 10px; */
}

.profile_password .row {
    min-width: 300px;
}

.profile_password .row input {
    min-width: 400px;
    font-size: 16pt;
    margin-bottom: 5px;
    margin-top: 10px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ADB9D8;
    color: #ADB9D8;
    text-align: center;
    padding: 5px;
}

.profile_password .row .l {
    margin-bottom: 10px;
    margin-top: 10px;

}

.profile_password .row .s {
    display: flex;
    justify-content: center;
    align-items: center;

}

.profile_password .row .s .btn {
    width: 150px;
    min-width: 150px !important;
    border-radius: 3px;
    margin: auto;
    background-color: #4E567750;
    border: 1px solid #ADB9D8 !important;
}


#p_profile #logininfo {
    width: 45%;
    margin: 20px auto;
    color: #ADB9D8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    /* padding: 20px; */
}

#logininfo a {
    border-radius: 3px;
    background-color: var(--bgcolordark);
    /* border: 1px solid #ADB9D8 !important; */
    color: var(--txtcolorlight);
    min-width: 310px;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    font-size: .9em;
    text-transform: uppercase;
}

#logininfo a:hover {
    background-color: var(--bgcolordarker);
}


.homebtn {
    display: none;
}

/* 
#profile,
#profile:visited,
#profile:hover {
        height: 50px;
        width: 50px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
        user-select: none;
} */

.uname {
    position: absolute;
    color: #ADB9D8;
    right: 120px;
    top: 30px;
}

@media screen and (min-width: 350px) and (max-width:450px) {

    .login_native .logins_head {
        width: 85vw;
        margin: auto;
    }

    #head_logo {
        margin: auto;
        width: 320px;
    }

    div#foot {
        font-size: 12pt;
    }

    form.login {
        padding: 25px;
        width: 85vw;
        min-width: 200px;
        font-size: 12pt;
    }

    form.login input.txt {
        font-size: 13pt;
    }

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


    form.login .btn {
        font-size: 12pt;
        min-width: 210px;
    }

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

    .resetpasswd {
        font-size: 10pt;
    }

}

.resetpassword {
    margin-top: 40px;
    min-height: 45vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    border: 1px solid #4E5677;
    border-radius: 30px;
    padding: 30px;
}

.resetpassword .row {
    width: 100%;
}

.resetpassword .row input {
    width: 100%;
    background-color: #35415E;
    border: none;
    padding: 10px;
    color: #fff;
    font-weight: 600;
}

.r_text {
    margin: 10px 0px;
}

.resetpassword .row .btn {
    width: 90% !important;
    background-color: #2DA478;
    font-weight: 500;
}

@media screen and (min-width: 1500px) and (max-width: 1750px) {

    div#head .menu0,
    div#head .menusel0 {
        margin-right: 0;
        padding: 10px 12px;
        font-size: 13pt;
    }

    div#head_menu {
        padding-left: 16%;

    }
}

@media screen and (min-width: 1281px) and (max-width: 1500px) {
    div#contentb {
        width: 95%;

    }

    div#head .menu0,
    div#head .menusel0 {
        padding: 5px 5px;
        font-size: 11pt;
    }

    div#head_menu {
        padding-left: 13%;

    }
}

@media screen and (max-width: 1280px) {

    div#contentb {
        width: 98%;
    }

    div#head .menu0,
    div#head .menusel0 {
        padding: 5px 5px;
        font-size: 10pt;
    }


    div#head_menu {
        padding-left: 15%;

    }
}