@import url("https://fonts.googleapis.com/css?family=Rubik");
@charset "UTF-8";
* {
  box-sizing: border-box;
}

#mobileTitle {
  display: none;
}

small {
  font-size: 12px;
  font-style: italic;
  display: block;
}

.spedial-td-one {
  padding: 15px 10px !important;
}

.spedial-td-two {
  padding: 22px 10px !important;
}

.intro {
  font-size: 21px;
}

.card-header {
  background-color: #3d82de;
  border-color: #1f458f;
  color: white;
}

.fa-2x {
  font-size: 1.5em !important;
  color: #fdcb6e;
  margin-right: 5px;
}

.card-special-title {
  font-weight: 800;
  font-size: 18px;
}

.table .thead-dark th {
  border-color: black;
}

.table td, .table th {
  max-width: 80px;
  border: 2px solid black;
}

.card {
  margin-top: 5px;
  border: 3px solid #363636;
}

.table {
  margin-top: 5px;
  border: 3px solid ;
}

.table .thead-dark th {
  color: #fff;
  background-color: #363636;
}

tbody tr:nth-child(odd) {
  background-color: #363636;
  color: #fff;
}

tbody tr:nth-child(odd):hover {
  background-color: #363636e8;
  color: #fff;
}

tbody tr:nth-child(even):hover {
  color: #fff;
  background-color: #383838;
}

tbody tr:nth-child(even) {
  color: #fff;
  background-color: #1f1f1f;
}

@media
	  only screen 
    and (max-width: 760px), (min-device-width: 768px) 
    and (max-device-width: 1024px)  {

      .table td, .table th {
        max-width: 100%;
      }

      .spedial-td-one {
        padding: 0px !important;
      }
      
      .spedial-td-two {
        padding: 0px !important;
      }

		table, thead, tbody, th, td, tr {
			display: block;
		}


		thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

    tr {
      //margin: 0 0 1rem 0;
    }
      
    tr:nth-child(odd) {
      background: #ccc;
    }
    
		td {
			border: none;
			border-bottom: 1px solid #eee;
			position: relative;
			padding-left: 50%;
		}

		td:before {
      position: absolute;
      top: 8px;
      right: 66px;
      padding-right: 10px
    }
    
    td:after {
      position: absolute;
      top: 8px;
      right: 6px;
      padding-right: 10px
    }
    
    .none {
      background: transparent!important;
      border: unset!important;
    }
    .none:nth-of-type(1):after {
      content: '' !important;
    }

		td:nth-of-type(1):after { content: ""; }
		td:nth-of-type(2):after { content: ""; }
  }

.justify-right {
  justify-content: flex-end;
}

body {
  background-color: #2083de;
  background-image: linear-gradient(to right bottom, #2083de, #0b448e);
  min-height: 100vh;
  font-family: "Rubik", sans-serif;
}

h1 {
  font-size: 2em;
}

button {
  margin: 5px;
}

.answers {
  margin: 25px 0px;
  padding: 0;
  text-align: center;
  width: 100%;
  justify-content: center;
}


.card-header {
  font-size: 20px;
  font-weight: 600;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.fa {
  margin-top: 3px;
}

/* HIDE RADIO */
[type=checkbox] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
[type=checkbox] + img {
  cursor: pointer;
  width: 32px;
  margin: 0 5px;
  opacity: 0.4;
}

/* CHECKED STYLES */
[type=checkbox]:checked + img {
  opacity: 1;
}


@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

  #mobileTitle {
    display: block;
  }

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 15px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
    white-space: nowrap;
    font-size: 12px;
	}
	
	/*
	Label the data
	*/
	td:nth-of-type(1):before { content: ""; }
	td:nth-of-type(2):before { content: "Le costume de Provence: "; }
	td:nth-of-type(3):before { content: "Le costume de Moslavina: "; }
}