/*copied from the other share button*/
.ac-share {
	position: relative;
}

.ac-share-icon:hover {
	cursor:pointer;
}

.ac-share-icons {
    list-style-type: none;
    display: none;
    border: 2px solid #be830e;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    margin: 0;
    background-color: #f5edde;
    width: 100%;
    height: 274px;
    z-index: 10;
    min-width:400px;
}

.ac-share-icons .ac-share-close span {
	cursor: pointer;
}

.ac-share-icons li {
	display: flex;
	flex-wrap: wrap;
}


/* Below style only for the accommodation option banner share button */
#accommodation-banner-share .ac-share-icons {
        width: auto;
        height: auto;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    #accommodation-banner-share .anu-share-close img {
        width: 15px;
        height: 15px;
    }

    #accommodation-banner-share .ac-share-icons-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    #accommodation-banner-share .ac-share-icons-items a {
        display: flex;
        align-items: center;
        gap: 10px;
        color:#000;
    }

    #accommodation-banner-share .ac-share-icons-items a img {
        width: 30px;
        height: 30px;
        max-height: 30px;
    }

    @media only screen and (max-width: 576px) {
        #accommodation-banner-share .ac-share-icons-items {
            grid-template-columns: 1fr 1fr;
        }

    }