@import url('https://fonts.googleapis.com/css?family=Noto+Sans&display=swap');

  .move-to-the-left-now{
      left: -25vw !important;
  }

:root {
  --primary-color: #414142;
  --text-color: #414142;
  --secondary-color:#888888;
  --primary-color-lite:#8484863a;
  --nav-button-normal : #33a242;
  --nav-button-checked: #0d771c;
  --content-normal: #4aade9;
  --content-clicked: #1a6695;  
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1.4;
  font-family: 'Noto Sans', 'Work Sans', sans-serif;
  color: #414142;
  color: var(--primary-color);
  height: 100vh;
}

/* element style */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: .55rem;
  line-height: 1.3;
}

p {
  margin: .5rem 0;
}

img.logo {
  width: 100%;
}

a {
  text-decoration: none;
  color: #33a242;
  color: var(--nav-button-normal);
}

/* intro section */
.welcome-page {  
  height: 600px; 
  /*width: 100vw;*/
  /*overflow: auto;*/
  padding: 0 20px;
  
  margin: 0 auto;
  font-size: large;
  background: url('ibd_welcome_bg.jpg') no-repeat center center/cover;
  
  display: -webkit-box;
  
  display: -ms-flexbox;
  
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#welcome-content,
#welcome-disclaimer {
  background-color: #eceeec;
  width: 100%;
  opacity: 0.8;
  margin-bottom: 2rem;
} 

#welcome-disclaimer {  
  -webkit-transform: translateY(9rem);  
      -ms-transform: translateY(9rem);  
          transform: translateY(9rem);
}

#welcome-content h1 {
  font-size: 60px;
  line-height: 1.2em;
}

#welcome-content p {
  padding-bottom: 20px;
  line-height: 1.7em;
}

.about-page {
  padding:  0 2rem;
  width: 80%;
  overflow: auto;
  
  margin: 0 auto;
  font-size: large;  
  /* display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center; */
}

.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  
}

.intro .intro-text {
  padding: 2.5rem;
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;  
}

.intro-qns {
  padding: 2rem;
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
}

/* questionnaire section */
.ibd_container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6fr;
  grid-template-columns: 1fr 6fr;
  /* grid-template-rows: 0.5fr 0.5fr 700px 1fr; */
  -ms-grid-rows: auto auto 1fr auto;
  grid-template-rows: auto auto 1fr auto;
}
.ibd_container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.ibd_container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.ibd_container > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.ibd_container > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.ibd_container > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.ibd_container > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.ibd_container > *:nth-child(7) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.ibd_container > *:nth-child(8) {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}

/* header */
.ibd_header {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
  padding: 1rem;
}

.ibd_header .logo-img {  
  display: inline-block;
  max-width: 350px;
  width: 100%;
}

.ibd_header .help {  
  float: right;
  padding: 1rem;
}

/* sub-header */
.ibd_sub-header {
  padding: 0.2rem 1rem;
  padding-top: 10px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
  color: white;
  background:var(--nav-button-normal);
  text-align: center;
}

/* sidebar */
.ibd_sidebar {  
  padding: 1rem 1rem;
}

