﻿body,
#form1 {
    margin: 0 !important;
}


/* Action Plan Tasks */

.task-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-perspective: 922px;
    perspective: 922px;
    -webkit-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
}

.task {
    width: 295px;
    min-height: 210px;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--first-color);
    box-shadow: 3px 4px 11px 0 rgba(12, 12, 12, 0.86);
    -webkit-transition: box-shadow 175ms ease, -webkit-transform 175ms ease;
    transition: box-shadow 175ms ease, -webkit-transform 175ms ease;
    transition: box-shadow 175ms ease, transform 175ms ease;
    transition: box-shadow 175ms ease, transform 175ms ease, -webkit-transform 175ms ease;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.task:hover {
    box-shadow: 10px 14px 20px 0 rgba(12, 12, 12, 0.86);
    -webkit-transform: translate3d(0px, 0px, 19px);
    transform: translate3d(0px, 0px, 19px);
    cursor: pointer;
}

.ap-sub {
    margin-top: 0px;
    margin-bottom: 30px;
    color: #0c0c0c;
    font-size: 2rem;
    font-weight: 500;
}

.task-detail-label {
    color: #0c0c0c;
    font-weight: 800;
}

.task-inner {
    height: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
}

.task-inner p {
    color: #0c0c0c;
    line-height: 1.5rem;
}


/* The Modal (background) */

.taskmodal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 50px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.taskmodal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 16px;
    border: 10px solid var(--first-color);
    max-height: 90%;
    overflow-y: scroll;
}


/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}


/* The Close Button */

.closetask {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closetask:hover,
.closetask:focus {
    color: #666;
    text-decoration: none;
    cursor: pointer;
}

.taskmodal-header {
    padding: 16px 16px 0px 16px;
}

.taskmodal-header h2 {
    margin-bottom: 0px;
}

.taskmodal-body {
    padding: 2px 16px;
}

.taskmodal-footer {
    padding: 2px 16px;
}


/* Display */

.clear-both {
    clear: both;
}

.hidden,
.hiddenstuff {
    display: none;
}

.show,
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}


/* .hide-desktop {
    display: none;
}

.hide-tablet {
    display: block;
}

.hide-mobile {
    display: block;
} */

.question-headrow {
    background-color: black;
    font-weight: bold;
    color: white;
    margin-top: 12px;
}

