* {
   font-family: 'Poppins', sans-serif;
}

.delay_calculation_wrapper h2 {
   font-size: 32px;
   font-weight: 500;
}

.delay_calculation_wrapper h2, .delay_calculation_wrapper p {
   text-align: center;
}

.delay_calculation_wrapper strong {
   font-weight: 600;
}

.delay_calculation_inner_content {
   max-width: 560px;
   margin: 0 auto;
}

.calculate_delay {
   padding: 12px 30px;
   border: none;
   background: #000;
   border-radius: 4px;
   font-size: 18px;
   display: block;
   color: #fff;
   margin: 15px auto;
   cursor: pointer;
}

.calculate_delay:disabled {
   background: #cbcbcb;
   cursor: not-allowed;
   pointer-events: all !important;
}


.delay_disclaimer {
   font-size: 10px;
   color: #9e9e9e;
   margin-top: 30px;
   display: flex;
   justify-content: center;
}

.calculated_response_text {
   font-size: 16px;
   margin-top: 40px;
}

.calculated_best_results {
   font-size: 16px;
}

/* video CTA */

.lightbox {
   display: none;
   position: fixed;
   z-index: 11;
   align-items: center;
   justify-content: center;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   background: rgba(0, 0, 0, .5);
}

.test_video_player {
   text-align: center;
   margin-top: 30px;
}

.playing-video #playVidButton {
   display: none;
}

#pauseVidButton {
   display: none;
}

.button_cta_video {
   border: none;
}

.playing-video #pauseVidButton {
   display: inline-block !important;
}

.button_cta_video:disabled {
   opacity: .5;
}

.test_video_player .vidcontainer {
   min-width: 80vw;
}

.playing-video.button_cta_video .icon {
   animation: none !important;
}

