
*{
    font-family: roboto, sans-serif;
    color: white;
}

.confirmBody{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
    z-index: 8;
}


.confirmContainer{
    position: relative;
    max-width: 300px;
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: -100px;
    transform: translateY(-50%);
    transition: all ease-in-out 0.3s;
    z-index: 2;
}

.confirmInner{
    height: auto;
    width: auto;
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    overflow: hidden;
}

.cfTop{
    height: 40px;
    width: 100%;
    margin-bottom: 10px;
    user-select: none;
    background-color: rgb(0, 0, 0);
}

.cfTitle{
    text-align: center;
    line-height: 40px;
    font-size: 1.3em;
    margin: 0;
}

.cfClose{
    position: absolute;
    margin-left: 10px;
    margin-top: 7.5px;
}

.cfCancel{
    background-color: rgb(156, 0, 0);
}

.cfYes{
    background-color: rgb(0, 146, 156);
    color: white;
}


.cfContent{
    height: auto;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    user-select: none;
}


.cfBottom{
    margin-top: 10px;
    height: 40px;
    width: 100%;
    user-select: none;
    background-color: rgb(0, 0, 0);
}

.cfBottom::before{
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: rgb(0, 0, 0);
}

.cfTop::after{
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: gainsboro;
}

.cfSubmitContainer{
    height: auto;
    width: auto;
    text-align:center;
    overflow: auto;
    float: right;
}


.cfSubmit_bt{
    text-align: center;
    border: none;
    height: 30px;
    width: auto;
    line-height: 30px;
    padding: 0 10px 0 10px;
    margin-right: 5px;
    margin-top: 5px;
    font-size: 1em;
    display: inline-block;
    border-radius: 5px;
}

.cfCancel:active, .cfCancel:hover{
    background-color: rgb(255, 0, 0);
    border: none;
    outline: none;
}

.cfYes:active, .cfYes:hover{
    background-color: rgb(0, 208, 223);
    border: none;
    outline: none;
}

.button{
  height:200px;
  width:200px;
  text-align: center;
  background: blue;
  color: white;
  line-height:200px;
  font-size: 2em;
  float: left;
  margin: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}