html, body {
	height: 100%;
	margin: 0;
  }
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CLEARFIX */

.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
    zoom:1;
}

/* STYLE */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	line-height: 1.25;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	color: #222;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-color: #fff;
}


.header {
	border-top: 6px solid #000;
	padding: 5px 5px;
	background: #fff;
	margin-bottom: 20px;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}


.contentw {
	position: relative;
	background: #fff;
	padding: 10px;
	border: 1px solid #fff;
	max-width: 690px;
	width: 96%;
	margin: 0 auto;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	text-align: center;
	margin-top: -4px;
}

.arrow:after {
	position: absolute;
	bottom: -25px;
	left: 50%;
	margin-left: -30px;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 30px 0 30px;
	border-color: #ffffff transparent transparent transparent;
}

.steps {
    max-width: 600px; /* Adjust the width as needed */
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9; /* Light background for the container */
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.steps ol {
    counter-reset: step-counter; /* Initialize a counter */
    list-style: none; /* Remove default list style */
    padding-left: 0; /* Remove default padding */
}

.steps ol li {
    counter-increment: step-counter; /* Increment counter for each list item */
    margin-bottom: 15px; /* Space between list items */
    padding-left: 30px; /* Space for the number */
    position: relative; /* Needed for absolute positioning of pseudo-elements */
    font-size: 1.1em; /* Slightly larger text */
	    text-align: justify;
}

.steps ol li:before {
    content: counter(step-counter); /* Display the counter */
    position: absolute;
    left: 0; /* Align to the left */
    top: 0; /* Align to the top */
    background-color: #0574e4; /* Green background for numbers */
    color: white; /* White text */
    border-radius: 50%; /* Circle shape */
    width: 25px; /* Width of the circle */
    height: 25px; /* Height of the circle */
    text-align: center; /* Center the number */
    line-height: 25px; /* Vertically center the number */
    font-weight: bold; /* Bold text */
}


h1 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 40px;
  margin-bottom: 20px;
}

h2 {
	
	padding-bottom: 8px;
	font-size: 1.35em;
	font-weight: 300;
	position: relative;
}

h3 {
	
	font-size: 1.25em;
	font-weight: 300;
	position: relative;
}

h2:after {
	content: "";
	height: 1px;
	width: 240px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -120px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,222222+50,ffffff+100 */
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(102,102,102,1) 50%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(102,102,102,1) 50%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(102,102,102,1) 50%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}

.txt {
	font-size: 0.925em;
	margin-bottom: 8px;
}

.txt2{text-align: left;
    font-size: 18px;
margin-top: 20px;
font-family: 'Roboto', sans-serif;
}


.bold {
	font-weight: 700;
}

.slider {
	max-width: 480px;
	margin: 0 auto;
}

.question {
	position: relative;
	background: #fff;
	padding: 16px 10px;
	max-width: 800px;
	width: 100%;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	text-align: center;
}

.qask p {
	font-weight: 700;
	font-size: 1.25em;
	margin-bottom: 12px;
	text-align: center;
}

hr{
	border-top: 1px solid #0574e4;
}

.qask button {
	outline: 0;
	width: 100%;
	display: block;
	background: #0574e4;;
	color: #fff;
	border: 1px solid #411757;
	padding: 14px 0;
	font-weight: 300;
	font-size: 1.2em;
	margin: 0px 0px 6px;
	cursor: pointer;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	transition: all 300ms linear;
	border-radius: 3px;
}

.qask button:hover {
	background: #fff;
	color: #0574e4;
}

.qask, .loading, .final {
	display: none;
}

.qask:first-child {
	display: block;
}

.loader-txt {
	font-size: 1.35em;
	font-weight: 700;
	color: #0574e4;
	margin: 10px auto 20px;
}

.load-txt li {
	display: none;
	font-weight: 300;
	margin-top: 10px;
	text-align: center;
}

.load-txt img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.congrats {
	color: #0574e4;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.7em;
}

.end-txt {
	margin-top: 15px;
	color: #666;
}

#timer {
	font-weight: 700;
	text-decoration: underline;
}

