.disable-double-tap{
    touch-action: manipulation;
}

.disable-all-touch {
    touch-action: none;
}

body.modal-open {
    position: fixed;
    overflow: hidden;
}

.mxt-imageSpins {
    max-width: 100%;
    height: auto;
}

.mxt-imageSpinsPlaceholder {
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
    top: 0;
    left: 0;
    background: white;
    z-index: 1;
}

.mxt-spinLoader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0064a8; /*fill color*/
    border-right: 6px solid #0064a8; /*fill color*/
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: mxt-loader-spin 2s linear infinite;
    position: relative;
}

.mxt-spinLoader.mxt-firstSpinLoader {
    top: 230px;
    
}

/* May need refined once spinner back in LZB UAT environment */
.mxt-spinLoaderContainer {
    position: absolute;
    top: calc(50% - 80px);
    left: calc(50% - 65px);
}

.mxt-spinCircle {
    position: absolute;
    bottom: 22px;
    width: 90%;
    left: 5%;
    pointer-events: none;
}

@keyframes mxt-loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mxt-hidden {
    display: none !important;
}

.mxt-spinsButtonContainer {
    width: 93%;
    bottom: 0px;
    overflow: visible;
    top: unset;
    position: relative;
    
}

.mxt-spinsButtonContainerInner {
    margin: 0px auto;
    margin-bottom: 5px;
    width: 200px;
    text-align: center;
}

.mxt-image-spins-button {
    transition: 1s all;
    background: none;
    z-index: 10;
    pointer-events: all;
    cursor: pointer;
    border-radius: 4px;
    border: solid 1px #cbcbcb;
    margin: auto 5px;
    width: 38px;
    height: 38px;
    outline: none;
    opacity: 0.75;
}

.mxt-image-spins-button img {
    display: block;
    height: 16px;
    margin: 0 auto;
    opacity: 0.75;
}

.mxt-image-spins-button:hover {
    opacity: 1.0;
    transition: opacity .5s ease-out;
}

.mxt-spinButtonArrow {
    width: 9px;
}

.mxt-topDown {
    position: absolute;
    right: 26px;
    z-index: 2;
    padding: 0;
}

.mxt-topDown img{
    height: 36px;
    width: 35px
}

.mxt-div-spins-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.2);
}

.mxt-div-spins-content-modal {
    background-color: #fff;
    border: 1px solid #fff;
    height: 80%;
    width: calc(100% - 40px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 6px;
}

.mxt-span-spins-modal {
    position: absolute;
    right: 3px;
    top: 3px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.mxt-span-spins-modal:hover,
.mxt-span-spins-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.canvas-spins-modal{
    width: calc(100% - 20px);
    height: calc(100% - 45px);
    margin-top: 10px;
}

.mxt-zoom-buttons-container {
    background: white;
    position: absolute;
    bottom: 0px;
    width: 100%;
    max-height: 40px;
    overflow: hidden;
}

.mxt-zoom-buttons-container>button {
    background-color: white;
    border-style: none;
    margin: 0 16px;
    width: 38px;
    height: 38px;
    opacity: 0.75;
    cursor: pointer;
}

.mxt-zoom-buttons-container>button>img {
    display: block;
    max-width: 16px;
    margin: 0 auto;
    opacity: 0.75;
}

.mxt-zoom-buttons-container>button:hover {
    opacity: 1.0;
    transition: opacity .5s ease-out;
}

.mxt-customCombinationDiv {
    margin-left: -55px;
    opacity: 0.5;
}

.mxt-customCombinationText {
    color: rgba(51, 51, 51, 0.5);
    text-align: center;
    font-style: italic;
    font-size: 14px;
    font-family: sans-serif;
}

@media only screen and (max-width: 640px) {
    /* Buttons were being cut off by top down image on iphone 5, so add margin to prevent this */
    .mxt-spinsButtonContainer {
        top: 5px;
    }
}

/* Mobile css goes here */
@media only screen and (max-width: 1440px) { /* Changed to 1440 to fit Samsung Galaxy screen resolutions; 1080 is for iPhones */
    .mxt-spinLoader.mxt-firstSpinLoader {
        top: 0px;
    }

    .mxt-spinLoaderContainer {
        position: absolute;
        top: calc(50% + 70px);
        left: calc(50% - 45px);
    }

    .mxt-topDown {
        position: absolute;
        right: unset;
        z-index: 2;
        padding: 0px;
    }

    .mxt-topDown img {
        height: 36px;
        width: 35px
    }
}
