/* styling of webpage */
/* style of the box containing the links */
.dropdown-gi {
    /* Don't change these unless you know what you are doing */
    display: none;
    position: absolute;
    z-index: 1;
    width: 200px;
    /* these you can change */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    background: #ccc;
}

#gi-dropdown {
    z-index: 100;
}

#gi-computer-innovations .dropdown-gi ul {
    text-decoration: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: inherit;
}

#gi-computer-innovations .dropdown-gi ul li,
#gi-computer-innovations .dropdown-gi ul li::before {
    content: inherit;
    margin: inherit;
    padding: inherit;
    float: inherit;
}

#gi-computer-innovations img {
    margin: 0;
}

/* style of links */
#gi-computer-innovations .dropdown-gi ul li a {
    padding: 8px 16px;
    text-decoration: none;
    text-align: center;
    display: block;
    color: black;
}

#gi-computer-innovations .dropdown-gi a:hover {
    box-shadow: 5px 5px 30px rgba(0,0,0,0.15) inset;
}

/*Styling of the mini previews*/
#gi-dropdown-site-preview {
    position: absolute;
    z-index: 100;
}

.dropdown-site-preview-gi {
    min-width: initial;
    max-width: initial;
    min-height: initial;
    max-height: initial;
    width: 256px;
    height: 144px;
    overflow: hidden;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    background: #ccc;
    padding: 2px;
}

.dropdown-arrow-left-gi {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-right: 10px solid #ccc;
}

.dropdown-arrow-right-gi {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-left: 10px solid #ccc;
}

.dropdown-arrow-down-gi {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;

    border-top: 10px solid #ccc;
}
