

.container {
    width: 638px;
    height: 592px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 40px auto 20px auto;
    border: 14px solid transparent;
    border-image: url(../images/Vector.png) 11 stretch;
}

.gameboard {
    width: 100%;
    height: 100%;
}

.center {
    flex-grow: 0;
}

.row {
    clear: both;
    overflow: hidden;
}

.square {
    float: left;
    height: 196px;
    width: 203px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 14px;
}

.left-side {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
#restart {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #CD0304;
    text-align: center;
    padding-top: 11px;
}
.right-side {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    bottom: -160px;
    right: -22px;

}

.left-side .row {
    font-size: 50px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
    padding: 5px;
}

.score {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
}

.player {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100px;
    padding-right: 5px;
}

.player-name {
    position: relative;
    top: 4px;
}

.player-turn {
    flex-grow: 2;
}

.turn {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    width: 43px;
}


a {
    text-decoration: none;
}

input#restart {
    width: 90px;
    margin: 10px 0 20px 0;
}

.winner {
    text-align: center;
}
.g-c {
    position: relative;
    padding-right: 93px;
}
.right-side img {
    width: 34px;
}
.score2 {
    margin: 0 20px 0 29px;
}
.score1 {
    margin-right: 34px;
}
.comp-player:before {
    content: url("../images/Vector1.svg");
    position: absolute;
    top: 0;
    left: 0;
}
.comp-player:after {
    content: url("../images/Vector1.svg");
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(180deg);
}
.dots {
    margin-left: 12px;
    position: relative;
    top: -2px;
    color: #fff;
    font-size: 44px;
    left: -13px;
}