/* Empty. Add your own CSS if you like */
.invert {
    background-color: #1f79a3;
    color: white;
    padding-left: 22px;
    padding-top: 7px;
    padding-top: 7px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10pt !important;
    border-bottom-left-radius: 18px;
    box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.9);
}

.calm {
    background-color: #1f79a3;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10pt !important;
}

.invertgray {
    background-color: darkgrey;
    color: white;
    padding-left: 14px;
    padding-top: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10pt !important;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.9);
}

.sidemenubackground {
    background-color: white;
    color: black;
}

.invertpadded {
    background-color: #9F8EAF;
    color: white;
    padding-left: 10px;
    text-transform: uppercase;
    border-top: 1px solid;
    border-botton: 1px solid;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.9);
    padding-top: 5px;
    padding-bottom: 5px;
}

.nopadding {
    padding: 0px;
}

.padding-left {
    padding-left: 12px
}

.lineitem {
    text-transform: uppercase;
    border-radius: 0px;
    color: white;
    background-color: #0055b3;
    width: 100%;
    height: 30px;
    padding-top: 6px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.9);
    margin-bottom: 1px;
    font-size: 12px !important;
}

a {
    text-decoration: none;
}

.fancybutton {
    margin: 0px 0px;
    border-top-right-radius: 50px;
    background-color: black;
    border-color: gray;
    border-style: double;
    color: white;
    width: 100% !important;
    padding-top: 0px;
    height: 35px;
    text-transform: uppercase;
    padding-bottom: 0px;
    border-width: 1px;
    font-size: 10pt !important;

}

.fancybuttonalt {
    margin: 0px 2px;
    border-radius: 0px;
    background-color: lavender;
    color: black;
    text-transform: uppercase;
    width: 99% !important;
    padding-top: 2px;
    height: 35px;
    font-weight: bold;
    padding-bottom: 0px;
    border-bottom-right-radius: 25px;
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.2);
    border-width: 1px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 0px;
}

.fancybuttonmenu {
    margin: 1px 2px;
    font-weight: bold;
    background-color: cornflowerblue;
    color: white;
    text-transform: uppercase;
    width: 100%;
    height: 40px;
    text-decoration: none;
    padding-bottom: 0px;
    padding-top: 12px;
    box-shadow: 8px 5px 12px 0px rgba(0, 0, 0, 0.9);
    font-size: 14px;
    text-align: left;
    padding-left: 10px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
}

.fancybuttonsubmenu {
    margin: 1px 5px;
    font-weight: bold;
    border-radius: 0px;
    background-color: gray;
    text-transform: none;
    color: white;
    height: 35px;
    padding-top: 7px;
    width: 85%;
    padding-bottom: 0px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    text-align: left;
    padding-left: 10px;
    box-shadow: 1px 5px 5px 1px rgba(0, 0, 2, 2.9);
}

.padding {
    padding: 3px !important;
}

.rowmargin {
    padding: 0px 16px 0px 16px;
}

.bottommargin {
    margin-bottom: 10px;
}

.rowalign {
    text-align: right;
    width: 100px !important;
}

.list .item.item-accordion {
    padding-top: 0;
    padding-bottom: 0;
    transition: 0.09s all linear;
}

.list .item.item-accordion.ng-hide {
    line-height: 0px;
}

.list .item.item-accordion.ng-hide-add,
.list .item.item-accordion.ng-hide-remove {
    display: block !important;
}

.error {
    color: red;
    fon-weight: bold;
}

.selectedday {
    background-color: yellow !important;
    border-top-right-radius: 20px;
    width: 60%;
    box-shadow: 5px 15px 15px rgba(0, 0, 0, 0.9);
}

.menuitem {
    font: 12pt arial;
}

.topbar {
    -webkit-box-shadow: 1px 6px 19px 0px rgba(50, 50, 50, 0.99);
    -moz-box-shadow: 1px 6px 19px 0px rgba(50, 50, 50, 0.99);
    box-shadow: 1px 6px 19px 0px rgba(50, 50, 50, 0.99);
}

.alternativerows {
    background-color: whitesmoke !important;
}