.question-row:nth-child(odd) {
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.question-row:nth-child(even) {
    background: #efefef;
    border-bottom: 1px solid #ccc;
}


/* @media only screen and (max-width: 768px) {
    .hide-desktop {
        display: block;
    }
    .hide-tablet {
        display: none;
    }
    .hide-mobile {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .hide-desktop {
        display: block;
    }
    .hide-tablet {
        display: block;
    }
    .hide-mobile {
        display: none;
    }
} */


/* Position */

.relative {
    position: relative;
}

.center {
    display: block;
    margin: auto;
}

.absolute-center,
.fixed-center {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.absolute-center {
    position: absolute;
}

.fixed-center {
    position: fixed;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clearboth {
    clear: both
}


/* Width */

.width-25 {
    width: 25%;
}

.width-33 {
    width: 33%;
}

.width-50 {
    width: 50%;
}

.width-66 {
    width: 66%;
}

.width-75 {
    width: 75%;
}

.width-100 {
    max-width: 100%;
    width: 100% !important;
}

.width-s {
    max-width: 500px;
    margin: auto;
}

.width-m {
    max-width: 850px;
    margin: auto;
}

.width-l {
    max-width: 1366px;
    margin: auto;
}


/* Height */

.height-100 {
    max-height: 100%;
    height: 100%;
}

.height-50 {
    height: 50%;
}


/* Margin */

.margin-0 {
    margin: 0;
}

.margin-xs {
    margin: 8px;
}

.margin-s {
    margin: 12px;
}

.margin {
    margin: 16px;
}

.margin-m {
    margin: 32px;
}

.margin-l {
    margin: 48px;
}

.margin-xl {
    margin: 64px
}

.margin-xs-top {
    margin-top: 8px;
}

.margin-s-top {
    margin-top: 12px;
}

.margin-top {
    margin-top: 16px;
}

.margin-m-top {
    margin-top: 32px;
}

.margin-l-top {
    margin-top: 48px;
}

.margin-xl-top {
    margin-top: 64px
}

.margin-xs-left {
    margin-left: 8px;
}

.margin-s-left {
    margin-left: 12px;
}

.margin-left {
    margin-left: 16px;
}

.margin-m-left {
    margin-left: 32px;
}

.margin-l-left {
    margin-left: 48px;
}

.margin-xl-left {
    margin-left: 64px
}

.margin-xs-right {
    margin-right: 8px;
}

.margin-s-right {
    margin-right: 12px;
}

.margin-right {
    margin-right: 16px;
}

.margin-m-right {
    margin-right: 32px;
}

.margin-l-right {
    margin-right: 48px;
}

.margin-xl-right {
    margin-right: 64px
}

.margin-xs-bottom {
    margin-bottom: 8px;
}

.margin-s-bottom {
    margin-bottom: 12px;
}

.margin-bottom {
    margin-bottom: 16px;
}

.margin-m-bottom {
    margin-bottom: 32px;
}

.margin-l-bottom {
    margin-bottom: 48px;
}

.margin-xl-bottom {
    margin-bottom: 64px
}


/* Padding */

.padding-0 {
    padding: 0;
}

.padding-xs {
    padding: 8px;
}

.padding-s {
    padding: 12px;
}

.padding {
    padding: 16px;
}

.padding-m {
    padding: 32px;
}

.padding-l {
    padding: 48px;
}

.padding-xl {
    padding: 64px;
}

.padding-xs-top {
    padding-top: 8px;
}

.padding-s-top {
    padding-top: 12px;
}

.padding-top {
    padding-top: 16px;
}

.padding-m-top {
    padding-top: 32px;
}

.padding-l-top {
    padding-top: 48px;
}

.padding-xl-top {
    padding-top: 64px
}

.padding-xs-left {
    padding-left: 8px;
}

.padding-s-left {
    padding-left: 12px;
}

.padding-left {
    padding-left: 16px;
}

.padding-m-left {
    padding-left: 32px;
}

.padding-l-left {
    padding-left: 48px;
}

.padding-xl-left {
    padding-left: 64px
}

.padding-xs-right {
    padding-right: 8px;
}

.padding-s-right {
    padding-right: 12px;
}

.padding-right {
    padding-right: 16px;
}

.padding-m-right {
    padding-right: 32px;
}

.padding-l-right {
    padding-right: 48px;
}

.padding-xl-right {
    padding-right: 64px
}

.padding-xs-bottom {
    padding-bottom: 8px;
}

.padding-s-bottom {
    padding-bottom: 12px;
}

.padding-bottom {
    padding-bottom: 16px;
}

.padding-m-bottom {
    padding-bottom: 32px;
}

.padding-l-bottom {
    padding-bottom: 48px;
}

.padding-xl-bottom {
    padding-bottom: 64px
}


/* Row */

.row::after {
    content: "";
    clear: both;
    display: table;
}


/* Column */

[class*="col-"] {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Column - Desktop */

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}


/* Colunm - Tablet */

@media only screen and (max-width: 768px) {
    .col-s-1 {
        width: 8.33%;
    }
    .col-s-2 {
        width: 16.66%;
    }
    .col-s-3 {
        width: 25%;
    }
    .col-s-4 {
        width: 33.33%;
    }
    .col-s-5 {
        width: 41.66%;
    }
    .col-s-6 {
        width: 50%;
    }
    .col-s-7 {
        width: 58.33%;
    }
    .col-s-8 {
        width: 66.66%;
    }
    .col-s-9 {
        width: 75%;
    }
    .col-s-10 {
        width: 83.33%;
    }
    .col-s-11 {
        width: 91.66%;
    }
    .col-s-12 {
        width: 100%;
    }
}


/* Colunm - Mobile */

@media only screen and (max-width: 600px) {
    [class*="col-"] {
        width: 100%;
    }
}