/*
 * icm_gdpr.css  13 July 2025
 *
 * (c) copyright 2020-2025 icodemods.com, 
 *     a department of durangodaves LLC
 * 
 *  This file is protected under license from any use without our
 *  express written consent
 *
 *  Owner: David Livingston
 *  Author: David Livingston
 *  Programmer: David Livingston
 *
 * License: see https://www.icodemods.com/license.php
 *
 * Support: see https://www.durangodaveswebservices.com 
 *
 * Description: GDPR Package Version 2 CSS File
 *  
 */


/*
  ****************************
    GDPR Notify Banner   
  ****************************
*/

#notice_gdpr {
    width: 93%;
    position: fixed;
    bottom: 0;
    color: #ffffff;
    background-color: #252e39;
    z-index: 1;
    display: none;
}

.gdpr_container {
    width: 100%;
    margin: auto;
}

.gdpr_subcontainer {
    width: 100%;
}

.gdpr_ticker {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 2em;
}

.gdpr_ticker p {
    color: #ffffff;
}

.gdpr_ticker a {
    padding-left: 1em;
    color: #ffffff;
    font-weight: 500;
    text-decoration: underline;
}


#gdpr_button {
    margin-right: 4em;
    border-radius: 5px;
    padding: 0.75em;
    font-size: 1em;
    font-family: inherit;
    cursor: pointer;
    background-color: #14a7d0;
}


.gdpr_btn_text {
    color: #ffffff;
}


/*
  *********************
  * M O B I L E  C S S   
  *********************
 */
 
 
@media(max-width:55em) 
{
  #notice_gdpr {
       left: 1em;
   }
   .gdpr_ticker {
       flex-wrap: nowrap;
   }
   .gdpr_ticker p {
       width: 70%;
   }
    .gdpr_ticker p,
    #gdpr_button {
        font-size: x-small;
    }
    #gdpr_button {
        margin-right: 1em;
    }
}/* close media */