.ibd_sidebar .side-nav-btns .tab-link {
  width: 100%;
  display: block;
  font-weight: bold;  
  font-size: 1.2rem;
  text-align: left;
  border-width: 1px 1px 0px 1px;
  border-color: white;
  border-style: solid;
  padding: 1.5rem 0.7rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #33a242;
  background: var(--nav-button-normal);
  color: white;  
  cursor: pointer;
  outline: white;
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.ibd_sidebar .side-nav-btns .tab-link:hover {
  background: #0d771c;
  background: var(--nav-button-checked)
}

.ibd_sidebar .side-nav-btns .tab-link-invisible {
  display: none;
}

.ibd_sidebar .side-nav-btns:nth-last-child(1) {
  border-bottom: 1px solid white;
}

.ibd_sidebar .tab-link:hover {
  background: #0d771c;
  background: var(--nav-button-checked);
  color: white;
}

.ibd_sidebar .tab-link.active {
  background: #0d771c;
  background: var(--nav-button-checked);
  color: white;
}

.btn-lite {
  border: none;
  background: #fff;
  color: #414142;
  color: var(--primary-color);
  font-size: 1rem;
  outline: none;
  cursor: pointer;  
}

.btn-dark {
  border: none;
  color: #fff;
  background: #414142;
  background: var(--primary-color);
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  padding : 1rem 2.5rem;
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.btn-dark:hover {
  background: #888888;
  background: var(--secondary-color);
  color: white;
}



/* footer */
.ibd_footer {
  text-align: center;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
}

/* content-nav */

.hidden {
  display: none;
}

.highlight {
  font-weight: bold;
  position: relative;
}

.highlight .tooltiptext,
.highlight .tooltiptext-leftaligned,
.highlight .tooltiptext-leftmovedFromBorder,
.highlight .tooltiptext-movedTop,
.highlight .tooltiptext-movedToMid {
  font-weight: 100;
  display: none;
  width: 600px;
  background-color: #414142;
  background-color: var(--primary-color);
  color: #fff;
  
  padding: 5px 5px;
  border-radius: 6px;
  position: absolute;
  left: 2rem;
  /* top: 10rem;   */
  z-index: 1;
}

.highlight .tooltiptext-leftaligned {
  left: -14rem;
  top: 10rem;
}

.highlight .tooltiptext-leftmovedFromBorder {
  left: -25rem;
  
}

.highlight:hover .tooltiptext,
.highlight:hover .tooltiptext-leftaligned,
.highlight:hover .tooltiptext-movedTop,
.highlight:hover .tooltiptext-movedToMid,
.highlight:hover .tooltiptext-leftmovedFromBorder
 {
  display: block;
  text-align: center;
}

.highlight:hover .tooltiptext img,
.highlight:hover .tooltiptext-movedTop img
 {
  height: 300px;
  width: 300px;
}

.highlight:hover .tooltiptext-movedTop {
  top: -250px;
  left: 150px;
}

.highlight:hover .tooltiptext-movedToMid {
  top: 10rem;  
}


.imgtooltip {  
  position:relative;
  font-weight: bold;
}
 
.imgtooltip span {
  display:none;
  border-radius:6px;
  color:black;
  background:white;
}
 
.imgtooltip span img {
  float:left;
  margin:0px 8px 8px 0;
  height: 300px;
  width: 300px;
}
 
.imgtooltip:hover span {
  display:block;
  position:absolute;
  top:-10px;
  left:10px;
  z-index:1000;
  width:auto;
  /* max-width:320px; */
  min-height:128px;
  border:1px solid black;
  margin-top:12px;
  margin-left:32px;
  overflow:hidden;
  padding:8px;
}

.imgtooltip:hover span.bottom-up-tooltip {
  top: -325px;
}

.imgtooltip:hover span.mid-tooltip {
  top: -150px;
}

label {
  display: inline-block;
}

.ibd_content {
  overflow-y: auto;
  padding:1rem;
}

.ibd_content .tab-content {
  display:none;
}

.ibd_content .tab-content.visited {
  opacity: 0;
  -webkit-animation: fadein 0.7s forwards ease-in-out;
          animation: fadein 0.7s forwards ease-in-out;
}

@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

.ibd_content .tab-content ul li {
  padding: 0.25rem 1rem;
} 
  
/* Form Elements */
  
.ibd_container textarea{
  width: 100% !important;
}

/* navigation buttons */
.ibd_content .nav-btns .prev-btn,
.ibd_content .nav-btns .next-btn {
  background: #414142;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  padding: 1rem;
  border: none;
  border-radius: 15%;
  margin-top: 1rem;
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.ibd_content .nav-btns .prev-btn:hover,
.ibd_content .nav-btns .next-btn:hover {
  background: #888888;
  background: var(--secondary-color);
  color: white;
}

.ibd_content .nav-btns .prev-btn {  
  float: left;
}

.ibd_content .nav-btns .next-btn{
  float: right;
}

.tab-content {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  min-height: 600px;
}

#about-my-ibd-img img {
  height: 300px;
  width: 400px;
  float: right;
}

#compare-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#compare-intro .compare-intro-text,
#my_decision_intro .my_decision_intro_text
#my_support_intro .my_support_intro_text
 { 
  padding: 1rem;
}
#compare-intro .compare-intro-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#compare-intro img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 350px;
}

#my_decision_intro img,
#my_support_intro img {  
  float: right;
  height: 350px;
}

#my_feelings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
}

#my_feelings .qns {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2
}

#my_feelings .my_feelings_info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;  
}

#my_feelings .my_feelings_info .my_feelings_info_content {
  padding: 1rem;
  background-color: #0d5a96;
  text-align: center;
  color: white;
  font-size: large;
}

#my_feelings .my_feelings_info img {
  width: 400px;
}

#my_feelings .my_feelings_info ul {
  list-style: none;
}

#my_feelings .my_feelings_info ul > li a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

