
/*

	Checklist Default Colors:
	Progress Bar Color: #273469; (39,52,105)
	Background Color: #1EAE4E;
	Text Color: #ffffff;
	Checkbox Background Color: #2D3330; (45,51,48)
	Checkbox Tick Color: #FFE344; (255,227,68)

 */

head, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Rubik, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    /*min-height: 100vh;*/
    color: #f5f5f5;
    background: #1EAE4E;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    text-decoration: none;
    color: #273469;
    border-bottom: 1px solid #273469;
    text-shadow: 0 1px 0 #1EAE4E;
}

a:hover {
    border-bottom: 2px solid #273469;
    text-decoration: none;
    color: #273469;
    text-shadow: 0 1px 0 #1EAE4E;
}


header {
    display: block;
}

header .title {
    font-size: 3.5em;
    /* text-align: center; */
    font-weight: 500;
    /* margin: 0.5em 4em 0.075em; */
}

header .sub-title {
    /* font-size: 2.5em; */
    /* font-weight: 300; */
    /* text-align: center; */
    /* margin: 0.2em 4em 0.775em; */
}

.wrapper .progress,
.wrapper .progress .progress-bar,
.wrapper .progress .progress-border {
    width: 100%;
}

.wrapper .progress .progress-bar,
.wrapper .progress .progress-border
.wrapper .progress .progress-count
.wrapper .progress .progress-reset {
    display: block;
}

.wrapper .progress {
    background-color: transparent;
    height: auto;
    display: block;
    font-size: inherit;
    margin-bottom: 5px;
    text-align: center;
    border-radius: 0;
}

.wrapper .progress .progress-count {
    font-family: Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 1.15em;
    letter-spacing: .05em
}

.wrapper .progress .progress-reset {
    font-family: inherit;
    line-height: 37px;
    display: inline-block;
    height: 37px;
    margin-left: .75em;
    padding: 0 14px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    letter-spacing: .025em;
    color: #ffffff;
    border: 1px solid #2D3330;
    border-radius: 3px;
    outline: 0;
    background: rgba(45,51,48, .75);
}

.wrapper .progress .progress-reset:focus, .progress-reset:hover {
    -webkit-box-shadow: 0 7px 14px rgb(45 51 48 / 16%), 0 3px 6px rgb(45 51 48 / 20%);
    box-shadow: 0 7px 14px rgb(45 51 48 / 16%), 0 3px 6px rgb(45 51 48 / 20%);
}

.wrapper .progress .progress-reset:active {
    -webkit-box-shadow: 0 4px 6px rgba(45,51,48, .11), 0 1px 3px rgba(45,51,48, .1);
    box-shadow: 0 4px 6px rgba(45,51,48, .11), 0 1px 3px rgba(45,51,48, .1)
}

.wrapper .progress .progress-border {
    border-bottom: 3px solid rgba(45,51,48, 0.9);
    width: 100%;
    display: block;
}

.progress-reset-pressed {
    -webkit-animation: wiggle 350ms ease alternate;
    animation: wiggle 350ms ease alternate
}

.progress-border {
    display: block;
    margin-top: 12px;
    border-bottom: 3px solid #273469;
    -webkit-box-shadow: 0 20px 20px -20px rgba(45,51,48, .65);
    box-shadow: 0 20px 20px -20px rgba(45,51,48, .65)
}

.progress-bar {
    display: block;
    height: 17px;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    background: #273469;
    opacity: 0.7;
}

.container {
    max-width: 1550px;
}

.container .checklist {
    min-width: 350px;
    max-width: 400px;
    margin: 15px 15px 0;
}

.card-deck .card {
    flex-shrink: 0 !important;
    flex-grow: 1 !important;
    flex-basis: auto !important;
    background: transparent;
    border: 0;
}

.container .checklist .checklist-container {
    padding: 0;
}

.checklist-title {
    font-size: 2.125em;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}

.checklist-title-border {
    display: block;
    width: 350px;
    margin-top: 8px;
    border-bottom: 2px solid rgba(39,52,105,0.7);
    -webkit-box-shadow: 0 15px 15px -15px rgba(45,51,48, .5);
    box-shadow: 0 15px 15px -15px rgba(45,51,48, .5)
}