.playing-video {
   background: linear-gradient(209deg, #797cec, #c26ddb) !important;
   background-size: 400% 400% !important;

   -webkit-animation: videoPlaying 1s ease infinite !important;
   -moz-animation: videoPlaying 1s ease infinite !important;
   animation: videoPlaying 1s ease infinite !important;
}

@-webkit-keyframes videoPlaying {
   0% {
      background-position: 0% 50%
   }

   50% {
      background-position: 100% 50%
   }

   100% {
      background-position: 0% 50%
   }
}

@-moz-keyframes videoPlaying {
   0% {
      background-position: 0% 50%
   }

   50% {
      background-position: 100% 50%
   }

   100% {
      background-position: 0% 50%
   }
}

@keyframes videoPlaying {
   0% {
      background-position: 0% 50%
   }

   50% {
      background-position: 100% 50%
   }

   100% {
      background-position: 0% 50%
   }
}

.button_cta_video {
   cursor: pointer;
   background: #797cec;
   display: inline-flex;
   color: #fff;
   justify-content: center;
   align-items: center;
   padding: 10px 10px;
   border-radius: 4px;
}

.button_cta_video .icon {
   margin-right: 10px;
   width: 30px;
   height: 30px;
   animation: crescendo .8s alternate infinite ease-in;
}

@keyframes crescendo {
   0% {
      transform: scale(.9);
   }

   100% {
      transform: scale(1.1);
   }
}

/* video end */
.delay_disclaimer span {
   margin: 2px 0;
}

.section_calculate_results {
   position: relative;
}

.chart_results_avg_wrapper {
   position: relative;
}

.chart_results_avg {
   position: absolute;
   height: 69px !important;
   bottom: 14px;
   left: 55px !important;
   right: 56px !important;
   opacity: .17;
}

/* new range */


/*
	I have used this: http://danielstern.ca/range.css/#/
  to style my range slider
*/
input[type=range] {
   -webkit-appearance: none;
   width: 100%;
   margin: 14px 0;
   background-color: transparent;
}

input[type=range]:focus {
   outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
   width: 100%;
   height: 6px;
   cursor: pointer;
   box-shadow: 0;
   background: transparent;
   position: relative;
   z-index: 1;
   border: 0;
}

input[type=range]::-webkit-slider-thumb {
   box-shadow: none;
   border: 1px solid rgba(0, 0, 0, 0.07);
   height: 34px;
   width: 34px;
   border-radius: 50px;
   background: #23241f;
   cursor: pointer;
   -webkit-appearance: none;
   margin-top: -14px;
   position: relative;
   z-index: 3;
}

input[type=range]::-moz-range-track {
   width: 100%;
   height: 6px;
   cursor: pointer;
   box-shadow: 0;
   background: transparent;
   position: relative;
   z-index: 1;
   border: 0;
}

input[type=range]::-moz-range-thumb {
   box-shadow: none;
   border: 1px solid rgba(0, 0, 0, 0.07);
   height: 34px;
   width: 34px;
   border-radius: 50px;
   background: #23241f;
   cursor: pointer;
   position: relative;
   z-index: 3;
}

input[type=range]::-ms-track {
   width: 100%;
   height: 6px;
   cursor: pointer;
   background: transparent;
   border-color: transparent;
   color: transparent;
}

input[type=range]::-ms-fill-lower {
   background: transparent;
   border: 0;
   box-shadow: 0;
}

input[type=range]::-ms-fill-upper {
   background: transparent;
   border: 0;
   box-shadow: 0;
}

input[type=range]::-ms-thumb {
   box-shadow: none;
   border: 1px solid rgba(0, 0, 0, 0.07);
   height: 34px;
   width: 34px;
   border-radius: 50px;
   background: #23241f;
   cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
   background: transparent;
}

input[type=range]:focus::-ms-fill-upper {
   background: transparent;
}

.range {
   position: relative;
   left: 0;
   top: 0;
   width: 300px;
   height: 34px;
   margin-bottom: 30px;
}

.range:after {
   content: "";
   position: absolute;
   width: 100%;
   left: 0;
   top: 14px;
   z-index: 0;
   height: 6px;
   background-color: #ddd;
   border-radius: 3px;
}

.range:last-child {
   margin-bottom: 0;
}

.range--large {
   width: 100%;
}

.range--half {
   width: 50%;
}

.range__progress {
   background-color: #60cd18;
   position: absolute;
   z-index: 1;
   top: 14px;
   left: 0;
   height: 6px;
   border-radius: 3px;
}

.range__value {
   position: absolute;
   right: -30px;
   top: 8px;
}

/* new range */
.range {
   position: relative;
   max-width: 300px;
   margin: 110px auto 30px;
}

/* 
.range input[type=range] {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   padding: 0;
   width: 100%;
   height: 22px;
   cursor: pointer;
   display: block;
}

.range input[type=range]:focus {
   outline: none;
}

.range input[type=range][disabled] {
   opacity: 0.3;
   cursor: default;
}

.range .rangeslider {
   position: relative;
   height: 22px;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

.range .rangeslider:before {
   box-sizing: border-box;
   width: 100%;
   height: 4px;
   background: #e6e6e6;
   border-radius: 100px;
   content: "";
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
} */
/* 
.range input::-webkit-slider-runnable-track {
   box-sizing: border-box;
   width: 100%;
   height: 4px;
   background: #e6e6e6;
   border-radius: 100px;
   margin: 11px 0;
}

.range input::-moz-range-track {
   box-sizing: border-box;
   width: 100%;
   height: 4px;
   background: #e6e6e6;
   border-radius: 100px;
   margin: 11px 0;
}

.range input::-ms-track {
   box-sizing: border-box;
   width: 100%;
   height: 4px;
   background: #e6e6e6;
   border-radius: 100px;
   color: transparent;
   padding: 11px 0;
   background: transparent;
   border-color: transparent;
} */
/* 
.range input::-ms-fill-lower,
.range input::-ms-fill-upper {
   box-sizing: border-box;
   width: 100%;
   height: 4px;
   background: #e6e6e6;
   border-radius: 100px;
} */
/* 
.range input::-ms-fill-lower {
   background: #60cd18;
}

.range .rangeslider-fill-lower {
   background-color: #60cd18;
   border-radius: 100px;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   height: 4px;
   will-change: width;
} */

.range input::-webkit-slider-thumb {
   box-sizing: border-box;
   box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
   border: 6px solid #fff;
   height: 24px;
   width: 24px;
   border-radius: 100px;
   background: #333940;
   cursor: pointer;
   -webkit-appearance: none;
   appearance: none;
   transform: translateY(-50%);
   margin-top: 2px;
}

.range input::-moz-range-thumb {
   box-sizing: border-box;
   box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
   border: 6px solid #fff;
   height: 24px;
   width: 24px;
   border-radius: 100px;
   background: #333940;
   cursor: pointer;
}

.range input::-ms-thumb {
   box-sizing: border-box;
   box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
   border: 6px solid #fff;
   height: 24px;
   width: 24px;
   border-radius: 100px;
   background: #333940;
   cursor: pointer;
}

/* 
.range .rangeslider-thumb {
   box-sizing: border-box;
   box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
   border: 6px solid #fff;
   height: 24px;
   width: 24px;
   border-radius: 100px;
   background: #333940;
   cursor: pointer;
   position: absolute;
   touch-action: pan-x;
   top: 50%;
   transform: translateY(-50%);
   will-change: left;
} */

.range .range-output {
   position: absolute;
   left: 6px;
   top: 6px;
   transform-origin: 0 0;
   transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

.range .range-output .output {
   display: block;
   position: absolute;
   height: 60px;
   line-height: 60px;
   min-width: 32px;
   padding: 0 20px;
   top: -26px;
   transform: translate(-50%, -100%);
   background: #383c42;
   color: #fff;
   border-radius: 100px;
   white-space: nowrap;
   font-weight: bold;
   font-size: 1.2em;
   text-align: center;
}

.range .range-output .output:before {
   content: "";
   position: absolute;
   bottom: -8px;
   left: 50%;
   border: 10px solid #383c42;
   border-bottom: none;
   border-left-color: transparent;
   border-right-color: transparent;
   transform: translateX(-50%);
}


/* calculation in process */


.progress {
   /* Group 872 */
   height: 6px;
   /* Grays/Ultralight */
   background: #f2f2f2;
   border-radius: 8px;
   width: 100%;
   margin: 32px 0;
}

.progress-fill {
   /* Grays/NearlyBlack */
   background: #151418;
   border-radius: 8px;
   height: 6px;
   width: 0;
   animation: Progress 4s linear;
   animation-fill-mode: both;
}

.icon {
   position: relative;
   height: 24px;
   width: 24px;
}

.progress-items {
   margin: 0px 56px;
}

.spinner svg {
   animation: Spinner 0.5s linear infinite;
   transform-origin: 50% 50%;
   height: 24px;
   width: 24px;
   position: absolute;
}

.spinner {
   animation: FadeOut 0.3s cubic-bezier(0.32, 0, 0.67, 0);
   animation-fill-mode: both;
}

.checkmark {
   opacity: 0;
   animation: FadeIn 0.3s cubic-bezier(0.32, 0, 0.67, 0);
   animation-fill-mode: both;
}

.progress-li {
   display: flex;
   flex-direction: row;
   animation: FadeIn 0.3s cubic-bezier(0.32, 0, 0.67, 0);
   animation-fill-mode: both;
   margin-bottom: 24px;
}

.progress-li .label {
   padding-left: 16px;
   line-height: 24px;
}

.progress-items .progress-li:nth-child(1) {
   animation-delay: 0s;
}

.progress-items .progress-li:nth-child(1) .spinner {
   animation-delay: 2s;
}

.progress-items .progress-li:nth-child(1) .checkmark {
   animation-delay: 2.3s;
}

.progress-items .progress-li:nth-child(2) {
   animation-delay: 2s;
}

.progress-items .progress-li:nth-child(2) .spinner {
   animation-delay: 4s;
}

.progress-items .progress-li:nth-child(2) .checkmark {
   animation-delay: 4.3s;
}

.progress-items .progress-li:nth-child(3) {
   animation-delay: 4s;
}

.progress-items .progress-li:nth-child(3) .spinner {
   animation-delay: 6s;
}

.progress-items .progress-li:nth-child(3) .checkmark {
   animation-delay: 6.3s;
}

@keyframes FadeIn {
   0% {
      opacity: 0;
      transform: scale(0.9);
   }

   100% {
      opacity: 1;
      transform: scale(1);
   }
}

@keyframes FadeOut {
   0% {
      opacity: 1;
      transform: scale(1);
   }

   100% {
      opacity: 0;
      transform: scale(0.9);
   }
}

@keyframes Progress {
   0% {
      width: 0;
   }

   100% {
      width: 100%;
   }
}

@keyframes Spinner {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

/* Multi range input */
[slider] {
   position: relative;
   height: 14px;
   border-radius: 10px;
   text-align: left;
   margin: 90px 30px 10px 30px;
}

[slider]>div {
   position: absolute;
   left: 13px;
   right: 15px;
   height: 14px;
}

[slider]>div>[inverse-left] {
   position: absolute;
   left: 0;
   height: 14px;
   border-radius: 10px;
   background-color: #CCC;
   margin: 0 7px;
}

[slider]>div>[inverse-right] {
   position: absolute;
   right: 0;
   height: 14px;
   border-radius: 10px;
   background-color: #CCC;
   margin: 0 7px;
}

[slider]>div>[range] {
   position: absolute;
   left: 0;
   height: 14px;
   border-radius: 14px;
   background: rgb(104, 127, 241);
   background: linear-gradient(90deg, rgba(104, 127, 241, 1) 0%, rgba(205, 107, 216, 1) 100%);
}

[slider]>div>[thumb] {
   position: absolute;
   top: -9px;
   z-index: 2;
   height: 28px;
   width: 28px;
   text-align: left;
   margin-left: -11px;
   cursor: pointer;
   box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
   background-color: #FFF;
   border-radius: 50%;
   outline: none;
}

.dragger-left {
   border: 2px solid #6f76e2;
}

.dragger-right {
   border: 2px solid #bc66cf;
}

div[slider]>input[type=range]::-ms-thumb {
   pointer-events: all;
   width: 28px;
   height: 28px;
   border-radius: 0px;
   border: 0 none;
   background: red;
}

div[slider]>input[type=range]::-moz-range-thumb {
   pointer-events: all;
   width: 28px;
   height: 28px;
   border-radius: 0px;
   border: 0 none;
   background: red;
}

div[slider]>input[type=range]::-webkit-slider-thumb {
   pointer-events: all;
   width: 28px;
   height: 28px;
   border-radius: 0px;
   border: 0 none;
   background: red;
   -webkit-appearance: none;
}

div[slider]>input[type=range]::-ms-fill-lower {
   background: transparent;
   border: 0 none;
}

div[slider]>input[type=range]::-ms-fill-upper {
   background: transparent;
   border: 0 none;
}

[slider]>input[type=range] {
   position: absolute;
   pointer-events: none;
   -webkit-appearance: none;
   z-index: 3;
   height: 14px;
   top: -2px;
   width: 100%;
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   -moz-opacity: 0;
   -khtml-opacity: 0;
   opacity: 0;
}

div[slider]>input[type=range]::-ms-track {
   -webkit-appearance: none;
   background: transparent;
   color: transparent;
}

div[slider]>input[type=range]::-moz-range-track {
   -moz-appearance: none;
   background: transparent;
   color: transparent;
}

div[slider]>input[type=range]:focus::-webkit-slider-runnable-track {
   background: transparent;
   border: transparent;
}

div[slider]>input[type=range]:focus {
   outline: none;
}

div[slider]>input[type=range]::-ms-tooltip {
   display: none;
}

[slider]>div>[sign] {
   /* opacity: 0; */
   position: absolute;
   margin-left: -11px;
   top: -60px;
   z-index: 3;
   background-color: #fff;
   color: #000;
   width: 60px;
   height: 26px;
   border-radius: 6px;
   -webkit-border-radius: 6px;
   align-items: center;
   -webkit-justify-content: center;
   justify-content: center;
   text-align: center;
   transform: translateX(-16px);
}

strong[time] {
   /* font-weight: 600; */
}

[slider]>div>[sign]:after {
   position: absolute;
   content: '';
   left: 0;
   /* border-radius: 16px;
   top: 19px;
   border-left: 14px solid transparent;
   border-right: 14px solid transparent;
   border-top-width: 16px;
   border-top-style: solid;
   border-top-color: #1ABC9C; */
}

.left-thumb {
   /* background-color: ; */
   border: 2px solid #6f76e2;
}

.right-thumb {
   /* background-color: ; */
   border: 2px solid #bd67cf;
}


.left-thumb::after {
   border-right: 2px solid #6f76e2;
   border-bottom: 2px solid #6f76e2;
}

.right-thumb::after {
   border-right: 2px solid #bd67cf;
   border-bottom: 2px solid #bd67cf;
}

.left-thumb::after, .right-thumb::after {
   transform: rotate(45deg);
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   -o-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   /* border-right: 2px solid;
   border-bottom: 2px solid; */
   width: 12px;
   height: 12px;
   background-color: #fff;
   position: absolute;
   margin: auto;
   border-radius: 2px;
   top: 20px !important;
   left: 0;
   right: 0;
}

[slider]>div>[sign]>span {
   font-size: 12px;
   font-weight: 400;
   line-height: 28px;
}

[slider]:hover>div>[sign] {
   opacity: 1;
}

div[initial] {
   position: absolute;
   top: -75px;
   left: 30px;
   font-size: 13px;
}

div[initial]:after {
   content: "";
   height: 50px;
   width: 2px;
   background: #000;
   position: absolute;
   top: 16px;
   transform: translateX(-18px) translateY(13px);
}

/* charts */
.charts-css {
   --color-1: rgba(240, 50, 50, 0.75);
   --color-2: rgba(255, 180, 50, 0.75);
   --color-3: rgba(255, 220, 90, 0.75);
   --color-4: rgba(100, 210, 80, 0.75);
   --color-5: rgba(90, 165, 255, 0.75);
   --color-6: rgba(170, 90, 240, 0.75);
   --color-7: hsla(0, 0%, 70.6%, 0.75);
   --color-8: hsla(0, 0%, 43.1%, 0.75);
   --color-9: rgba(170, 150, 110, 0.75);
   --color-10: rgba(130, 50, 20, 0.75);
   --chart-bg-color: #f5f5f5;
   --heading-size: 0px;
   --primary-axis-color: #000;
   --primary-axis-style: solid;
   --primary-axis-width: 1px;
   --secondary-axes-color: rgba(0, 0, 0, 0.15);
   --secondary-axes-style: solid;
   --secondary-axes-width: 1px;
   --data-axes-color: rgba(0, 0, 0, 0.15);
   --data-axes-style: solid;
   --data-axes-width: 1px;
   --legend-border-color: #c8c8c8;
   --legend-border-style: solid;
   --legend-border-width: 1px;
   -webkit-print-color-adjust: exact;
   color-adjust: exact;
   border: 0;
   display: block;
   height: 100%;
   margin: 0 auto;
   padding: 0;
   position: relative;
   width: 100%;
}

.charts-css, .charts-css *, .charts-css::after, .charts-css ::after, .charts-css::before, .charts-css ::before {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

table.charts-css {
   background-color: transparent;
   border-collapse: collapse;
   border-spacing: 0;
   empty-cells: show;
   overflow: initial;
}

table.charts-css tbody, table.charts-css td, table.charts-css tr {
   background-color: transparent;
   border: 0;
   display: block;
   margin: 0;
   padding: 0;
}

table.charts-css tbody {
   position: relative;
}

.charts-css.column tbody tr:nth-of-type(10n+1) td {
   background: var(--color, var(--color-1));
}

.charts-css.column tbody tr:nth-of-type(10n+2) td {
   background: var(--color, var(--color-2));
}

.charts-css.column tbody tr:nth-of-type(10n+3) td {
   background: var(--color, var(--color-3));
}

.charts-css.column tbody tr:nth-of-type(10n+4) td {
   background: var(--color, var(--color-4));
}

.charts-css.column tbody tr:nth-of-type(10n+5) td {
   background: var(--color, var(--color-5));
}

.charts-css.column tbody tr:nth-of-type(10n+6) td {
   background: var(--color, var(--color-6));
}

.charts-css.column tbody tr:nth-of-type(10n+7) td {
   background: var(--color, var(--color-7));
}

.charts-css.column tbody tr:nth-of-type(10n+8) td {
   background: var(--color, var(--color-8));
}

.charts-css.column tbody tr:nth-of-type(10n+9) td {
   background: var(--color, var(--color-9));
}

.charts-css.column tbody tr:nth-of-type(10n+10) td {
   background: var(--color, var(--color-10));
}

.charts-css.hide-data .data {
   clip: rect(0, 0, 0, 0);
   border: 0;
   -webkit-clip-path: inset(50%);
   clip-path: inset(50%);
   height: 1px;
   margin: -1px;
   overflow: hidden;
   padding: 0;
   position: absolute;
   white-space: nowrap;
   width: 1px;
}

.charts-css.column:not(.show-labels) {
   --labels-size: 0;
}

.charts-css:not(.legend-inline) {
   -webkit-box-orient: vertical;
   -ms-flex-direction: column;
   flex-direction: column;
   -ms-flex-wrap: nowrap;
   flex-wrap: nowrap;
}

.charts-css:not(.legend-inline) {
   -webkit-box-direction: normal;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.charts-css.column tbody {
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   height: calc(100% - var(--heading-size));
   justify-content: space-between;
   width: 100%;
}

.charts-css.column tbody tr {
   -webkit-box-flex: 1;
   -ms-flex-positive: 1;
   -ms-flex-negative: 1;
   -ms-flex-preferred-size: 0;
   -webkit-box-pack: start;
   -ms-flex-pack: start;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   flex-basis: 0;
   flex-grow: 1;
   flex-shrink: 1;
   justify-content: flex-start;
   overflow-wrap: anywhere;
   position: relative;
}

.charts-css.column tbody tr td {
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   height: calc(100% * var(--end, var(--size, 1)));
   justify-content: center;
   position: relative;
   width: 100%;
}

.charts-css.column:not(.reverse) tbody tr {
   -webkit-box-align: end;
   -ms-flex-align: end;
   -webkit-margin-after: var(--labels-size);
   align-items: flex-end;
   margin-block-end: var(--labels-size);
}

.charts-css.column:not(.reverse) tbody tr td {
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
}

.charts-css.column:not(.stacked) tbody tr td {
   -webkit-box-flex: 1;
   -ms-flex-positive: 1;
   -ms-flex-negative: 1;
   -ms-flex-preferred-size: 0;
   flex-basis: 0;
   flex-grow: 1;
   flex-shrink: 1;
}

.charts-css.column:not(.reverse-data) tbody {
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
}

.charts-css.column:not(.reverse-datasets):not(.stacked) tbody tr {
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
}

/* Media Queries */


/* double range slider */
@media screen and (max-width: 480px) {
   .delay_calculation_inner_content {
      padding: 0 20px;
   }

   div[initial] {
      left: 10px
   }

   .delay_calculation_wrapper h2 {
      font-size: 22px;
   }

   .delay_calculation_wrapper p {
      font-size: 14px;
   }
}

@media (max-width: 400px) {


   [slider] {
      margin: 90px 10px 10px 10px;
   }

   .calculated_response_text, .calculated_best_results {
      font-size: 12px !important;
   }

   .button_cta_video .icon {
      width: 18px;
      height: 18px;
   }

   .button_cta_video {
      font-size: 13px;
   }
}