/** Custom styles for DRP */

/** Hidden */

.hidden {
    display: none;
}

.active {
    display: block;
}

/** red-border */
.red-border {
    box-shadow: 0 0 10px red;
}

/** Paragraph Styles */

.retrieve p {
    font-size: 17px;
}

.initiative p.drp-subtitle {
    margin: 0;
    font-family: "museo-sans", sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 3.0rem;
    letter-spacing: 0.005rem;
}

/** Flex */

.drp-flex {
    align-items: center;
    display: flex;
}

.initiative .drp-flex p {
    margin: 0;
}

.drp-flex.justify-space-between {
	justify-content: space-between;
}

.drp-flex.justify-space-around {
    justify-content: space-around;
}

/** Bottom Border */

.drp-border-bottom {
    border-bottom: 1px solid black;
}

.drp-border-top {
    border-top: 1px solid black;
}

.border-gray-thin {
    border-color: #ececec;
    border-width: 1px;
}

/** Padding Margin */

.padding-margin-bottom {
    padding-bottom: 1.5rem;
    margin-bottom: 3.5rem;
}

.padding-top {
    padding-top: 3rem;
}

.margin-top {
    margin-top: 3rem;
}

/** Button styles */

.initiative .drp-button {
	color: #439AD0;
	font-size: 15px;
	line-height: 22px;
	padding: 1rem 2rem;
	text-align: center;
	border: 2px solid #439AD0;
    border-radius: 32.5px;
    font-weight: 700 !important;
    cursor: pointer;
    max-width: 180px;
    width: 100%;
    transition-duration: .5s;
    display: block;
}

.drp-launch-retrieve-popup {
    margin-left: 1rem;
}

.initiative .drp-button.small {
    font-size: 13px;
    border-radius: 25px;
    padding: .5rem 1rem;
    width: auto;
}

.initiative .drp-button.small:hover {
    color: white;
    text-decoration: none;
}

.initiative .drp-button:hover {
    background-color: #439AD0;
    color: white;
    text-decoration: none;
}

.initiative .main-cta.blue-bg .drp-button {
    /* padding: 1.5rem 4rem; */
    padding: 0.9rem 4rem;
    font-size: 18px;
    width: auto;
    color: white;
    border-color: white;
    text-decoration: none;
}

.initiative .main-cta.blue-bg .drp-button:hover {
    color: #439AD0;
    background-color: white;
}

.main-cta .takeaways-buttons {
    margin: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
}

.initiative .main-cta.blue-bg img {
    height: 250px;
}

.initiative .main-cta.blue-bg .drp-button {
    max-width: 100%;
}

.initiative .main-cta.orange-bg .drp-button {
    max-width: 380px;
    width: 100%;
    padding: 2rem;
    position: relative;
    border-color: white;
    color: white;
}

.initiative .main-cta.orange-bg .drp-button:hover {
    background-color: white;
    color: #EC9241;
}

.initiative .main-cta.orange-bg .drp-button:hover .gg-arrow-right::before {
    background: #EC9241;
}

.gg-arrow-right {
    box-sizing: border-box;
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}
.gg-arrow-right::after,
.gg-arrow-right::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    right: 3px;
}
.gg-arrow-right::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    bottom: 7px;
}
.gg-arrow-right::before {
    width: 16px;
    height: 2px;
    bottom: 10px;
    background: white;
    transition-duration: .5s;
}

.drp-diagnostic .drp-button.print-button {
    margin-top: 0;
    padding: 1.2rem 4rem;
    max-width: 180px;
    width: 100%;
}

/** Popup styles */

.drp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
}

.drp-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 5rem;
    color: black;
}

.drp-popup h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.initiative .drp-popup .drp-subtitle {
    margin-bottom: 2rem;
}

.drp-popup input, .drp-diagnostic input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #c7c7c7;
    margin-bottom: 2rem;
    color: black;
    border-radius: 5px;
}

.drp-popup input::placeholder, .drp-diagnostic input::placeholder {
    color: #c7c7c7;
}

.drp-popup .close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    color: #439AD0;
    border-radius: 30px;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    transform: scaleX(1.1);
}

.drp-popup .close:before {
    content: "×";
}

.success, .error {
    margin-top: 2rem;
    font-size: 17px;
}

/** Getting started styles */

