﻿.customer {
    background-color: #337ab7;
}

.prospect {
    background-color: #dff0d8;
    color: #3c763d;
}

.checkedin {
    background-color: #31b0d5;
}

.reminder {
    background-color: deeppink;
}

.fc-today {
    background-color: #4496D1;
}

.fc-sat {
    background-color: #ececec;
}

.fc-sun {
    background-color: #ececec;
}

/* Slide page 200px to the right when panel is opened */
body.ps-active {
    transform: translateX(200px);
}

/* Position panel */
#my-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%; /* remember to set 100% height for all its parents too, including html and body */
    background-color: #eee;
    transform: translateX(-200px);
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.vanmap {
    width: 100%;
    height: 800px;
}

@media (max-device-width: 800px) and (orientation: portrait) {
    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin: 7.5px -15px;
    }

   .navbar-nav > li {
            float: none;
   }

   .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-text {
        float: none;
        margin: 15px 0;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in {
        display: block !important;
    }

    .collapsing {
        overflow: hidden !important;
    }


}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
    .vanmap {
        width: 100%;
        height: 750px;
    }
    /* your css rules for ipad portrait */
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {
    .vanmap {
        width: 100%;
        height: 550px;
    }
    /* your css rules for ipad landscape */

}

@media only screen and (max-width: 800px) and (orientation:portrait) {
    .vanmap {
        width: 100%;
        height:900px;
    }
    /* your css rules for ipad portrait */
}

@media only screen and (max-width: 1280px) and (orientation:landscape) {
    .vanmap {
        width: 100%;
        height: 550px;
    }
    /* your css rules for ipad landscape */
}


@media (max-device-width: 768px )
{
    .vanmap {
        width: 100%;
        height: 500px;
    }
}

.borderless {
    border: 0;
    box-shadow: none;
}

    .borderless:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }