.custom-phx-action-sheet{
    opacity: 0;
    transform: translateX(100%);
    height:95%;
    background-color: white;
    position: fixed;
    bottom:0px;
    left:0px;
    right:0px;
    z-index: 9999999;
    -webkit-box-shadow: 0px -2px 10px -2px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px -2px 10px -2px rgba(0,0,0,0.55);
    box-shadow: 0px -2px 10px -2px rgba(0,0,0,0.55);
    padding:2px 0;
    transition: transform;
    transition-duration: 500ms;
    transition-timing-function: ease-out;
}

.custom-phx-action-sheet .content{
    width:100%;
    height: 100%;
    margin:auto;
    overflow-y: scroll;
    padding:10px 50px 50px 15px;
    margin-top:50px 0;
}

.custom-phx-action-sheet.show{
    opacity: 1;
    transform: translateX(0%);
}

.custom-phx-action-sheet .close-button{
    border-radius: 50%;
    border:1px solid #59b2e5;
    color:#59b2e5;
    background-color: transparent;
    position:absolute;
    right:20px;
    top:20px;
    transition-duration: 150ms;
    width:30px;
    height:30px;
    text-align: center;
    vertical-align: center;
}


.custom-phx-action-sheet .loading-display{
    position:absolute;
    left:20px;
    top:20px;
}

.custom-phx-action-sheet .close-button:focus{
    outline:0;
}

.custom-phx-action-sheet .close-button:hover{
    transform:scale(1.2);
}

.custom-phx-action-sheet .close-button:active{
    transform:scale(1);
}