#my_support_team_img {
  text-align: center;
}

#my_support_team_img img {
  width: 500px;
  margin: 0 auto;
}

/* begin - next section */
.intro-next-section,
.lead-next-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;  
}

.lead-next-section {
  -webkit-transform: translateX(-8rem);
      -ms-transform: translateX(-8rem);
          transform: translateX(-8rem);
  margin-top: 1rem;
}

.intro-next-section a,
.lead-next-section a,
.lead-next-section button,
.ostomy-links a
 {
  border: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.25rem 1.75rem;
  background: #33a242;
  background: var(--nav-button-normal);
  cursor: pointer;
  color: white;  
  -webkit-transition: background 0.3s ease-in-out;  
  -o-transition: background 0.3s ease-in-out;  
  transition: background 0.3s ease-in-out;
}

.ostomy-links a {
  text-decoration: underline;
  -webkit-box-align: center;-ms-flex-align: center;align-items: center;
}

.intro-next-section a:hover,
.lead-next-section a:hover,
.lead-next-section button:hover {
  background: #0d771c;
  background: var(--nav-button-checked);
}

/* Get the facts tab */
.tab-content .h-card-wrapper .v-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab-content .h-card-wrapper .v-cards .v-card{
  width: 20%;
  height: 300px;  
  margin: 2rem 6rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  background: #4aade9;
  background: var(--content-normal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 5%;
  /* border: 1px var(--primary-color) solid; */
  -webkit-box-shadow: 0 0 10px #888888;
          box-shadow: 0 0 10px #888888;
  /* border-radius: 30px; */
  -webkit-transition: all 1s ease-in;
  -o-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

.tab-content .h-card-wrapper .v-cards .v-card:hover {
  
}

.tab-content .h-card-wrapper .v-cards .v-card img {
  padding: 2rem;
}

.tab-content .h-card-wrapper .h-card {
  /* border: 0.5px var(--secondary-color) solid; */
  /* box-shadow: 0 0 10px var(--secondary-color); */
  /* border-radius: 30px; */
  text-align:  center;
  font-size: 1.5rem;
  font-weight: bold;
}

.h-card p::before,
.h-card p::after {
  display: inline-block;
  content: "";
  border-top-color: #414142;
  border-top: .2rem solid var(--primary-color);
  height: 3rem;
  width: 25%;
  -webkit-transform: translateY(90%);
      -ms-transform: translateY(90%);
          transform: translateY(90%);
  margin-left: .9em;
  margin-right: .9em;
}

/* .tab-content .h-card-wrapper .h-card.expand-width {
  width: 100%;
  height: 600px;
  display: block;
} */

#getFacts {
  height: 100%;
}

/* .index-btns {
  display: block;
} */

/* .qn-sec-btns {
  display: none;
} */

/* FAQ */
.faq-qn-card {
  position: relative;
}
  
  
/* FAQ Blue Tile Adjustments */
@media(min-width: 768px){
  #medical-therapy-tooltip{
    left: -170%;
  }
  #surgical-therapy-tooltip{
    left: -270%;
  }
  .v-card span{
    font-size: 14px;
  }
}

/* Tooltips */
@media(min-width: 768px){
  .movedToLeft{
    left: -35% !important;
  }
}
  
.faq-question {
  position: relative;  
  margin: 0;
  padding: 10px 10px 10px 36px;
  display: block;
  width:100%;
  cursor: pointer;  
}

label.faq-question {
  font-weight: bold;
}

.faq-answer {  
  padding: 0px 15px;
  margin: 5px 0;
  height: 0;
  overflow: hidden;
  /* z-index: -1; */
  position: relative;
  opacity: 0;
  -webkit-transition: .7s ease;
  -o-transition: .7s ease;
  transition: .7s ease;
  border-left: 6px solid transparent;
}

.faq-qn-chkbox:checked ~ .faq-answer{
  height: auto;
  opacity: 1;
  padding: 0 15px;
  border-color: #4aade9;
  border-color: var(--content-normal);
  overflow: visible;
}

.faq-answer ul > li {
  list-style-type: none;
}

.faq-answer ul > li:before {
  content: '-';
  width: 1em;  
  display: inline-block;
  margin-left: 0.1rem;
}

.faq-answer ol > li {
  margin-left: 5px;
}


.faq-plus {
  position: absolute;
  margin-left: 10px;
  margin-top: 3px;
  /* z-index: 5; */
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
  pointer-events: none;
}

