/* Actions */
#actions
{
    list-style: none;
    padding: 0px;
    font-size: 0;
    margin: 0 -8px;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#actions li
{
    display: inline-block;
    vertical-align: top;
    border-radius: 10px;
    width: 130px;
    height: 130px;
    padding: 30px;
    cursor: pointer;
    background: rgb(50,50,50);
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    color: #fff;
    margin: 0 7px;
    overflow: hidden;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;

    border-radius: 15px;
}

#actions li:hover
{
    background: rgb(255,150,0);
}

#actions li:active
{
    background: rgb(200,100,0);
    transform: scale(.9);
}

#actions li a
{
    display: block;
    text-decoration: none;
    color: #fff;
    width: 130px;
    height: 130px;
    padding: 30px;
    margin: -30px;

display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
gap: 15px;
}

#actions li img
{
    width: 75px;
    height: 75px;
    margin-bottom: 10px;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;

	margin: 0;
}

#actions li p
{
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5em;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;

	text-align: center;
	margin: 0;
}

#actions #btnSearch,
#actions #btnQuickAccess,
#actions #btnConfig,
#actions #btnLogin
{
    display: none;
}

/* SearchEngine */
#searchEngines
{
    list-style: none;
    font-size: 0;
    margin: 0 -50px;
    padding: 10px 38px;
    padding-bottom: 20px;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
    border-bottom: 1px solid silver;
	background: linear-gradient(top, transparent, rgba(0,0,0,.2));
	background: -webkit-linear-gradient(top, transparent, rgba(0,0,0,.2));
	background: -moz-linear-gradient(top, transparent, rgba(0,0,0,.2));
	background: -ms-linear-gradient(top, transparent, rgba(0,0,0,.2));
	background: -o-linear-gradient(top, transparent, rgba(0,0,0,.2));
}

body.dark #searchEngines
{
    border-color: #444;
	background: linear-gradient(top, transparent, rgba(0,0,0,.4));
	background: -webkit-linear-gradient(top, transparent, rgba(0,0,0,.4));
	background: -moz-linear-gradient(top, transparent, rgba(0,0,0,.4));
	background: -ms-linear-gradient(top, transparent, rgba(0,0,0,.4));
	background: -o-linear-gradient(top, transparent, rgba(0,0,0,.4));
}

#searchEngines li
{
    display: inline-block;
    vertical-align: top;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    margin: 0 12px;
    overflow: hidden;
}

#searchEngines li,
#searchEngines li img
{
    width: 70px;
    height: 70px;
}

/* Sections de la page */
#whatIsThis
{
    margin-right: -50px;
}

#whatIsThis div
{
    vertical-align: bottom; 
    width: 470px; 
    display: inline-block;
}

#whatIsThis img
{
    float: right;  
    width: 380px;
}

#customize img
{
    float: left;  
    height: 110px; 
    margin-right: 50px;
    border-radius: 5px;
}

#responsive img
{
    float: right;  
    height: 210px; 
    margin-left: 50px;
}

@media screen and (max-width:1000px)
{
    .page
    {
        width: calc(100% - 20px);
        padding: 10px;
        overflow: hidden;
    }
    
    /* Actions */
    #actions,
    #searchEngines
    {
        margin: 0 -10px;
        padding: 0;
        padding-bottom: 10px;
        margin-bottom: -30px;
    }
    
    #actions
    {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    #actions li
    {
        border-radius: 10px;
        margin: 10px;
        overflow: visible;
        text-align: right;
        padding: 0;
        width: initial;
        height: initial;
    }
    
    #actions li a
    {
        padding: 10px;
        width: 100px;
        height: 100px;
        margin: 0;

width: 120px;
height: 150px;
    }
    
    #actions li img 
    {
        width: 30px;
        height: 30px;
        margin: 0;
        padding: 5px;

        width: 50px;
        height: 50px;
        padding: 0px;
    }
    
    #actions li p 
    {
        font-size: 14px;
        line-height: 1.5em;
        white-space: initial;        
        margin: 0;
        margin-top: 20px;
        padding: 0;
        width: 80px;
        text-align: left;

margin: 0;
text-align: center;
    }
    
    /* Sections */
    #whatIsThis
    {
        margin: 0;
    }

    #whatIsThis div
    {
        width: inherit; 
        display: block;
    }

    #whatIsThis img
    {
        display: none;
    }

    #customize img,
    #responsive img
    {
        float: inherit;
        height: inherit;
        width: 100%;
        margin: 40px 0;
        margin-bottom: -40px;
    }
}