.btn.btn-primary {
  background: #003c54;
  border-color: #003c54;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background: #00749d;
}
/* style animation swiper*/
#swiper-wrapper {
  height: 100vh;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  font-size: 18px;
  background: #003c54;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  /* display: flex; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: white;
}
.swiper-v {
  background: #eee;
}
/* style horizontal slide 1 */
.card {
  color: #111111;
  width: 480px;
  max-width: 100%;
}
.card .card-header {
  text-align: center;
}
.card .card-header .card-title {
  font-size: 1.5rem;
  margin: 0;
}
.card .card-header .user-turn,
.card .card-header .user-score {
  margin: 0;
}
.card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.card .card-body .card-title {
  color: #111111;
}
.card .card-body .number-input {
  margin: 1rem auto;
  width: max-content;
}
.card .card-footer {
  display: flex;
  justify-content: space-between;
}
.card.step-two #accordionText input[type=text] {
  width: 100%;
}
.card.step-three .btn.btn-primary.btn-dice-roll {
  text-transform: uppercase;
  font-size: 2rem;
  padding: 1.5rem;
  margin: 20px auto;
  font-weight: bold;
  border-radius: 10px;
  transform: scale(0.9);
  transition: 0.4s all ease;
}
.card.step-four .square-value {
  font-size: 3rem;
  font-weight: bold;
  color: #00749d;
}
.S_logo_slide_1 {
  height: 270px;
  width: 270px;
  display: block;
  margin: 1rem auto;
}
/*style compteur tour et nombre de joueur  */
input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.number-input {
  border: 2px solid #ddd;
  display: inline-flex;
}
.number-input,
.number-input * {
  box-sizing: border-box;
}
.number-input button {
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.number-input button:after {
  display: inline-block;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f077';
  transform: translate(-50%, -50%) rotate(180deg);
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.number-input input[type=number] {
  font-family: sans-serif;
  max-width: 5rem;
  padding: .5rem;
  border: solid #ddd;
  border-width: 0 2px;
  font-size: 2rem;
  height: 3rem;
  font-weight: bold;
  text-align: center;
}
/* style css global*/
.featured-top {
  background: #003c54;
  padding: 0px 10px 0px;
  border-bottom: none;
}
/* style horizontale slide 2 */
/*style en accordion pour la modification psuedo*/
.accordion-body {
  color: black;
}
/* style hrizontal slide 3 */
/* dé style de base */
:root {
  --dice-f: #ddbe6f;
}
.dice-container {
  display: flex;
  height: 300px;
  width: 300px;
  margin: auto;
}
.dice-scene {
  margin: auto auto;
  width: 200px;
  height: 200px;
  perspective: 1000px;
  transform: scale(0.9);
}
.dice {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  /* Resolve distortion */
  transform: translateZ(-100px);
  transition: transform 1s;
  transform: scale(0.9);
}
/* Effect */
.dice__face {
  position: absolute;
  background: var(--dice-f);
  width: 200px;
  height: 200px;
  border-radius: 50px;
  display: flex;
  box-shadow: 0px 10px 35px -15px rgba(255, 255, 255, 0.8);
}
/* TranslateZ = (face's width / 2) */
/* Face 1 */
.dice__face.front {
  transform: rotateY(0) translateZ(100px);
}
/* Face 2*/
.dice__face.back {
  transform: rotateY(180deg) translateZ(100px);
}
/* Face 5 */
.dice__face.top {
  transform: rotateX(90deg) translateZ(100px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
/* Face 6 */
.dice__face.bottom {
  transform: rotateX(-90deg) translateZ(100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* Face 3 */
.dice__face.left {
  transform: rotateY(-90deg) translateZ(100px);
  display: grid;
}
/* Face 4 */
.dice__face.right {
  transform: rotateY(90deg) translateZ(100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* Arranging the dots on face 5 */
.dot {
  background: #003c54;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: auto auto;
}
.dot-5-m {
  grid-column: 2;
  grid-row: 2;
}
.dot-5-t1 {
  grid-column: 1;
  grid-row: 1;
}
.dot-5-t2 {
  grid-column: 1;
  grid-row: 3;
}
.dot-5-b1 {
  grid-column: 3;
  grid-row: 1;
}
.dot-5-b2 {
  grid-column: 3;
  grid-row: 3;
}