.checklist-percentage-border {
    display: block;
    width: 350px;
    height: 6px;
    margin-bottom: 8px;
    -webkit-transition: -webkit-transform 350ms ease;
    transition: -webkit-transform 350ms ease;
    transition: transform 350ms ease;
    transition: transform 350ms ease, -webkit-transform 350ms ease;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    background: #273469;
    opacity: 0.9;
}

.checklist-item {
    display: block;
    margin: 15px 0;
    position: relative;
}

.checkbox {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: background 150ms ease;
    transition: background 150ms ease;
    border: 2px solid #2D3330;
    border-radius: 3px;
}

.checkbox:hover {
    background: rgba(45,51,48,0.5);
}

.checkbox:after {
    position: absolute;
    top: 1px;
    left: 5px;
    width: 6px;
    height: 12px;
    content: '';
    -webkit-transition: all 325ms ease;
    transition: all 325ms ease;
    -webkit-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
    opacity: 0;
    border-right: 2px solid #FFE344;
    border-bottom: 2px solid #FFE344;
}

.checklist-item-title {
    font-size: 1.125em;
    line-height: 1.25;
    margin-left: 8px;
    cursor: pointer;
    -webkit-transition: color 250ms ease;
    transition: color 250ms ease;
    vertical-align: top;
    width: 310px;
    display: inline-block;
}

.checklist-item-title:hover {
    color: rgba(255, 255, 255, 0.8);
}

input[type=checkbox] {
    display: none
}

input[type=checkbox]:checked~.checkbox {
    -webkit-animation: wiggle .4s ease;
    animation: wiggle .4s ease;
    border-color: transparent;
    background: #2D3330;
}

input[type=checkbox]:checked~.checkbox:after {
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity: 1
}

input[type=checkbox]:checked~.checklist-item-title {
    -webkit-transition: all 175ms ease;
    transition: all 175ms ease;
    text-decoration: line-through;
    opacity: .5
}

.checklist-item-expand {
    float: right;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 0;
    outline: 0;
    background: 0 0;
    position: absolute;
    top: 4px;
    right: 0;
}

.line {
    display: block;
    width: 20px;
    -webkit-transition: all .3s cubic-bezier(.76, -.26, .15, 1.32);
    transition: all .3s cubic-bezier(.76, -.26, .15, 1.32);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    outline: 1px solid transparent;
    background: #2D3330;
}

.line:after {
    display: block;
    width: 20px;
    height: 4px;
    content: '';
    -webkit-transition: all .3s cubic-bezier(.76, -.26, .15, 1.32);
    transition: all .3s cubic-bezier(.76, -.26, .15, 1.32);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    outline: 1px solid transparent;
    background: #2D3330;
}

.closed.line {
    top: 45%;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: #2D3330
}

.closed.line:after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    background: 0 0
}

.info-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.063em;
    line-height: 1.4;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height .3s ease-in;
    transition: max-height .3s ease-in
}

.info-container ul {
    padding-left: 26px;
    list-style-type: disc
}

.info-container li {
    margin-top: .25em
}

.info-container .info {
    margin-top: .55em;
    margin-bottom: .2em;
    padding-bottom: .75em;
    border-bottom: 1px solid rgba(45,51,48, 0.8);
}

