﻿/* ---------------------------------------------------------------------------- 
 * stylesheet: DropDownList.css
 * The following styles are specifically used with 'DropDownListCircle.js'
 * ---------------------------------------------------------------------------- 
*/

/*-- hide [select] tags */
#divWineButtons select { display: none; }
#reviews select { display: none; }

.ddlCircle {
    background-color:transparent;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 1px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.ddlCircle:focus { 
    background-color:transparent;
}

.ddlCircle:hover { 
    background-color:transparent;
}

.ddlCircle:active, .ddlCircle.open {
    background-color:transparent;
}

.ddlCircle:after {
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #75b1be;  /*.. color of open/close arrow */
    -webkit-transform: origin(50% 20%);
    -ms-transform: origin(50% 20%);
    transform: origin(50% 20%);
    -webkit-transition: all 0.125s ease-in-out;
    transition: all 0.125s ease-in-out;
    content: '';
    display: block;
    margin-top: -2px;
    pointer-events: none;
    position: absolute;
    right: 20px;  /*!!! was 10px !!!*/
    top: 50%;
}
.ddlCircle.selected-item:after {
    border-top-color:#fff;  /*.. color of open/close arrow */
}

.ddlCircle.open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.ddlCircle.open .list {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
}

.ddlCircle.open .option { cursor: pointer; }

.ddlCircle.wide { width: 100%; }

.ddlCircle.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.ddlCircle .list {
    box-sizing: border-box;
    -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 6px;
    margin-top: 4px;
    padding: 3px 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
}

.ddlCircle .list:hover .option:not(:hover) { background-color: transparent !important; }

.ddlCircle .option {
    cursor: default;
    font-weight: 400;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.ddlCircle .option:hover, .ddlCircle .option:focus { background-color: #f6f6f6 !important; }

.ddlCircle .option.selected { font-weight: 600; }

.ddlCircle .option.selected:focus { background: #f6f6f6; }

.noBullets ul { /*-- remove default bullets from list */
    list-style-type:none !important; 
    padding: 0;
    margin-left: 0;
}

.margin-between-circles {
    margin-left: 20px;
}
.margin-inside-circle {
    margin:50px 0 0 4px;
}

.display-inline-block {
    display:inline-block;
}

.current {  /*-- current dropdown selection */
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width:120px;
    display:inline-block;
    text-align:center;
    color:#75b1be;
    text-transform:uppercase;
    font-size:10pt;
    text-align:center !important;
}

.circle {
    width: 140px;
    height: 140px;
    line-height: 1.33;
    background-color:#fff;
    border-radius: 70px;
    -moz-border-radius: 70px;
    -webkit-border-radius: 70px;
}

.float-left {
    float: left;
}

/*===================================================
  media queries
================================================== */
@media only screen and (min-width : 320px) and (max-width : 568px) { /* iPhone */
    .margin-between-circles {
        margin-left: 10px;
    }
}
