* {
    box-sizing: border-box;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
}

html, body {
    height: 100%;
}

.wrapper {
    position: relative;
    min-height: 100%;
}

p {
    margin-top: 4px;
    margin-bottom: 2px;
}

.page-content {
    width: 100%;
    background-color: white;
    padding: 10px 25px 220px;
    z-index: 10;
    min-height: 700px;
    display: table;
}

.site-logo img {
    cursor: pointer;
}

.page-head {
    /*background-color: blueviolet;*/
    color: white;
    margin-bottom: 20px;
}

.page-head a {
    color: white;
}

.page-head ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

.page-head li {
    float: left;
}

.page-head li a, .dropbtn {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
.page-head li a:hover, .dropdown:hover .dropbtn {
    background-color: #111;
}

.left {
    float: left;
}

.right {
    float: right;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-left {
    text-align: left;
}

.page-head .active {
    background-color: #4CAF50;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #8042a8;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;

    border-bottom-color: #333;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    -webkit-transition: transform 4s; /* For Safari 3.1 to 6.0 */
    transition: transform 2s;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}

.page-footer {
    z-index: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 120px;
}

.foot-bubbles {
    position: absolute;
    left: 0;
    bottom: 65px;
    right: 0;
    background-image: url("/media/img/foot.png");
    background-size: contain;
    height: 150px;
}

.foot-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #6f6f6f;
    border-top-color: #333333;
    border-top-width: 1px;
    border-top-style: solid;
    padding-right: 20px;

    color: white;
    font-weight: 300;
    font-family: "Verdana";
    text-align: right;
    vertical-align: middle;
    height: 60px;
}

.foot-content a {
    color: white;

}

.foot-content a:hover {
    color: #1a1a1b;
}

.account-info {
    margin-top: 10px;
    margin-right: 20px;
    float: right;
    color: #1a1a1b;

}

.account-info img {
    width: 60px;
    border-radius: 30px;
    vertical-align: middle;
}

.account-info span {
    line-height: 60px;
    font-size: 22px;
    margin-right: 30px;
}

.page-title {
    font-size: 24px;
    color: #1a1a1b;
    margin-bottom: 10px;
}

.section-title {
    font-size: 18px;
    color: #1a1a1b;
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

/****************************
    Project BT style
*****************************/
.bt-tpl-container {
    display: block;
    margin-bottom: 2px;
    cursor: pointer;
}

.bt-tpl-container.left {
    float: left;
    margin-right: 5px;
}

.bt-tpl-container.right {
    float: right;
    margin-left: 5px;
}

.bt-tpl-container-block-green {
    text-align: center;
    padding: 5px;
    background-color: #4CAF50;
    border-radius: 20px;
}

.bt-tpl-container-block-blue {
    text-align: center;
    padding: 5px;
    background-color: #2c4caf;
    border-radius: 20px;
}

.bt-tpl-container-block-red {
    text-align: center;
    padding: 5px;
    background-color: #780002;
    border-radius: 20px;
}

.bt-tpl-link {
    padding-right: 25px;
    padding-left: 25px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.no-wrap {
    white-space: nowrap;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.center {
    align-content: center;
    text-align: center;
}

.bold {
    font-weight: bold;
}

/*
    Task mini bt
 */
.mini-txt-bt {
    font-size: 20px;
    border: solid #e1e1dd 1px;
    border-radius: 5px;
    padding-left: 3px;
    padding-right: 3px;
    cursor: pointer;
}

.mini-txt-bt:hover {
    background-color: #dddddd;
}

.mini-txt-bt.active {
    background-color: #dd7768;
}

.bt-back {
    margin-top: 2px;
    margin-right: 10px;
    float: left;
    display: block;
    width: 26px;
    height: 26px;
    background: url("/media/img/back.png") 100% 100% no-repeat;
    background-size: cover;
}

.bt-back:hover {
    margin-top: 2px;
    margin-right: 10px;
    float: left;
    display: block;
    width: 26px;
    height: 26px;
    background: url("/media/img/back2.png") 100% 100% no-repeat;
    background-size: cover;
    cursor: pointer;
}

.simple-select {
    border-radius: 5px;
    padding: 2px;
    margin: 2px;
}

.no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome and Opera */
}

.simple-table {
    margin-top: 5px;
    width: 100%;
    border-collapse: collapse;
    border: 2px solid lightgray;
}

.simple-table td {
    border: 1px solid lightgray;
    padding: 5px;
}

.bt-selector-list-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bt-selector-list-item {
    min-width: 140px;
    min-height: 40px;
    margin: 4px;
    padding: 4px;
    border: solid 1px gray;
    flex-grow: 1;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.bt-selector-list-item:hover {
    background-color: #a9a9a9;
}

.bt-selector-list-item.selected {
    background-color: #79a960;
}

.bt-selector-list-item.fixed {
    background-color: #626fa9;
}

.bt-selector-list-item.inactive {
    background-color: #a9736d;
    cursor: not-allowed;
}

.pointer {
    cursor: pointer;
}

.simple-bt-border {
    border: solid 1px grey;
    border-radius: 20px;

}

.simple-bt-border:hover {
    background-color: lightgray;
}

.flex-rows {
    display: flex;
    flex-direction: row;
}
.flex-rows-space-between {
    justify-content: space-between;
}