/* ------------------ temp ------------------ */

.temp {
    border: 3px dashed #2C78FB;
    border-radius: 30px;
    display: inline-block;
    width: 50%;
    height: 500px;
    color: #2C78FB;
    font-size: 100px;
    margin: 10px;
    position: relative;
}

.temp .text {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}

.tabbed-list-card {
    border-radius: 10px;
    margin: 5px 10px 0px 10px;
    text-align: left;
    width: 50%;
    display: inline-block;
}

.tabbed-list-card .primary {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 40%);
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
}

.tabbed-list-card .type-cont {
    padding: 5px 10px;
    border-radius: 10px;
    color: white;
    display: inline-block;
}

.tabbed-list-card.engagement .type-cont {
    background: #555;
}

.tabbed-list-card.person .type-cont {
    background: orange;
}

.tabbed-list-card.campaign .type-cont {
    background: purple;
}

.tabbed-list-card.designSprint .type-cont {
    background: #29CE29;
}

.tabbed-list-card.tePlan .type-cont {
    background: #2C78FB;
}

.tabbed-list-card.result .type-cont {
    background: #E03AC0; /* pink */
}

.tabbed-list-card .title {
    padding: 0px 10px;
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

.tabbed-list-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    /*table-layout: fixed;*/
    text-align: center;
}

.tabbed-list-card table td {
    border: 1px solid #555;
    padding: 2px;
}

.tabbed-list-card table tr.header {
    font-style: italic;
    color: #555;
    
}

.tabbed-list-card .tabs {
    text-align: right;
    padding: 0px 10px;
}

.tabbed-list-card .tabs .tab {
    display: inline-block;
    /*border: 1px solid black;*/
    border-radius: 0px 0px 5px 5px;
    padding: 3px 5px;
    font-size: 11px;
    color: white;
    margin-left: 5px;
    cursor: pointer;
    opacity: 40%;
}

.tabbed-list-card .tabs .tab.active {
    opacity: 100%;
    box-shadow: 0 0px 6px 0 rgb(0 0 0 / 40%);
}

.tabbed-list-card .tabs .tab.engagement {
    background: #555;
}

.tabbed-list-card .tabs .tab.campaign {
    background: purple;
}

.tabbed-list-card .tabs .tab.designSprint {
    background: #29CE29;
}

.tabbed-list-card .tabs .tab.tePlan {
    background: #2C78FB;
}




/* ------------------ END TEMP ------------------ */

body {
    font-family: "Museo Slab 300";
}

div,
input,
textarea {
    box-sizing: border-box;
}

.main {
    text-align: center;
}

.page-title {
    font-family: "Museo Slab 100";
    font-size: 50px;
    padding: 30px;
}

.btn-pack {
    display: inline-block;
    margin: 10px 50px;
}

.btn-pack .btn {
    display: inline-block;
    padding: 10px;
    margin: 0px;
    background: white;
    cursor: pointer;
}

.btn-pack.request-type .btn {
    border: 1px solid #2C78FB; /* blue */
    color: #2C78FB;
}

.btn-pack.articles .btn {
    border: 1px solid orange;
    color: orange;
}

.btn-pack .btn.left {
    border-radius: 20px 0px 0px 20px;
}

.btn-pack .btn.right {
    border-radius: 0px 20px 20px 0px;
}

.btn-pack.articles .btn.active {
    border: 1px solid orange;
    color: white;
    background: orange;
}

.btn-pack.request-type .btn.active {
    border: 1px solid #2C78FB;
    color: white;
    background: #2C78FB;
}

.filters-wrapper[data-function='limit'] {
    width: 100%;
    background: orange;
    padding: 5px;
}

.filters-wrapper[data-function='compare'] {
    width: 100%;
    background: #2C78FB;
    padding: 5px;
    margin-bottom: 5px;
}

.filters-wrapper[data-function='limit'] .placeholder {
    color: orange;
    cursor: pointer;
    padding:  10px;
}

.filters-wrapper[data-function='compare'] .placeholder {
    color: #2C78FB;
    cursor: pointer;
    padding:  10px;
}

.filters {
    border-radius: 10px;
    margin: 0px;
    color: orange;
    background: white;
    width:  50%;
    display:  inline-block;
}

.list-card {
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    margin: 5px 10px 0px 10px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 40%);
    text-align: left;
    width: 50%;
    display: inline-block;
}

.list-card .type-cont {
    padding: 5px 10px;
    border-radius: 10px;
    color: white;
    display: inline-block;
}

.list-card.engagement .type-cont {
    background: #555;
}

.list-card.person .type-cont {
    background: orange;
}

.list-card.campaign .type-cont {
    background: purple;
}

.list-card.designSprint .type-cont {
    background: #29CE29;
}

.list-card.tePlan .type-cont {
    background: #2C78FB;
}

.list-card.result .type-cont {
    background: #E03AC0; /* pink */
}

.list-card .title {
    padding: 0px 10px;
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

.list-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    /*table-layout: fixed;*/
    text-align: center;
}

.list-card table td {
    border: 1px solid #555;
    padding: 2px;
}

.list-card table tr.header {
    font-style: italic;
    color: #555;
    
}

.no-results {
    background: red;
    color: white;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.filters .filter-menu {    
    padding: 10px;
}

.tree {
    text-align: left;
}

.filter {
    padding: 3px;
    margin: 2px;
    border-radius: 4px;
}

.parent-filter {
    color: orange;
    border: 1px solid orange;
}

.parent-filter .self {
    cursor: pointer;
    display: flex;
}

.parent-filter .self .name {
    flex-grow: 1;
    display: inline-block;
    padding: 3px;
}

.filter .selector {
    display: inline-block;
    text-align: right;
    padding: 2px 1px 0px 1px;
    font-size: 19px;
}

.children {
    padding-left: 40px;
}

.child-filter {
    color: #2C78FB;
    border: 1px solid #2C78FB;
    margin: 2px;
    cursor: pointer;
    display: flex;
}

.child-filter .name {
    flex-grow: 1;
    display: inline-block;
    padding: 3px;
}

.applied-filters {
    text-align: left;
}

.applied-filter {
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
    display: inline-block;
    margin: 10px;
    background: #C32828;
    cursor: pointer;
}

.tree-chapter {
    border: 1px solid #29CE29;
    border-radius: 4px;
    padding: 3px;
}

.tree-chapter[data-chapter='local'] {
    margin-bottom: 30px;
}

.tree .title {
    color: #29CE29;
    font-style: italic;
    padding: 5px;
    cursor: pointer;
}


































