/*====================================================================================================
 * Name: catalog.css
 * Author: David Meissner
 * Created: 11/8/2017
 *
 * Description:
 * This page maintains all css for the catalog module.
 *
 * LOG:
 * 11/08/2017      dmeissner      Created Page
 *
 ====================================================================================================*/


.catalog-container{
    display: table;
    width: 100%;
    /*width: calc(100% - 40px);*/
    background-color: #fff;
    /*padding: 20px;*/
    /*border: solid 3px #f00;*/
}

.catalog-div{
    /*display: table-cell;*/
    /*width: 100%;*/
    background-color: #fff;
    border: solid 3px #ccc;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
}

/*.catalog-div:hover{*/
    /*cursor: pointer;*/
/*}*/

.catalog-heading{
    display: table;
    width: 100%;
    /*border: solid 1px #f00;*/
    vertical-align: middle;
    font-size: 20px;
}

.catalog-heading:hover{
    cursor: pointer;
}

.catalog-catagory{
    display: table-cell;
    vertical-align: middle;
    font-size: 24px;
}

.catalog-toggle{
    display: table-cell;
    text-align: right;
    vertical-align: middle;
    font-size: 36px;
}

.catalog-toggle:hover{cursor: pointer;}

.catalog-detail{
    display: none;
    /*padding-top: 20px;*/
}

.catalog-description{
    font-size: 14px;
    padding-bottom: 10px;
}

.catalog-list{
    display: table;
    width: 100%;
    /*width: calc(100% - 30px);*/
    padding: 5px 15px;
    font-size: 14px;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin: 2px;
    display: table;
}

.catalog-list:hover{
    background-color: #e1e1e1;
}

.catalog-item{
    /*display: block;*/
    /*background-color: #f1f1f1;*/
}

.catalog-item-div{
    display: table-row;
}

.catalog-href:hover{
    cursor: pointer;
}

.catalog-button{
    padding: 5px 10px 6px 10px;
    background-color: #5ab574;
    border: solid 1px #5ab574;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    vertical-align: middle;
}
.catalog-button:hover{background-color: #1aaa55; cursor: pointer;}




@media all and ( min-width: 380px )
{

}

@media all and ( min-width: 580px )
{
    .catalog-item{display: table-cell;}
    .catalog-item-div{display: table-cell; padding-bottom: 5px;}
    .catalog-button{margin-top: 0px;}
}

@media all and ( min-width: 985px )
{

}