.faq-qn-chkbox:checked ~ .faq-plus {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.faq-qn-chkbox {
  display: none;
}

.ostomy-links {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;  

}
  
.ostomy-links a{
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
  
.ostomy-links small{
  font-size: 10px;
}

.ostomy-links a {
  margin: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2.25rem 1.75rem;
  text-align: center;
  font-weight: bolder;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;align-content: center;
}
  
 @media(minx-width: 768px){
   .ostomy-links a {
 		 height: 315px;
   }
 }

/* Compare Options table */
.text-blue{
  color: #4aade9;
  color: var(--content-normal);
}
h4.compare{
  font-weight: bold;
  font-size: 1.15em;
}

table.comp-method-table {
  margin: auto;
	border-collapse: collapse;
}

table.comp-method-table thead th {
	padding: 8px;
  font-size: large;
  color: #4aade9;
  color: var(--content-normal);
  border-top-color: #8484863a;
  border-top-color: var(--primary-color-lite);
  border-right-color: #8484863a;
  border-right-color: var(--primary-color-lite);
  border-left-color: #8484863a;
  border-left-color: var(--primary-color-lite);
  border-style: solid;
  border-width: 1px;
  text-align: center;
}

table.comp-method-table thead tr th:first-child,
table.comp-method-table thead tr th.td-separator {
  border: 0;
}

table.comp-method-table thead th img{
  width: 80px;
  display: block;
  margin: 0 auto;
  margin-bottom: 1rem;  
}

table.comp-method-table td.table-td-text-top {  
  font-weight: bold;
  font-size: large;
}

table.comp-method-table thead th#comp-method-table-qn-col {
  background-color: white;  
}

table.comp-method-table th, 
table.comp-method-table td {
	padding: 1.5rem;	
}

table.comp-method-table th.td-separator {
  width: 10px;
}

table.comp-method-table tbody tr td:first-child {
  border-left: 0;
  border-bottom: 0;
}

table.comp-method-table td.td-separator {
  border-bottom: 0;
}

table.comp-method-table td {
  border-top-color: #414142;
  border-top-color: var(--primary-color);  
  border-left-color: #8484863a;
  border-left-color: var(--primary-color-lite);
  border-right-color: #8484863a;
  border-right-color: var(--primary-color-lite);
  border-bottom-color: #8484863a;
  border-bottom-color: var(--primary-color-lite);
  border-style: solid;  
  border-width: 8px 1px 1px 1px;
  vertical-align: top;
}

table.comp-method-table tbody th {
	text-align: left;
	font-weight: normal;
}

table.comp-method-table ul {
  list-style-type: none;
}

table.comp-method-table ul > li:before {
  content: '-';
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Your Feeling */
.question {
    padding: 0.2rem 1.5rem;
    margin: 0.2rem 0;
    border-left: 6px solid transparent;
}

.question:hover {
  /* box-shadow: 0 0 5px 2px rgba(0,0,0,0.2); */
    /* border-width: 0 0 0 6px; */
    /* border-style: solid; */
    border-color: #4aade9;
    border-color: var(--content-normal);
    /* -webkit-border-image: 
      -webkit-gradient(linear, 100% 0, 0 0, from(black), to(rgba(0, 0, 0, 0))) 1 100%;
    -webkit-border-image: 
      -webkit-linear-gradient(right, black, rgba(0, 0, 0, 0)) 1 100%;
    -moz-border-image:
      -moz-linear-gradient(right, black, rgba(0, 0, 0, 0)) 1 100%;  
    -o-border-image:
      -o-linear-gradient(right, black, rgba(0, 0, 0, 0)) 1 100%;
    border-image:
      linear-gradient(to right, black, rgba(0, 0, 0, 0)) 1 100%;  */

}

.question .checkbox {
  padding: 0.1rem 0.5rem;
}

.question .checkbox input.other-checkbox:checked ~ .other-textbox {
  display: block;
}

.question .checkbox input.other-textbox {
  border-radius: 3px;
  height: 2.5rem;
  margin-left: 1rem;
  width: 400px;
  font-size: large;
  color: #414142;
  color: var(--primary-color);
  outline-color: #414142;
  outline-color: var(--primary-color);
  display:none;
}

.question .checkbox #second-opinion-no-text {
  height: 2.5rem;
  margin-left: 1rem;
  font-size: large;
  color: #414142;
  color: var(--primary-color);
  display:none;
}

.question .checkbox input[value="yes"]:checked ~ .other-textbox {
  display: block;
}

.question .checkbox input[value="no"]:checked ~ #second-opinion-no-text {
  display: block;
}

