/* CSS Reset -- Typically in reset.css.  Place right below comment if no reset.css is referenced in html */

/* Box Sizing border-box */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #FFF;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

header {}

.webTitle {
    font-size: 36pt;
    text-align: center;
}

.gameDesign {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /*align-items: flex-end;*/
}

.tower {
    width: 30%;
    border-bottom: 60px solid #000;
    border-radius: 0px 0px 15px 15px;
    position: relative;
    cursor: pointer;
}

/*.pegsContainer {*/
/*display: flex;*/
/*justify-content: space-around;*/
/*}*/

/*.baseContainer {*/
/*display: flex;*/
/*justify-content: space-around;*/
/*}*/

.pole {
    width: 10px;
    margin: auto;
    margin-bottom: -16px;
    height: 300px;
    background-color: #000;
    border-radius: 10px 10px 0px 0px;
}

/*.stack {*/
/*position: absolute;*/
/*}*/
.pegA {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*align-items: flex-end;*/
    flex-direction: column;
}

.base {
    width: 300px;
    height: 20px;
    background-color: #000;
    border-radius: 10px;
}

.disk {
    position: absolute;
    height: 30px;
    border-radius: 5px;
    list-style-type: none;
    border: solid 2px #000;
    /*display: inline-block;*/
    /*margin-right: 10px;*/
}

.disk1 {
    width: 80%;
    left: 10%;
    background-color: #3a99d8;
    /*top: 90%;*/

}

.disk2 {
    width: 70%;
    left: 15%;
    background-color: #2e81b6;
    /*top: 80%;*/

}

.disk3 {
    width: 60%;
    left: 20%;
    background-color: #38ca74;
    /*top: 70%;*/
}

.disk4 {
    width: 50%;
    left: 25%;
    background-color: #31ad63;
    /*top: 60%;*/
}

.disk5 {
    width: 40%;
    left: 30%;
    background-color: #f0c330;
    /*top: 50%;*/
}

.disk6 {
    width: 30%;
    left: 35%;
    background-color: #f19b2c;
    /*top: 40%;*/
}

.disk7 {
    width: 20%;
    left: 40%;
    background-color: #e54d42;
    /*top: 30%;*/
}

.disk8 {
    width: 10%;
    left: 45%;
    background-color: #be3a30;
    /*top: 20%;*/
}

.control {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin-top: 5%;
    font-size: 20pt;
}

#Start {
    width: 90px;
    vertical-align: middle;
    height: 50px;
    margin: 0 5px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    background-color: #FFF;
    color: #000;
    border: 3px solid #000;
    border-radius: .3em;
}

#Start:hover {
    background-color: #000;
    color: #FFF;
    cursor: pointer;
}

#Start:active {
    background-color: #000;
    color: #FFF;
}

#minMoves {
    font-size: 18px;
}

#numMoves {
    font-size: 18px;
    width: 100%;
    /*flex: 1 1 auto;*/
}

#youWon {
    width: 100%;
    font-size: 50px;
    text-align: center;
}

.select-css {
    display: inline;
    vertical-align: middle;
    font-size: 18px;
    padding-left: 10px;
    font-weight: 400;
    color: #000;
    line-height: 30px;
    height: 50px;
    width: 55px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 3px solid #000;
    border-radius: .3em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
        linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

.select-css::-ms-expand {
    display: none;
}

.select-css:hover {
    border-color: #000;
}

.select-css:focus {
    border-color: #000;
    color: #000;
    outline: none;
}

.select-css option {
    font-weight: normal;
}




#container {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 20px;
}

#left {
    float: left;
    width: 33%;
}

#center {
    float: left;
    width: 33%;
    vertical-align: middle;
    line-height: 20px;
}

#right {
    float: right;
    width: 33%;
    vertical-align: middle;
    line-height: 20px;
}