body {
  background-color: bisque;
}

nav {
  background-color: #563d7c;
  color: #fff;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  
}

nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav li {
  list-style: none;
}

nav li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 8px;
}

nav li a:hover {
  color: yellow;
  text-decoration: none;
  font-weight: 600;
}

.avatar-ctn {
  background-color: orange;
  text-align: center;
}

.avatar {
  width: 65%;
  border-bottom: 1px solid rgba(0,0,0,0.125);
}

/* ======== */
.card-header {
  background-color: coral;
  color: white;
  font-weight: 500;
}

.mainNumber {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  height: 4rem;
  width: 100px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;  
  border-radius: 4px;
}

.mainNumber:focus {
  outline: none !important;
  border: 2px solid green;
  box-shadow: 0 0 5px #719ECE;
  background-color: rgb(238, 247, 250);
  color: black;
  max-width: 100px;
  
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.card {
  text-align: center;
}

.colorBlack {
 color: black;
}

.white {
  background-color: none;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.black {
  background-color: black ;
}

.colorWhite,  
.green, 
.black,
.red {
  color: white;
}

.btn-danger,
.btn-success,
.btn-dark {
  font-weight: 500;
  width: 45px;
  height: 45px;
}

.btn-danger {
  background-color: red;
}

.btn-danger:hover {
  cursor: pointer;
}

.btn-success {
  background-color: green;
}

/* .btn-success > .btn-rate {
  color: white;
}

.btn-danger > .btn-rate {
  color: blue;
}

.btn-dark > .btn-rate {
  color: green;
} */

.drawnNumbers {
 width: 300px;
 height: 78px;
}

.rzad1 {
  width: 100px;
}

.arrowup {
  font-size: large;
  /* color: red; */
  font-weight: bolder;
}

/* .results-container {
  margin-left: 20px;
} */

.card-results {
  padding-left: 20px;
  padding-right: 20px;
}
/* .circle {
  height: 40px;
  width: 40px;
  color: white;
  font-size: small;
  background-color: #596807;
  border-radius: 50%;
  margin-bottom: 4px;
  text-align: center;
  line-height: 40px;
} */

/* .resultcol {
  margin-left: -10px;
}

.resultcol1 {
  margin-left: -15px;
} */

.btn-rate {
  width: 100px;
  height: 100px;
}

.result_n {
  font-size: x-large;
  margin-top: -5px;
}

/* .result_i {
  color: blue;
} */

@media (max-width: 470px) {
  .mainNumber {
    width: 60px;
    font-size: 25px;
    height: 3rem;
    padding: 12px 10px;
  }
}

@media (min-width: 576px) {
  /* .resultcol {
    margin-left: 0px;
  }
  
  .resultcol1 {
    margin-left: -10px;
  } */
}

@media (min-width: 992px) {
  /* .resultcol {
    margin-left: 10px;
  }
  
  .resultcol1 {
    margin-left: 0px;
  } */
}

@media (min-width: 1200px) {
  /* .resultcol {
    margin-left: 5px;
  }
  
  .resultcol1 {
    margin-left: -5px;
  } */
}



