.btn-check:active+.btn, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:active {
    background-color:  #0f6796 !important;
  }

  .btn:hover {
    background-color:  #0f6796 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.spain-flag{
    background-image:url(../media/image/spain.png);
}

.english-flag{
  background-image:url(../media/image/english.png);
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
  background-color: transparent;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  margin-bottom: 50px;
}

/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.4s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side */
.flip-box-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-box-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}




@media only screen and (min-width: 1200px) {
  #divTest{
    margin-top: 100px;
    margin-left: 150px;
    margin-right: 150px;
  }

  .flip-box-heading-back {
    margin-top: 25%;
    }
}


@media only screen and (max-width: 1200px) and (min-width: 1000px) {
  #divTest{
    margin-top: 100px;
    margin-left: 100px;
    margin-right: 100px;
  }

  .flip-box-heading-back {
    margin-top: 25%;
    }
}

@media only screen and (max-width: 1000px) and (min-width: 768px) {
  #divTest{
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .flip-box-heading-back {
    margin-top: 25%;
    }
}

@media only screen and (max-width: 768px) and (min-width: 576px) {
  #divTest{
    margin-top: 100px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .flip-box-heading-back {
    margin-top: 25%;
    }
}

@media only screen and (max-width: 576px) {
  #divTest{
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .flip-box-heading-back {
    margin-top: 25%;
    }
}