.cta {
    display: block;
    text-decoration: none;
    background: #0574e4;
    color: #fff;
    border: 2px solid #0574e4;
    padding: 14px 0;
    font-weight: 300;
    font-size: 1.35em;
    margin: 20px auto 0;
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    transition: all 300ms linear;
    /* box-shadow: 0 0 0 0 rgba(115, 200, 106, 0.7); */
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.cta:hover {
	background: #fff;
	color: #0574e4;
}

.tos {
	color: #888;
	margin-top: 5px;
	font-style: italic;
	font-size: 0.8em;
}

.pgcont {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
  }
  
  .cntwrp {
	flex: 1;
  }
  
  .footer {
	background: #b5b5b5;
	color: #cbcbcb;
	padding: 5px 4px;
	text-align: center;
	font-size: 0.75em;
	font-weight: 300;
  }


/********************** Custom Social Proof ************************/
/*******************************************************/



.custom-social-proof {
  position: fixed;
  bottom: 72px;
  left: 10px;
  z-index: 9999999999999 !important;
  font-family: 'Open Sans', sans-serif
}

.custom-social-proof .custom-notification {
  width: 320px;
  border: 0;
  text-align: left;
  z-index: 99999;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 6px;
  box-shadow: 2px 2px 10px 2px rgba(11, 10, 10, 0.2);
  background-color: #fff;
  position: relative;
  cursor: pointer
}

.custom-social-proof .custom-notification .custom-notification-container {
  display: flex !important;
  align-items: center;
  height: 64px
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-image-contentw img {
  max-height: 55px;
  width: 35px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  padding-left: 5px
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-contentw {
  margin: 0;
  height: 100%;
  color: gray;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0 6px 6px 0;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-contentw .custom-notification-content {
  font-family: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 16px
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-contentw .custom-notification-content small {
  margin-top: 3px !important;
  display: block !important;
  font-size: 12px !important;
  opacity: 0.8
}

.custom-social-proof .custom-notification .custom-close {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  transform: rotate(45deg);
  opacity: 1
}

.custom-social-proof .custom-notification .custom-close::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: gray;
  position: absolute;
  left: 0;
  top: 5px
}

.custom-social-proof .custom-notification .custom-close::after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: gray;
  position: absolute;
  left: 5px;
  top: 0
}

.custom-social-proof .custom-notification:hover .custom-close {
  opacity: 1
}

/********************** Custom Social Proof END ************************/
/*******************************************************/





@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(115, 200, 106, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(115, 200, 106, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(115, 200, 106, 0);}}

@media screen and (min-width: 960px) {
	h1 {
	  font-size: 24px;
	}
  }

@media screen and (max-width: 629px) {
	h1 {
		font-size: 1.3em;
        margin-bottom: 5px;
        line-height: 35px;
	}
	h2 {
		font-size: 1.25em;
		padding-bottom: 15px;
	}
    h3 
    {
    font-size: 1.05em;
    font-weight: 400;

    }
    .question{
        padding: 6px 10px;
    }
	.txt {
		font-size: 0.875em;
	}
	.q button {
		display: block;
		margin: 10px auto 0;
		width: 100%;
		max-width: 100%;
	}
	.contentw
	{
		margin-top: 1px;
        padding: 5px;
	}
    .txt2 
    {
    text-align: left;
    font-size: 16px;
    margin-top: 5px;
    font-family: 'Roboto', sans-serif;
    }
}

input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "\2714";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 1em;
  height: 1em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  transition: .2s;
}

input[type=checkbox] + label:active:before {
  transform: scale(0);
}

input[type=checkbox]:checked + label:before {
  background-color: MediumSeaGreen;
  border-color: MediumSeaGreen;
  color: #fff;
}

input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}



.name.feedback-input {
    width: 100%;
	padding: 10px 20px;
margin: 2px 0px;
box-sizing: border-box;
border-radius: 1px;
border: 2px solid #0574e4;
}
* 

.email.feedback-input {
    width: 100%;
	padding: 10px 20px;
margin: 2px 0px;
box-sizing: border-box;
border-radius: 1px;
border: 2px solid #0574e4;
}

.phone.feedback-input {
    width: 100%;
	padding: 10px 20px;
margin: 2px 0px;
box-sizing: border-box;
border-radius: 1px;
border: 2px solid #0574e4;
}

.button{
	outline: 0;
width: 40%;
display: inline-block;
background: #0574e4;
color: #fff;
border: 1px solid #9c4e4d;
padding: 14px 0;
max-width: 200px;
font-weight: 300;
font-size: 1.2em;
margin: 0 4px 4px;
cursor: pointer;
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
transition: all 300ms linear;
border-radius: 3px;
}
.prizebtn {
    border: 0 solid #334c83;
    padding: 4px 0;
    width: 80%;
    margin: 8px 4px 4px;
    text-align: center;
    font-size: .9em;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #0054a4;
}

.prize h2 {
    font-size: 1.2em;
    text-align: left;
}
.pbox h2, .pbox p {
    margin: 6px 6px 0;
	font-family: sans-serif;
}

.contentw2 {
    max-width: 1000px;
    width: 96%;
    margin: 0 auto;
}
.megabox {
    background-color: #fff;
    box-shadow: 0 0 2px 2px #e9e9e9;
    padding: 10px 6px;
    position: relative;
}
.megabox img {
    width: 130px;
    margin-left: auto;
margin-right:auto;}


.megabox p {
    font-size: small;
    text-align: left;
	color: #737373;
}
h2::after {
   content: none;
}

a {
    color: white;
}


@keyframes caretBlink {
    from { opacity: 1.0; }
    to { opacity: 0.0; }
}

@keyframes rotateSpinner {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

#text-tool-caret {
    animation-name: caretBlink;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(1.0,0,0,1.0);
    animation-duration: 1s;
}

#en-markup-loading-spinner {
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    width: 32px;
    height: 32px;
}

