body {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #919191;
    font-weight: 400;
    background: #ffffff;
}

h1 {
    font-weight: 400;
    color: #d56425;
    font-size: 20px;
    line-height: 31px;
    padding: 10px 0;
    text-align: center;
}

h2 {
    font-weight: 600;
    color: #222222;
    font-size: 20px;
    line-height: 22px;
    padding: 10px 0;
}

p {
    padding: 20px 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

b {
    font-weight: 600;
}

.container {
    width: 1100px;
    margin: 10px auto;
}

.my-fixed-item {
    position: fixed;
}

.btn {
    text-align: center;
    position: fixed;
    display: block;
    background-color: #d56425;
    color: #ffffff;
    border-color: #0b3a66;
    margin: 0;
    padding: 16px 40px;
    border-radius: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-weight: normal;
    font-size: 16px;
    min-width: 142px;
    outline: none;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
}

.btn.alert {
    background-color: #b02b2c;
}

.selection-group {
}

.selection-group ul {
}

.selection-group ul li {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 5px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    left: 11px;
    clear: left;
    border-left: 0px none;
}

.selection-group ul li:hover:before {
    font-family: "FontAwesome";
    position: absolute;
    line-height: 100px;
    width: 100px;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 35px;
    z-index: 9;
}

.selection-group ul.list-items li:hover:before {
    content: "\002b";
    color: #f40606;
}

.selection-group ul.dest-list-items li:hover:before {
    content: "-";
    color: #ed0f33;
    font-size: 35px;
}

.selection-group ul li:hover img {
    opacity: 0.5;
}

.selection-group ul li img {
    width: 100%;
    height: 100%;
    border-radius: 20%;
}

/* Grid */
[class*='col-'] {
    float: left;
}

.col-1-2 {
    width: 45%;
}

.col-1-3 {
    width: 33.33%;
}

.col-1-4 {
    width: 25%;
}

.col-1-8 {
    width: 12.5%;
}

.col-2-3 {
    width: 66.66%;
}

.grid:after {
    content: "";
    display: table;
    clear: both;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

[class*='col-'] {
    padding-right: 10px;
}

[class*='col-']:last-of-type {
    padding-right: 0;
}

.grid-pad {
    padding: 20px 0 20px 20px;
}

.grid-pad > [class*='col-']:last-of-type {
    padding-right: 20px;
}

/* End Grid */