.header {
    padding-top: 5px;
    float: right;
    width: 34px;
}

.title {
    right: 0px !important;
}

.spin {
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.loading {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    background-color: white !important;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

}

.curvyborder {
    border-radius: 25px;
    padding: 20px;
    border: 4px solid;
    margin: 0px;
}

.curvyborderflatbottom {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    border: 0px solid;
}

.border {
    border: 4px solid !important;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.orangeborder {
    border-color: #860F27 !important;
}

.curvedtop {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.orangefilled {
    background-color: #860F27;
    color: white;
    padding-left: 10px;
}

.lightorangefilled {
    background-color: #AB1C36 !important;
    color: white !important;
}

.greenfilled {
    background-color: greenyellow;
    color: white;
}

.darkgreenfilled {
    background-color: green;
    color: white;
}

.grayfilled {
    background-color: ghostwhite;
    color: darkgray;
    border-bottom: 1px solid;
}

.pinkfilled {
    background-color: #860F27;
    color: white;
}

.pinkborder {
    border-color: #860F27 !important;
}

.bluefilled {
    background-color: dodgerblue;
    color: white;
}

.modal {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.base {
    display: inline-block;
    height: 170px;
    width: 100%;
    font-family: arial;
    background: #860F27; /* Old browsers */
    background: -moz-linear-gradient(left, #860F27 0%, #AB1C36 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #860F27), color-stop(100%, #AB1C36)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #860F27 0%, #AB1C36 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #860F27 0%, #AB1C36 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #860F27 0%, #AB1C36 100%); /* IE10+ */
    background: linear-gradient(to right, #860F27 0%, #AB1C36 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#860F27', endColorstr='#AB1C36', GradientType=1); /* IE6-9 */
}

.triangleleft {
    transform: skewX(20deg);
    background-color: white;
!important;
}

.green {
    color: #AB1C36;
}

.orange {
    color: #860F27;
}

.salmon {
    color: #c0a16b;
}

.pink {
    color: #860F27;
}

.largetext {
    font-size: 30px;
}

.whitetext {
    color: white;
    text-decoration: none !important;
	font: arial;
}

.blacktext {
    color: black;
    text-decoration: none !important;
	font: arial;
}

a {
    text-decoration: none;
}

.clearwhitebutton {
    border-radius: 25px;
    border: 2px solid white;
    padding: 4px;
    margin-right: 40px;
    font-size: smaller;
    color: white;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    width: 180px !important;
}

.shadedgrey {
    border-radius: 5px;
    background-color: ghostwhite;
}

.solidwhitebutton {
    border-radius: 25px;
    border: 2px solid white;
    padding: 4px;
    margin-right: 40px;
    font-size: smaller;
    color: black;
    font-weight: bold;
    background-color: white;
    text-decoration: none;
    text-align: center;
    width: 180px !important;
}

.solidorangebutton {
    border-radius: 25px;
    border: 2px solid white;
    padding: 4px;
    font-size: smaller;
    color: white;
    background-color: #860F27;
    text-decoration: none;
    text-align: center;
    width: 150px !important;
    margin-bottom: 6px;
}

.circle {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    animation-name: test2;
    animation-duration: 2s;
}

.circlesmall {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    border-radius: 48%;
    animation-name: test2;
    animation-duration: 2s;
}

.dropdownhand {
    cursor:pointer;
}

@keyframes test2 {
    from {
        width: 200px;
        height: 200px;
    }
    to {
        width: 100px;
        height: 100px;
    }
}

.menupadding {
    padding: 30px;
}

.login {
    width:400px;
}

@media screen and (max-width: 430px) {
    .popoman {
        display:none;
    }

    .login {
        width:97.5%;
    }

}

@media screen and (max-width: 445px) {

    .title {
        width: 30%;
    }
}

@media screen and (max-width: 560px) {


    .circle {
        width:100px;
        height:100px;
    }

    .menupadding {
        padding: 15px;

    }


}

@media screen and (max-width: 1030px) {

    .menupadding {
        display: inline-block;
        float: none !important;

    }

    .notifications {
        width: 100% !important;
        padding-left:0px !important;
    }


}