#en-markup-loading-spinner img {
    position: relative;
    top: 0px;
    left: 0px;
    animation-name: rotateSpinner;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.skitchToastBoxContainer {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    pointer-events: none;
}

.skitchToastBox {
    width: 200px;
    height: 16px;
    padding: 12px;
    background-color: rgba(47, 55, 61, 0.95);
    border-radius: 4px;
    color: white;
    cursor: default;
    font-size: 10pt;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
    font-family: 'Soleil', Helvetica, Arial, sans-serif;
    border: 2px rgba(255, 255, 255, 0.38) solid;
}



.skitchToast {
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
    height: 10px;
    color: #f1f5f8;
    text-align: center;
}


#en-markup-disabled {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    cursor: default;
    -webkit-user-select: none;
}

#en-markup-alert-container {
    position: absolute;
    z-index: 9999;
    width: 450px;
    left: calc(50% - 225px);
    top: calc(50% - 85px);
    background-color: white;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.35);
    -webkit-user-select: none;
}

#en-markup-alert-container .cell-1 {
    position: relative;
    height: 110px;
    width: 105px;
    float: left;
    text-align: center;
    background-position: 65% 50%;
    background-repeat: no-repeat;
}

#en-markup-alert-container .cell-2 {
    position: relative;
    float: left;
    width: 345px;
    margin-top: 29px;
    margin-bottom: 20px;
}

#en-markup-alert-container .cell-2 .cell-2-title {
    margin-bottom: 5px;
    padding-right: 30px;
    font-size: 12pt;
    font-family: Tahoma, Arial;
}

#en-markup-alert-container .cell-2 .cell-2-message {
    padding-right: 30px;
    font-size: 9.5pt;
    font-family: Tahoma, Arial;
}

#en-markup-alert-container .cell-3 {
    position: relative;
    width: 450px;
    height: 60px;
    float: left;
    background-color: rgb(240,240,240);
}

#en-markup-alert-container .cell-3 button {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 110px;
    height: 36px;
}

#en-markup-alert-container .cell-3 button.alt-button {
    position: absolute;
    top: 12px;
    right: 140px;
    width: 110px;
    height: 36px;
}


.popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 250px;
    align-items: center;
    padding: 10px;
}

.popup-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.popup-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.popup-product-image {
    margin-top: 5px;
    width: 70px;  /* Adjust size as required */
    height: 70px; /* Adjust size as required */
}

.popup {
    /* ... existing styles ... */
    z-index: 1000; /* Ensure the popup is in front of other elements */
}

/* Mobile-specific styling */
@media (max-width: 768px) {
    .popup {
        top: 10px; /* or adjust as needed */
        left: 10px;
        right: initial;
        bottom: initial;
        transform: none; /* override the centering transform */
    }
}



.fb-img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 15px;
}



.title_text {
  color: #ff0600;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 7.6rem
}

.large_text {
    font-size: 15px;
    text-align: justify;
    /* text-transform: uppercase; */
    font-weight: bold;
    margin-bottom: 1.3rem;
}

.text {
  margin-bottom: 1rem
}

.text span {
  font-weight: bold
}


@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.fld {
    font-size: 24px;
    font-weight: bold;
    color: #116be0;
    text-align: center;
    margin-bottom: 20px;
}

.large_text p {
    font-size: 18px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}



.button_block {
    text-align: center;
}

.bb {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background-color: #116be0;
    padding: 10px 20px;
	width: 99%;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.bb:hover {
    background-color: #006600;
}


/* CLEARFIX */

.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
    zoom:1;
}


* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}



/* COMMENTS */

.comments {
  font-family: Helvetica, sans-serif;
  margin-top: 64px;
}

.others-say {
  font-size: 1.25rem;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.sorting-box {
  padding: 8px 0;
  margin-bottom: 25px;
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  height: 64px;
}

.sorting-box > p {
  font-size: 0.875rem;
  line-height: 24px;
  font-weight: 600;
}

.inner-sorting-box {
  line-height: 20px;
  font-size: 0;
  position: absolute;
  top: 8px;
  right: 0;
}

.inner-sorting-box > svg {
  width: 16px;
  height: 16px;
  display: none;
  vertical-align: middle;
  margin-right: 8px;
  animation: fa-spin 2s linear infinite;
}

.inner-sorting-box > span {
  font-size: 0.875rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.sort {
  display: inline-block;
  vertical-align: middle;
}

.sort > button {
  cursor: pointer;
  color: #374151;
  background: #f3f4f6;
  padding: 0 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #d1d5db;
  font-weight: 700;
  transition: background 0.3s ease;
}

.sort > button:hover {
  background: #e5e7eb;
}

.sort > button span {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.75rem;
  line-height: 24px;
  font-family: Helvetica, sans-serif;
}

.sort > button svg {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: auto;
  margin-left: 4px;
}

.dropdown-sort {
  display: none;
  z-index: 50;
  position: absolute;
  top: 4px;
  right: 0;
  padding: 4px 0;
  background: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.dropdown-sort button {
  font-family: Helvetica, sans-serif;
  font-size: 0.75rem;
  line-height: 16px;
  background: #fff;
  border: 1px solid #fff;
  border-left: 0;
  border-right: 0;
  display: block;
  width: 100%;
  text-align: left;
  padding: 4px 12px 4px 20px;
position: relative;
cursor: pointer;
transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.dropdown-sort button svg {
width: 9px;
height: auto;
display: none;
position: absolute;
left: 6px;
top: 50%;
margin-top: -5px;
}

.dropdown-sort button.selected {
color: #374151;
font-weight: 700;
}

.dropdown-sort button.selected svg {
display: block;
}

.dropdown-sort button:hover {
color: #fff;
background: #2563eb;
border-color: #1e40af;
}

.dropdown-sort button:hover svg path {
fill: #fff;
}
  

.add-comment {
	position: relative;
	margin-bottom: 32px;
}

.add-comment.active {
	padding: 0 0 0 58px;
}

.add-comment img {
	display: none;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
}

.add-comment.active img {
	display: block;
}


.add-comment textarea {
	width: 100%;
	display: block;
	border: 1px solid #d1d5db;
	min-height: 64px;
	padding: 8px 12px;
	font-family: Helvetica, sans-serif;
	font-size: 1rem;
}

.add-comment textarea:focus {
    outline: 1px solid #60a5fa;
    border-color: #2563eb;
}

.comment-button-box {
	font-size: 0;
	background: #f3f4f6;
	padding: 12px;
	display: none;
}

.add-comment.active .comment-button-box {
	display: block;
}

.comment-button-left {
	width: 65%;
	display: inline-block;
	vertical-align: top;
}

.comment-button-left [type=checkbox] {
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	margin: 0;
	background: #fff;
	border: 1px solid #bfdbfe;
	width: 16px;
	height: 16px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
}

.comment-button-left [type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
    border-color: transparent;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #6b7280;
    background-origin: border-box;
}

.comment-button-left label {
	font-size: 0.688rem;
	color: #9ca3af;
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
}

.comment-button-left p {
	display: none;
	font-size: 0.688rem;
	margin-top: 4px;
}

.comment-button-right {
	text-align: right;
	width: 35%;
	display: inline-block;
	vertical-align: top;
}

.comment-button-right button {
	font-family: Helvetica, sans-serif;
	color: #fff;
	font-size: 0.875rem;
	line-height: 20px;
	font-weight: 700;
	background: #3b82f6;
	border: 1px solid #2563eb;
	padding: 4px 8px 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;
}

.comment-button-right button.disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.main-comments {
	margin-bottom: 12px;
}

.comment {
	position: relative;
	padding-left: 56px;
	margin-top: 12px;
	display: none;
}

.comment:not(.start-coms):nth-child(1), .comment:not(.start-coms):nth-child(2), .comment:not(.start-coms):nth-child(3), .comment:not(.start-coms):nth-child(4), .comment:not(.start-coms):nth-child(5) {
	display: block;
}

.comment:first-child {
	margin-top: 0;
}

.comment-user-img {
	display: block;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 0;
	left: 0;
}

.comment-user-img img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.comment-user-name {
	color: #2563eb;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 4px;
	font-weight: 700;
}

.comment-user-name span {
	display: inline-block;
	vertical-align: middle;
}

.comment-user-name:hover span {
	text-decoration: underline;
}

.comment-user-name svg {
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
}

.comment-text {
	line-height: 20px;
}

.comment-text a {
	color: #2563eb;
	text-decoration: none;
}

.comment-text a:hover {
	text-decoration: underline;
}

.comment-meta {
	font-size: 0;
	color: #9ca3af;
	margin-top: 8px;
	line-height: 16px;
}
.fb-bottom-details {
	margin-top: 6px;
	font-family: Tahoma, 'Helvetica', 'Helvetica Neue', sans-serif;
	color: #90949c;
	font-size: 12px;
	line-height: 16px;
	padding-left: 15px;
}

.comment-meta > * {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 4px;
	font-size: 0.75rem;
}

.comment-meta > *:first-child {
	margin-left: 0;
}

.comment-meta button {
	padding: 0;
	color: #3b82f6;
	background: transparent;
	border: 0;
	cursor: pointer;
	font-family: Helvetica, sans-serif;
}

.comment-meta button:hover {
	text-decoration: underline;
}

.total-likes {
	background: url(../images/like.svg) no-repeat left center;
	background-size: 16px 16px;
	padding-left: 20px;
	line-height: 16px;
	min-height: 16px;
}

.comment > .comment {
	padding-left: 52px;
	border-left: 1px dotted #d1d5db;
	display: block !important;
}

.comment > .comment .comment-user-img {
	left: 8px;
	width: 36px;
	height: 36px;
}

.load-more {
	background: #3b82f6;
	border: 1px solid #2563eb;
	color: #fff;
	font-weight: 700;
	padding: 12px 16px;
	text-align: center;
	width: 100%;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-family: Helvetica, sans-serif;
	cursor: pointer;
	line-height: 20px;
	font-size: 0.875rem;
}

.load-more svg {
	margin-right: 12px;
	display: none;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	-webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite;
}

.load-more span {
	display: inline-block;
	vertical-align: middle;
}

.load-more.end-coms svg {
	display: inline-block;
}

.comments-footer {
	margin-top: 12px;
	padding: 8px 0;
	border-top: 1px solid #d1d5db;
}

.comments-footer svg {
	display: inline-block;
	vertical-align: middle;
	width: 12px;
}

.comments-footer a {
	text-decoration: none;
	color: #2563eb;
	font-size: 0.688rem;
}

.comments-footer a:hover {
	text-decoration: underline;
}

.wrapper2 {
  padding: 20px;
  max-width: 640px;
  margin: 0 auto;
  background:#ffffff;
  color: #000000;
}

.started a {
	display: block;
	width: 100%;
	padding: 10px 20px;
	background: #000000;
	color: #fff;
	line-height: 30px;
	font-size: 1rem;
	text-align: center;
	text-decoration: none;
	font-size: 1.125rem;
	font-family: 'Roboto Condensed', sans-serif;
}

@media screen and (max-width: 1023px) {
	.question-number {
		position: relative;
		top: auto;
		left: auto;
	}
}

@media screen and (max-width: 639px) {
	.comment {
		padding-left: 44px;
	}

	.comment-user-img {
		width: 36px;
		height: 36px;
	}

	.footer-links a {
		display: block;
		margin-top: 8px;
	}

	.footer-links a:first-child {
		margin-top: 0;
	}

	.disclaimer-box p {
		text-align: center;
	}
}