/* ------ compare ------ */
.compare-panel {
    float:right;
    padding:3px 6px 3px 6px;
    margin-top:3px;
    cursor:pointer;
    background-color:transparent;

}

.drop-open .compare-panel {
    background-color:#eee;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:    3px 3px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow:         3px 3px 4px 0px rgba(0, 0, 0, 0.2);
}

.compare-panel:hover {
    background-color:#eee;
}

.compare-list-control {
    background-color: #cfcfcf;
    padding: 1em;

    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.compare-list a,
.compare-list-control a {
    color:#666;
    text-decoration:none;
}

.compare-list a:hover,
.compare-list-control a:hover {
    color:#990000;
}

.compare-clear { 
    float:left;
}

.compare-close {
    float:right;
}

.compare-no-items {
    padding: 1em;
}

.compare-no-items,
.compare-list {
    border-top-right-radius:5px;
    border-top-left-radius:5px;
}

.compare-list ul {
    padding:0;margin:0;
    list-style-type:none;
    float:left;
}

.compare-list ul li {
    padding: 0.5em 1em 0.5em 1em;
    margin:0.3em 0 0.3em 0; 
    text-align:left;
    line-height:2.5em;
    min-height:45px;
    min-width:200px;
}

.compare-list ul li img {
    width: 40px;
    border:1px solid #ccc;
    padding:2px;
    margin-right:0.6em;
}

.compare-list ul li .compare {
    float:right;
    margin-left:0.6em;
}

.compare-remove {
    width:16px;
    height:2em;
    background: transparent  50% 0.8em no-repeat;
}





/* ------ compare view ------ */






/* ------ dropdown popover ------ */
.drop-element, .drop-element:after, .drop-element:before, .drop-element *, .drop-element *:after, .drop-element *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.drop-element {
  position: absolute;
  z-index:1000;
  display: none; }
  .drop-element.drop-open {
    display: block; }

.drop-element.drop-theme-basic {
  max-width: 100%;
  max-height: 100%; }
  .drop-element.drop-theme-basic .drop-content {
    -webkit-border-top-left-radius: 6px;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;

    -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:    3px 3px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow:         3px 3px 4px 0px rgba(0, 0, 0, 0.2);
    font-family: inherit;
    background-color: #eee; 
    color: #444;
    padding: 0em;
    font-size: 1.1em;
    line-height: 1.5em; }





/* ------ notifications ------- */

/*
 * toastr
 * copyright 2012-2014 john papa and hans fjällemark.
 * all rights reserved.
 * use, reproduction, distribution, and modification of this code is subject to the terms and
 * conditions of the mit license, available at http://www.opensource.org/licenses/mit-license.php
 *
 * author: john papa and hans fjällemark
 * project: https://github.com/codeseven/toastr
 */
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #ffffff;
}
.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:dximagetransform.microsoft.alpha(opacity=80);
  filter: alpha(opacity=80);
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:dximagetransform.microsoft.alpha(opacity=40);
  filter: alpha(opacity=40);
}
/*additional properties for button version
 ios requires the button element instead of an anchor tag.
 if you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/

}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:dximagetransform.microsoft.alpha(opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > :hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:dximagetransform.microsoft.alpha(opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image:  !important;
}
#toast-container > .toast-error {
  background-image:  !important;
}
#toast-container > .toast-success {
  background-image:  !important;
}
#toast-container > .toast-warning {
  background-image:  !important;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51a351;
}
.toast-error {
  background-color: #bd362f;
}
.toast-info {
  background-color: #2f96b4;
}
.toast-warning {
  background-color: #f89406;
}

/* sb - side bar */
.compare-sb-container {
   position:fixed;
   display:block;
   right:0;
   top:30%;
   height:3em;
   width:3em;

   border-top-left-radius: 3px;
   border-bottom-left-radius: 3px;
   font-size:11px;font-family:arial, helvetica, sans-serif;
   padding: 0.5em; text-decoration:none; display:inline-block;
   text-shadow: -1px -1px 0 rgba(0,0,0,0.3);
   font-weight:bold; color: #fff;

   box-shadow: -1px 1px 3px #999;
   cursor:pointer;
   
   background-color: #cc0000; /* old browsers */
   background: -moz-linear-gradient(top,  #cc0000 0%, #cc0000 100%); /* ff3.6  */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cc0000), color-stop(100%,#cc0000)); /* chrome,safari4  */
   background: -webkit-linear-gradient(top,  #cc0000 0%,#cc0000 100%); /* chrome10 ,safari5.1  */
   background: -o-linear-gradient(top,  #cc0000 0%,#cc0000 100%); /* opera 11.10  */
   background: -ms-linear-gradient(top,  #cc0000 0%,#cc0000 100%); /* ie10  */
   background: linear-gradient(to bottom,  #cc0000 0%,#cc0000 100%); /* w3c */
   filter: progid:dximagetransform.microsoft.gradient( startcolorstr='#cc0000', endcolorstr='#cc0000',gradienttype=0 ); /* ie6-9 */
}

/*responsive design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