.checklist .open .info-container {
    /*max-height: 2500px;*/
    max-height: 100%;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

/*.social {
    font-size: 1.25em;
    margin-top: 1.75em;
    text-align: center;
    -ms-flex-item-align: center;
    align-self: center
}

.social-buttons {
    display: block;
    margin-top: 12px;
    -webkit-transition: all .4s;
    transition: all .4s;
    background: 0 0
}

.social-buttons a {
    display: inline-block;
    width: 37px;
    height: 37px;
    cursor: pointer;
    border: 2px solid #e6e6e6;
    border-radius: 3px
}

.social-buttons a.social-buttons__twitter {
    -webkit-transition: border .2s ease;
    transition: border .2s ease;
    background: url(../share-buttons.svg) no-repeat 5px 6px
}

.social-buttons a.social-buttons__twitter:hover {
    border: 2px dotted #bf6bfe
}

.social-buttons a.social-buttons__facebook {
    margin: 0 7px;
    -webkit-transition: border .2s ease;
    transition: border .2s ease;
    background: url(../share-buttons.svg) no-repeat -27px 6px
}

.social-buttons a.social-buttons__facebook:hover {
    border: 2px dotted #bf6bfe
}*/

.footer-wrapper footer {
    font-weight: 300;
    margin-top: 1.25em;
    padding: .85em 1.85em;
    text-align: center;
    border-top: 1px solid #273469;
    -ms-flex-item-align: center;
    align-self: center;
}

/*footer span {
    font-size: 1.45em;
    font-weight: 500;
    padding: 0 .175em;
    vertical-align: middle;
    color: #bf6bfe
}*/

.footer-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.footer-wrapper footer a {
    margin-left: 10px;
    margin-right: 10px;
}

.checklist-item-expand:focus {
    outline: none !important;
}

button:focus {
    outline: none !important;

}

/* Wiggle Animation */
@-webkit-keyframes wiggle {
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    30% {
        -webkit-transform: scale(1.25, .75);
        transform: scale(1.25, .75)
    }
    40% {
        -webkit-transform: scale(.75, 1.25);
        transform: scale(.75, 1.25)
    }
    50% {
        -webkit-transform: scale(1.15, .85);
        transform: scale(1.15, .85)
    }
    65% {
        -webkit-transform: scale(.95, 1.05);
        transform: scale(.95, 1.05)
    }
    75% {
        -webkit-transform: scale(1.05, .95);
        transform: scale(1.05, .95)
    }
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@keyframes wiggle {
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    30% {
        -webkit-transform: scale(1.25, .75);
        transform: scale(1.25, .75)
    }
    40% {
        -webkit-transform: scale(.75, 1.25);
        transform: scale(.75, 1.25)
    }
    50% {
        -webkit-transform: scale(1.15, .85);
        transform: scale(1.15, .85)
    }
    65% {
        -webkit-transform: scale(.95, 1.05);
        transform: scale(.95, 1.05)
    }
    75% {
        -webkit-transform: scale(1.05, .95);
        transform: scale(1.05, .95)
    }
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}
/* End Wiggle Animation */

.sub-title iframe.ql-video {
    /*width: 75%;*/
    /*height: 350px;*/
    width: 640px;
    height: 360px;
}

.info-container iframe.ql-video {
    width: 100%;
    height: 200px;
}

.powered-by-bottom {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9000000;
}

.powered-by-bottom a img {
    width: 150px;
}

/* Media Queries */

@media (min-width: 1366px) {
    .card-deck .card {
        flex-basis: 30% !important;
    }

    .container .checklist {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1366px) {
    .card-deck .card {
        flex-basis: 30% !important;
    }

    .container .checklist {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1200px) {
    .container .card-deck {
        justify-content: space-around;
        margin: 0 auto;
    }

    .container .checklist {
        min-width: auto;
        max-width: 100%;
    }

    .container .card {
        min-width: 350px;
        max-width: 400px;
        flex-basis: auto !important;
    }
}


@media (max-width: 580px) {

    header .title {
        margin: 0.5em 20px 0.075em;
    }

    .container .card-deck {
        flex-flow: row wrap;
    }

}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    .container .card {
        min-width: 280px;
        max-width: 300px;
        flex-basis: auto !important;
    }

    .container .checklist .checklist-title-border {
        width: 280px;
    }

    .container .checklist-percentage-border {
        width: 280px;
    }

    .checklist-item-title {
        width: 192px;
        display: inline-block;
    }

    .sub-title iframe.ql-video {
        width: 100%;
        height: 210px;
    }

}

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

    .container .card {
        min-width: 280px;
        max-width: 300px;
        flex-basis: auto !important;
    }

    .container .checklist .checklist-title-border {
        width: 280px;
    }

    .container .checklist-percentage-border {
        width: 280px;
    }

    .checklist-item-title {
        width: 192px;
        display: inline-block;
    }

    .sub-title iframe.ql-video {
        width: 100%;
        height: 210px;
    }

}

/* End Media Queries */
