body
{
    background-color: #FFFFFF;
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

h1
{
    text-align: center;
    font-size: 40px;
    color: #943BD3;
}

.customButton
{
    color: #FFFFFF;
    width: 150px;
    height: 50px;
    background: #943BD3;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    display: inline-block;
    border: none;
    font-family: helvetica;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    font-size: 14px;
    font-family: 'Kanit', sans-serif;
}

.customButton:focus
{
    outline: 0;
}

.customButton:hover
{
    background: #818080;
    box-shadow: 0px 10px 10px -5px #000;
    cursor: pointer;
    transition: all 0.4s ease 0s;
}

input[type="checkbox"]
{
    -ms-transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    padding: 10px;
}

.segmented-control
{
    width: 100%;
    height: 53px; 
    color: #943BD3;
}

/* -------------------------------------------------------------------------- */

.similar_product_family
{
    font-weight: bold;
}

.similar_product_category,
.similar_product_category *
{
    cursor: pointer;
}

/* -------------------------------------------------------------------------- */

#cover-spin
{
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

#cover-spin::after
{
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

@keyframes spin
{
    from
    {
        transform: rotate(0deg);
    }

    to
    {
        transform: rotate(360deg);
    }
}

/* -------------------------------------------------------------------------- */

.modal
{
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;
    overflow: auto;

    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modalContent
{
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.closeModal
{
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeModal:hover,
.closeModal:focus
{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
