/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */



.error {
    /*padding: 15px 28px;*/
    color: #d04544;
}

.money {
    font-family: 'Din';
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #51545c;
    margin-bottom: 8px;
}

.money::before {
    content:" AUD $";
}
/*.money::after {
    content:"AUD";
}*/

.display-price {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #51545c;
    /* border: 2px solid #ddd;
    border-radius: 4px; */
}
.display-price:hover {
    color: #000;
    text-decoration: none;
}

/* Images for edit page. */

.my-img-container {
    position: relative;
    width: 300px;
    /*width: 100%;*/
    display: inline-block;
}

.my-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.my-img-container:hover .my-img-overlay {
    display: block;
    background: rgba(0, 0, 0, 0.3);
}

.my-img {
    width: 300px;
    left: 0;
    
    opacity: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    /*display: block;*/
    display: inline-block;
    transition: .5s ease;
    backface-visibility: hidden;
}

.my-img-button {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.my-img-button a {
    width: 40%;
    padding: 12px 48px;
    text-align: center;
    color: white;
    border: solid 2px white;
    z-index: 1;
}
.my-img-container:hover .my-img-button {
    opacity: 1;
}

a:hover {
    cursor: pointer;
}

.my-img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
    /* opacity: 0.3; */
}

input.text-field {
    width: 50%;
    float: right;
    margin: 0 25% 0 0;
}


/* Loading icon */

.no-js #loader {
    display: none;
}
.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0px;
}
.li-pre-con,
.ibb-loading-icon { 

    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    /* the background url should be added through the ib_bikes_public_css() call */
    /* background: url(https://rodsmith.nz/wp-content/uploads/Preloader_8.gif) center no-repeat; */
}

/******************************************************************************/
/* CSS overwrites */
/******************************************************************************/

.navigation-links {
  margin-bottom: 0px;
}

.entry-title {
    min-height: 50px;
}

