/* USE <i></i> tag */
/*  SRC = https://css.gg/play-button */
/* ARROW-LEFT */
.gg-arrow-left {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(1.85);
    width: 22px;
    height: 22px;
}

.gg-arrow-left::after,
.gg-arrow-left::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
}

.gg-arrow-left::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg);
    bottom: 7px;
}

.gg-arrow-left::before {
    width: 16px;
    height: 2px;
    bottom: 10px;
    background: currentColor;
}

/* ARROW-RIGHT */
.gg-arrow-right {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(1.85);
    width: 22px;
    height: 22px;
}

.gg-arrow-right::after,
.gg-arrow-right::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    right: 3px;
}

.gg-arrow-right::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    bottom: 7px;
}

.gg-arrow-right::before {
    width: 16px;
    height: 2px;
    bottom: 10px;
    background: currentColor;
}

/* Close */
.gg-close {
    box-sizing: border-box;
    position: relative;
    display: block;
    /* transform: scale(var(--ggs,1)); */
    width: 2rem;
    height: 2rem;
    border: 2px solid transparent;
    border-radius: 40px;
}

.gg-close::after,
.gg-close::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 2rem;
    height: 0.15rem;
    background: currentColor;
    transform: rotate(45deg);
    border-radius: 5px;
    /* top: 8px;
    left: 1px; */
}

.gg-close::after {
    transform: rotate(-45deg)
}

/* Grid */
.gg-view-grid {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    border: 2px solid;
    border-radius: 3px;
    width: 20px;
    height: 14px;
}

.gg-view-grid::after,
.gg-view-grid::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 2px;
    height: 14px;
    top: -2px;
    left: 4px;
    background: currentColor;
    box-shadow: 6px 0 0;
}

.gg-view-grid::before {
    width: 20px;
    height: 2px;
    left: -2px;
    top: 2px;
    box-shadow: 0 4px 0;
}

/* Play Slideshow */
.gg-play-button {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
}

.gg-play-button::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 0;
    height: 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid;
    top: 6px;
    left: 9px;
}