.initiative .drp-title {
    display: block;
    color: black;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.initiative .drp-subtitle {
    margin: 0;
    font-family: "museo-sans", sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 3.0rem;
    letter-spacing: 0.005rem;
}

.tabs-block {
    margin: 6rem 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 7px;
    overflow: hidden;
}

.tabs-block .top {
    padding: 5rem;
    color: white;
}

.tabs-block .top h2.drp-title {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    display: block;
}

.initiative .tabs-block .top p {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 4rem;
}

.tabs-holder {
    margin-bottom: -5rem;
    display: flex;
    justify-content: flex-start;
}

.tab {
    opacity: 0.6;
    color: black;
    background-color: white;
    padding: 2rem 4rem;
    margin-right: 1rem;
    border-radius: 7px 7px 0 0;
    cursor: pointer;
    transition-duration: .2s;
}

.tab:hover, .tab.active {
    opacity: 1;
}

.tabs-content-holder {
    padding: 3rem 5rem;
}

.tab-content {
    margin-bottom: 3rem;
}

.tab-content .drp-subtitle {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 4rem;
}

.tabs-content-holder .icon-text-block {
    margin: 4rem 0;
    position: relative;
}

.tabs-content-holder .icon-text-block .drp-title.small {
    font-size: 18px;
    margin: 0;
    margin-bottom: 1rem;
}

.tabs-content-holder .icon-text-block p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.dots-below:after {
    content: '';
    height: 2.6rem;
    border-left: 2px dotted #cbcbcb;
    width: 1px;
    position: absolute;
    left: 3.2rem;
    top: calc(100% + .5rem);
}

/** Icon boxes */

.icon-boxes {
    display: flex;
    justify-content: space-between;
    /* margin: 3rem 0; */
    margin: 3rem -10px;
}

.icon-boxes .box {
    border: 1px solid #dddddd;
    border-radius: 15px;
    padding: 3rem;
    margin: 0 1rem;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;
    flex: 1;
}

.icon-boxes .box h2.drp-title.small {
    font-size: 16px;
    margin-bottom: 0;
}

.icon-boxes .box img {
    height: 100px;
    width: auto;
}

/** Sidebar CTA */

@media all and (min-width: 1200px) {
    .generic__wrap__subnav.wide {
        width: 28%;
    }
}

.sidebar-cta {
    display: block;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    padding: 2rem;
    max-width: 300px;
    transition-duration: 0.2s;
}

.sidebar-cta:hover {
    text-decoration: none;
    transform: translateX(-15px);
}

.sidebar-cta p {
    color: white;
    margin: 0;
}

.sidebar-cta h2.drp-title {
    color: white;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}

.sidebar-cta h2.drp-title .gg-arrow-right {
    position: relative;
    display: inline;
    transform: none;
    top: 0;
    right: 0;
    padding-left: 26px;
}

/** Chapter Styles */

.drp-chapter {
	border: 1px solid #ececec;
	border-radius: 7px;
	background-color: white;
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    transition-duration: .5s;
}

.drp-progress-circle {
    width: 25px;
    margin: 0 1rem;
    display: block;
    box-sizing: border-box;
}

.drp-finished-icon {
    height: auto;
    width: 25px;
    margin: 0 1rem;
}

.drp-finished-icon.hidden, .drp-progress-circle.hidden {
    display: none;
}

.drp-finished-icon img, .circle-progress {
    width: 100%;
    height: auto;
    display: block;
}

.circle-progress-value {
	stroke-width: 18px;
	stroke: #5cb39f;
}
.circle-progress-circle {
	stroke-width: 18px;
}

.drp-chapter.open, .drp-chapter:hover {
    border-color: #439AD0;
}

.drp-chapter-header {
    padding: 2rem 1rem;
    cursor: pointer;
}

.initiative .drp-chapter h2.drp-title.small {
    font-size: 24px;
}

.drp-chapter-body {
    margin: 0 3rem;
}

.drp-title.chapter-number {
	color: #171717;
	font-size: 42px;
    line-height: 50px;
    padding: 0 1rem;
    margin: 0;
}

.drp-chapter-header .summary {
    padding: 0 1rem;
    font-size: 17px;
    flex-grow: 1;
}

.drp-chapter-arrow {
    padding: 0 3rem 0 6rem;
}

.drp-chapter-arrow .inner {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.drp-chapter-arrow.right {
    padding: 0 3rem;
}

.drp-chapter-arrow.right .inner {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.drp-chapter.open .drp-chapter-arrow .inner {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.drp-chapter-body p, .drp-chapter-body li {
	color: black;
	font-size: 17px;
    line-height: 27px;
}

/** Icon text block */

.icon-text-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 2rem;
}

.icon-text-block h2.drp-title.small {
    margin: 0;
    font-weight: 500 !important;
}

.icon-text-block img {
    height: 75px;
    width: auto;
	margin-right: 2rem;
}

/** Activity styles */

.drp-activity-holder {
    margin-top: 6rem;
}

.drp-activity-holder h2.drp-title.small {
    margin-bottom: 2rem;
}

.activity {
    border: 1px solid #ececec;
    margin: 1rem 0;
    padding: 3rem;
    border-radius: 7px;
    transition-duration: .5s;
}

.activity[complete="true"] {
    border-color: #5cb39f;
}

.activity-header {
    margin-bottom: 2rem;
}

.activity h3.drp-title.small {
    margin: 0;
    font-size: 20px;
}

.link-complete-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 270px;
}

.complete-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.complete-block .text {
    font-size: 13px;
    font-weight: 700 !important;
    margin-right: 1rem;
}

.complete-block img {
    height: 20px;
    width: auto;
}

.activity p {
    margin: 0;
    color: #494949;
    font-size: 16px;
    line-height: 20px;
}

/** CTA */

.main-cta {
    display: flex;
    justify-content: space-between;
	width: 100%;
	padding: 5rem;
	border-radius: 23px;
    color: white;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.main-cta .flex-2 {
    flex: 2;
    padding-right: 2rem;
}

.main-cta .flex-1 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-cta .image-bottom-right img {
    position: absolute;
    right: -5rem;
    bottom: -2rem;
    max-width: 300px;
}

.blue-bg {
	background-color: #439AD0;
}

.orange-bg {
	background-color: #EC9241;
}

.main-cta h2.drp-title {
    font-size: 38px;
    color: white;
    margin: 0;
    margin-right: -60px; 
    margin-bottom: 1rem;
    display: block;
}

.main-cta p.drp-subtitle {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 3rem;
}

/** Diagnostic styles */

.drp-diagnostic h2.drp-title {
    font-size: 35px;
}

.drp-diagnostic p.drp-subtitle {
    font-size: 22px;
}

.drp-diagnostic .drp-button {
    padding: 1.5rem 4rem;
    max-width: 300px;
    width: 100%;
    margin-top: 3rem;
}

.drp-button.question-button {
    margin-top: 5rem;
}

.drp-diagnostic .icon-text-block {
    margin-bottom: 1.5rem;
}

.drp-diagnostic .icon-text-block img {
    height: 100px;
}

.questions {
    margin-top: 5rem;
}

.question {
    margin-bottom: 2rem;
}

.question p {
    margin: 0;
    padding-bottom: 1rem;
    font-size: 18px;
    font-weight: 700 !important;
}

.question-dropdown.nice-select {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #c7c7c7;
    margin-bottom: 0;
    color: black;
    border-radius: 5px;
    float: none;
    font-size: 17px;
    line-height: 17px;
    font-weight: 300 !important;
    height: auto;
}

.question-dropdown.nice-select:after {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    position: absolute;
    top: 52%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    right: 2rem;
    content: '';
}

.question-dropdown.nice-select.open .list {
    width: 100%;
}

.question-dropdown.nice-select .option {
    font-weight: 300;
}

.drp-diagnostic .drp-progress-main {
    max-width: 400px;;
}

/** Diagnostic results */

.drp-diagnostic .drp-mail {
    margin: 3rem 0;
}

.drp-diagnostic .drp-mail.hidden {
    display: none;
}

.drp-diagnostic .drp-mail img {
    height: 40px;
    margin-right: 1rem;
}

.drp-mail .drp-title {
    color: #439AD0;
    font-size: 17px;
    margin: 0;
}

.diagnostic-results h2.drp-title {
    font-size: 40px;
}

.diagnostic-results h2.drp-title.med-small {
    font-size: 30px;
    margin: 0;
    margin-bottom: 1rem;
}

.drp-result-domain {
    margin: 6rem 0;
}

.banner {
    display: none;
}

.drp-stage-holder {
    margin: 2rem 0;
}

.drp-diagnostic .drp-result-stage {
    padding: 1.5rem;
    margin: .5rem 0;
    opacity: 0.6;
    overflow: hidden;
    position: relative;
}

.drp-result-stage.active {
    opacity: 1;
    border: 2px solid #439AD0;
    border-radius: 15px 0 15px 15px;
}

.drp-diagnostic .drp-result-stage img {
    height: 60px;
}

.drp-diagnostic .drp-result-stage h3.drp-title.small {
    font-weight: 700 !important;
    font-size: 18px;
    margin: 0;
    margin-bottom: .2rem;
}

.drp-diagnostic .drp-result-stage p {
    font-size: 16px;
    margin: 0;
    line-height: 22px;
}

.drp-diagnostic ,.drp-result-stage .text-block {
    margin-top: .7rem;
}

.drp-result-stage.active .banner {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #439AD0;
    color: white;
    padding: .5rem 1rem;
    font-size: 14px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drp-result-stage.active .banner .arrow-left {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #439AD0;
    position: absolute;
    right: 100%;
}

.drp-result-stage.active .banner .arrow-left.top {
    border-top: 0 solid transparent;
    border-bottom: 20px solid transparent;
    top: 0;
}

.drp-result-stage.active .banner .arrow-left.bottom {
    border-top: 20px solid transparent;
    border-bottom: 0 solid transparent;
    bottom: 0;
}

p.small {
    font-size: 14px;
    font-weight: 400 !important;
}

.drp-results-indicators img {
    height: 20px;
    margin-left: 1rem;
    cursor: pointer;
    transition: .2s;
}

.drp-results-indicators img:hover {
    transform: scale(1.1);
}

.drp-indicator-box {
    padding: 1rem;
    background-color: #f1f1f1;
    margin: .5rem 0;
}

.drp-indicator-box .dot {
    text-decoration: none;
    display: inline-block;
    height: 12px;
    width: 12px;

    background: #f1f1f1;
    border-radius: 10px;
    border: 1px solid #439AD0;

    margin: 0 1.5rem 0 1rem;
    transition-duration: .2s;
    cursor: pointer;
}

.drp-indicator-box.active .dot {
    background-color: #439AD0;
}

.drp-indicator-box.partial .dot {
    background: linear-gradient(to right, #439AD0 50%, #f1f1f1 50%);
}

h2.drp-completed-message {
    margin-bottom: 6rem;
}

h2.drp-completed-message.hidden {
    display: none;
}

.drp-where-to-start {
    display: block;
    padding: 4rem 3rem;
    margin-bottom: 6rem;
}

.drp-where-to-start h2.drp-title {
    margin: 0;
    margin-bottom: 1rem;
}

.drp-where-to-start.hidden {
    display: none;
}

.drp-where-to-start .white-bg {
    background-color: white;
}

.drp-where-to-start .rounded {
    border-radius: 15px !important;
}

.drp-where-to-start .chapter-link {
    margin-top: 2rem;
    padding: 2rem;
    color: black;
    text-decoration: none;
    transition-duration: 0.2s;
}

.drp-where-to-start .chapter-link:hover {
    color: black;
    transform: scale(1.02);
}

.drp-where-to-start .chapter-link h2.drp-title {
    color: black;
    margin: 0;
}

.drp-where-to-start .chapter-link p.chapter-description {
    padding: 0 1rem;
}

p.drp-retake-diagnostic {
    display: block;
    color: #439AD0;
    margin-top: 2rem;
    cursor: pointer;
    font-size: 16px;
}

p.drp-retake-diagnostic:hover {
    text-decoration: underline;
}

/** Use Cases */

.icon-text-block.use_case {
    margin: 3rem 0;
    align-items: flex-start;
    font-size: 16px;
}

.icon-text-block.use_case .drp-title {
    transition-duration: 0.2s;
}

.icon-text-block.use_case:hover .drp-title {
    color: #439ad1;
}

.icon-text-block.use_case, .icon-text-block.use_case:hover {
    text-decoration: none;
    color: black;
}

.icon-text-block.use_case h3.drp-title {
    font-size: 22px;
    margin: 0;
    margin-bottom: .5rem;
}

.icon-text-block.use_case p {
    font-size: 17px;
    font-weight: 300 !important;
    margin: 0;
}

.drp-use-cases .filters__header__txt {
    font-size: 18px;
    font-weight: 700 !important;
}

.drp-use-cases .filters__header__reset button {
    background: none;
    color: #878787;
    border: none;
    cursor: pointer;
    transition-duration: 0.2s;
    font-size: 14px;
}

.drp-use-cases .filters__header__reset button:hover {
    transform: scale(1.05);
}

.drp-use-cases .filters__group__title {
    font-size: 18px;
    font-weight: 700 !important;
}

.drp-use-cases .filters__group, .drp-use-cases .filters__header {
    padding: 1.5rem 0;
}

.drp-use-cases .filters__group .facetwp-facet {
    margin-bottom: 0;
}

.drp-use-cases .filters__group__options {
    font-size: 14px;
}

/* accordion on use case page */
.initiative-template-template-initiative-use-cases .accordion h3 {
    font-weight: 500 !important;
}

.initiative-template-template-initiative-use-cases .accordion .accordion-content h5 {
    margin: 0 0 8px;
    font-weight: 700 !important;
    font-size: 19px;
    padding: 0;
    /* cursor: pointer; */
    /* -webkit-transition: all 0.3s; */
    /* -o-transition: all 0.3s; */
    /* transition: all 0.3s; */
    /* padding-left: 16px; */
    position: relative;
}

/* .initiative-template-template-initiative-use-cases .accordion .accordion-content h5:hover { */
    /* color: #439ad0; */
/* } */

/* .initiative-template-template-initiative-use-cases .accordion .accordion-content h5.expanded:before { */
    /* content: '_' !important; */
    /* left: -9px; */
    /* top: -7px; */
/* } */

/* .initiative-template-template-initiative-use-cases .accordion .accordion-content h5:before {
    content: '+';
    position: absolute;
    top: 0;
    left: -10px;
    font-family: "museo-sans", sans-serif !important;
    font-weight: 500 !important;
} */

.initiative-template-template-initiative-use-cases .accordion .accordion-content p {
    line-height: 140% !important;
    letter-spacing: 0;
    font-size: 16px !important;
    /* padding-left: 16px; */
}

.initiative-template-template-initiative-use-cases .accordion .accordion-content p:first-child {
    display: none;
}
.initiative-template-template-initiative-use-cases .accordion .accordion-content p:lasta-child {
    display: none;
}



/** Adam's Styles */

/* Chapters & Activities */

.drp-title.tiny {
	line-height: 30px;
	font-size: 15px;
	color: #000000;
}

.slider-track ul li {
	display: flex;
    justify-content: center;
    text-align: center;
}

.slider-track img {
	height: 60px;
	width: 60px;
}

h2.drp-title {
	color: black;
	font-size: 28px;
    line-height: 30px;
    font-weight: 700 !important;
}

.drp-progress-main {
	color: #000000;
	font-size: 13px;
	line-height: 15px;
	text-align: right;
}

.line-2 {
	box-sizing: border-box;
	width: 835px;
	border: 1px solid #DEDEDE;
}

.already-started-with {
	color: #000000;
	font-size: 16px;
	line-height: 19px;
}

.indicators {
	color: #000000;
	font-size: 17px;
	line-height: 24px;
}

/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/

.drp-slider {
    margin-top: 6rem;
    position: relative;
}

/** Carousel **/

.slider-track {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 2rem;
}

.slider-track[data-jcarousel="true"] {
    margin-bottom: 8rem;
}

.slider-track ul {
    width: 10000em;
    display: flex;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-track li {
    width: 200px;
    float: left;
    border: 1px solid #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}

.slider-track a {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    width: 100%;
    height: auto !important;
    background-color: #f5f5f5;
    border-radius: 7px;
    margin: 0 .5rem;
    text-decoration: none;
    padding: 4rem 1rem;
    transition-duration: .2s;
}

.slider-track a:hover {
    transform: scale(1.05);
}

.slider-track a h3.drp-title.tiny {
    margin: 0;
    margin-top: 1.5rem;
    font-weight: 500 !important;
    line-height: 23px;
}

/** Carousel Controls **/

.drp-slider-left-arrow,
.drp-slider-right-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition-duration: .2s;
}

.drp-slider-left-arrow:hover,
.drp-slider-right-arrow:hover {
    transform: scale(1.1);
}

.drp-slider-left-arrow {
    left: -45px;
}

.drp-slider-right-arrow {
    right: -45px;
}

/** Carousel Pagination **/

.drp-slider-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.drp-slider-dots a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background: #cfcfcf;
    border-radius: 10px;
    text-indent: -9999px;

    margin-right: 7px;
    transition-duration: .2s;
    cursor: pointer;
}

.drp-slider-dots a.active {
    background: #363636;
    opacity: 1;
}

.drp-slider-dots a:hover {
    transform: scale(1.2);
}

/** Progress bars */

/** main bar */

.drp-progress-main {
    width: 100%;
    max-width: 350px;
    height: 20px;
}

.drp-progress-main .progress-text {
    width: 150px;
    font-weight: 400 !important;
    white-space: nowrap;
}

.drp-progress-main .progress-bar {
    background-color: #ececec;
    height: 10px;
    width: 100%;
    margin-left: 20px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.drp-progress-main .progress-bar .bar-top {
    position: absolute;
    width: 1%;
    height: 100%;
    -webkit-transition: width .5s ease-in-out;
    -moz-transition: width .5s ease-in-out;
    -o-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out;
}

.bar-top.green {
    background-color: #5cb39f;
}

.bar-top.orange {
    background-color: #ec9241;
}

@media all and (max-width: 800px) {

    .tabs-holder {
        display: block;
    }

    .tabs-holder {
        margin: 3rem 0 0 0;
    }

    .tabs-holder .tab {
        margin: 1rem 0;
        border-radius: 15px;
        text-align: center;
    }

    .drp-flex, .icon-text-block, .icon-boxes, .link-complete-block {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .icon-boxes .box {
        margin: 2rem 0;
        max-width: 300px;
    }

    .icon-text-block img {
        margin: 2rem 0;
    }

    .icon-text-block .drp-title {
        text-align: center;
        width: 100%;
        display: block;
    }

    .dots-below:after {
        display: none;
    }

    .main-cta .flex-1 {
        display: none;
    }

    .main-cta .flex-2 {
        padding: 0;
        flex: none;
        width: 100%;
    }

    .gg-arrow-right {
        display: none;
    }

    .main-cta h2.drp-title {
        font-size: 20px;
    }

    .drp-chapter-arrow {
        padding: 3rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .drp-chapter h2.drp-title:not(.chapter-number) {
        font-size: 20px;
    }

    .drp-chapter h2.drp-title.chapter-number {
        text-align: center;
    }

    .activity h3.drp-title.small {
        margin-bottom: 2rem;
    }

    .complete-block {
        margin-top: 1rem;
    }

    .main-cta .takeaways-buttons {
        display: block;
        margin-bottom: 0;
    }

    .main-cta .takeaways-buttons .drp-button {
        margin: 1rem 0;
    }

    .initiative .drp-button, .initiative .main-cta.blue-bg .drp-button {
        font-size: 16px;
        text-align: center;
        display: block;
        max-width: 100%;
    }

    .drp-progress-main {
        height: auto;
    }

    .progress-text {
        margin-bottom: 2rem;
        text-align: center;
    }

    .drp-launch-retrieve-popup {
        margin-top: 2rem;
    }

    .drp-result-stage.active {
        padding-top: 3rem;
    }

    .drp-results-indicators-body {
        padding-top: 1rem;
    }

    .drp-chapter-arrow.right {
        display: none;
    }

    .drp-progress-circle, .drp-finished-icon {
        margin: 2rem 0;
    }

}

@media print {

    #site-header {
        position: absolute !important;
        top: 0 !important;
        transform: none !important;
    }

    body {
        display: block !important;
        overflow: visible !important;
    }

    .page-hero, .generic__wrap__subnav, #site-footer, .drp-results-indicators-header, #ada-widget-btn, .drp-result-stage .banner, .drp-where-to-start, .drp-retake-diagnostic, .drp-button, .drp-results-indicators-body .dot {
        display: none !important;
    }

    .drp-results-indicators-body:before {
        content: "Progress Indicators";
        display: block;
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .drp-results-indicators-body {
        display: block !important;
    }

    .drp-indicator-box:before {
        content: "Not Started: ";
        font-weight: bold;
    }

    .drp-indicator-box.active:before {
        content: "Completed: ";
    }

    .drp-indicator-box.partial:before {
        content: "Partial: ";
    }

    .icon-text-block.drp-result-stage {
        flex-direction: row;
    }

    .icon-text-block .drp-title {
        text-align: left;
    }

    .icon-text-block img {
        margin-right: 2rem;
    }
}