.question #decisionReady_mostmatters_input,
.question #rdy_mattr_most_textarea,
.question #rdy_mattr_concern_textarea,
.question #qns_concern_textarea
{
  border-radius: 3px;
  margin-left: 1rem;
  width: 400px;
  font-size: large;
  color: #414142;
  color: var(--primary-color);
  outline-color: #414142;
  outline-color: var(--primary-color);
  
}

#sub-question-for-yes,
#sub-question-for-no {
  display: none;
}

#rdy_yes_chk1:checked ~ #sub-question-for-yes {
  display: block;
}

#rdy_no_chk1:checked ~ #sub-question-for-no {
  display: block;
}

#rdy_unders_opn2:checked ~ #rdy_unders_opn2_text {
  display: block;
}

#rdy_unders_opn3:checked ~ #rdy_unders_opn3_text {
  display: block;
}

.likert li{
  float: left;
  list-style-type: none;
}

.clear-both {
  clear: both;
}

.page-header {
	display:none;
}
  
/* Responsive Styling */
  
@media(min-width: 768px){
  .float-right_desktop{
    float: right;
    width: 100%;
    max-width: 530px;
  }
  p.float-right_desktop{
    max-width: 480px;
    padding-left: 3%;
  }
  ul.float-right_desktop{
    padding-left: 5%;
  }
  .compare-methods_desktop{
    display: block;
  }
  .compare-methods_mobile,
  .mobile-show{
    display: none !important;
  }
}
  
@media(max-width: 767px){
  .mobile-show{display: block;}
 .ibd_container .checkbox, 
  .ibd_container .radio{
    min-height: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .ibd_container input[type="radio"], 
  .ibd_container input[type="checkbox"]{
		-webkit-transform: scale(2) translateX(-5px);
		    -ms-transform: scale(2) translateX(-5px);
		        transform: scale(2) translateX(-5px);
    margin-bottom: 20px;
  }
  .question .checkbox input.other-textbox{
    margin-bottom: 20px;
    margin-top: 10px;
    width: 100%;
  }
  .welcome-page{
    background-position: 100% !important;
  }
  .welcome-page h1{
    font-size: 7vw !important;
  }
  
  #welcome-disclaimer{
    -webkit-transform: translateY(2rem);
        -ms-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  
  .intro-container .intro{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  

	div.ibd_container,
	aside.ibd_sidebar,
	section.ibd_content{
		width: 100%;
		display: block;
	}

	.lead-next-section{
		-webkit-transform: unset;
		    -ms-transform: unset;
		        transform: unset;
    margin-bottom: 1rem;
	}
  #about-my-ibd-img img{
    height: auto;
    margin: 15px auto;
	}
  .tab-content .h-card-wrapper .v-cards{
    display: block;
  }
  .tab-content .h-card-wrapper .v-cards .v-card{
    margin: 2rem 6.6%;
    width: unset;
  }
  .highlight .tooltiptext-leftaligned,
  .highlight .tooltiptext-movedToMid{
  	left: unset;
    top: unset !important;
    font-size: 14px;
    width: 80%;
  }
  

  .ostomy-links,
  .ostomy-links a{
    display: block;
    margin: 30px 0px;
  }
  
  .ostomy-links iframe{
    width: 100%;
  }
  
  @media(max-width: 767px){
    .combination-of-these-options{
      font-size: 5.5vw;
      text-align: center;
      margin: 60px 0px;
      border-top: 5px solid black;
      border-bottom: 5px solid black;
      padding: 10px 0px;
    }
    .combination-of-these-options:before,
    .combination-of-these-options:after{
      display: none !important;
      content: "" !important;
    }
  }
  
  #compare-intro{
    display: block;
  }
  
  #compare-intro img{
    height: auto;
  }
  
  .compare-methods_desktop{
    display: none;
  }
  .compare-methods_mobile{
    display: block;
  }
  
  #my_feelings{
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  
  #my_support_intro img,
  #my_decision_intro img{
    height: auto;
    margin-bottom: 15px;
  }
  .likert{
    text-align: center;
  }
  .likert li{
    float: unset !important;
  }
}

  
 .my-decision-info-container{
    padding: 1rem;
    background-color: #0d5a96;
    text-align: center;
    color: white;
    font-size: large;
   max-width: 400px;
   position: relative;
   z-index: 999;
 }
  
   .my-decision-info-container img{
      height: auto !important;
   }
  
   .my-decision-info-container ul{
     list-style-type: none;
   }
 .my-decision-info-container a{
   color: #FFF !important;
   text-decoration: underline;
 }