.submenu div.searchbar.property-list
{
    position: absolute;
}
.submenu div.searchbar.property-list-mobile
{
    position: relative;
}
.propertyList__results {
    width: 100%;
    text-align: center;
    line-height: 60px;
    height: 60px;
    font-weight: 700;
    font-size: 1.4rem;
    background-color: white;
    box-shadow: 0px 0px 12px -2px rgba(0, 0, 0, 0.75);
}

.bulk-selection-bar{
    text-align:center;
    font-size:1.4rem;
}
.bulk-selection-bar select{
    width:200px;
    height:2.4rem;
}
.bulk-selection-bar>*{
    padding:2px;
    vertical-align:middle;
    margin:10px; 
}
.bulk-selection-bar .permanent a{
     font-size: 1.2rem    !important;
} 
.bulk-selection-bar ul{
    display:inline-block;
    text-align:left;
}
.newprop-button {
    cursor: pointer;
    background: green;
    color: white;
    padding: 8px;
    border-radius: 9px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 10px;
}

.newprop-button:hover {
    background: white;
    border: solid 2px orange;
    color: orangered;
}

.loadingcontainer {
    text-align: center;
}

.propertyloadingbar {

    height: 20px;
    width: 200px;
    background-color: rgba(0, 0, 0, .1);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 20px;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .03), inset 0 1px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .03), inset 0 1px 0 rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 1px 0 rgba(255, 255, 255, .03), inset 0 1px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .03), inset 0 1px 0 rgba(0, 0, 0, .1);
    width: 100%;

}

/*
This is the actual bar with stripes
*/
.propertyloadingbar span {
    display: inline-block;
    height: 100%;
    width: 100%;
    border: 1px solid #2c80b8;
    border-bottom-color: #2c80b8;
    background-color: #d3d3d3;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    background-image: -webkit-linear-gradient(
            -45deg,
            #2c80b8,
            transparent 25%,
            transparent 50%,
            #2c80b8 50%,
            #2c80b8 75%,
            transparent 75%,
            transparent
    );
    background-image: -moz-linear-gradient(
            -45deg,
            #2c80b8 25%,
            transparent 25%,
            transparent 50%,
            #2c80b8 50%,
            #2c80b8 75%,
            transparent 75%,
            transparent
    );
    background-image: -ms-linear-gradient(
            -45deg,
            #2c80b8 25%,
            transparent 25%,
            transparent 50%,
            #2c80b8 50%,
            #2c80b8 75%,
            transparent 75%,
            transparent
    );
    background-image: linear-gradient(
            -45deg,
            #2c80b8 25%,
            transparent 25%,
            transparent 50%,
            #2c80b8 50%,
            #2c80b8 75%,
            transparent 75%,
            transparent
    );
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    -ms-background-size: 50px 50px;
    background-size: 50px 50px;
    -webkit-animation: move 2s linear infinite;
    -moz-animation: move 2s linear infinite;
    -ms-animation: move 2s linear infinite;
    animation: move 2s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 10px 0 rgba(255, 255, 255, .2);
    -moz-box-shadow: inset 0 10px 0 rgba(255, 255, 255, .2);
    -ms-box-shadow: inset 0 10px 0 rgba(255, 255, 255, .2);
    box-shadow: inset 0 10px 0 rgba(255, 255, 255, .2);
}

.properties__section, .properties__section--active {
    width: calc(50% - 1.5rem);
    height: calc(100% - 1.5rem);
    overflow-y: hidden;
    margin: .75rem;
    display: inline-block;
    background-color: white;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
    vertical-align: top;
}

.properties__sectionHeader {
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-weight: 700;
    font-size: 1.7rem;
    text-align: center;
    color: white;
    box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.75);
    z-index: 1;
    position: relative;
}

/* .propertylist-control-container {

} */

.propertylist-control-container i {
    font-size: 2rem;
    margin-right: 1rem;
    cursor: pointer;
}

/*
Animate the stripes
*/
@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@-moz-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@-ms-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@media screen and (max-width: 991px) {
    .propertyList__results {
        display: none;
    }

    .properties__section, .properties__section--active {
        width: 100%;
        height: 100%;
        margin: 0;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .properties__sectionHeader {
        height: 50px;
        line-height: 50px;
    }

    .properties__section:nth-child(2) {
        position: absolute;
        right: -100%;
        transition: all 200ms linear;
        text-align: center;
    }

    .properties__section--active {
        right: 0;
        position: absolute;
    }

    .properties__backButton {
        position: absolute;
        line-height: 50px;
        font-size: 2.5rem;
        left: 18px;
    }

    .properties__section--active .users__editor {
        height: calc(100% - 100px);
    }
}

@media screen and (max-width: 1700px) {
    .submenu div.searchbar.property-list
    {
        position: relative;
    }
}
