/* 
    Created on : 16 avr. 2022, 15:06:55
    Author     : gdormard
*/

body {
    padding: 0px;
    margin: 0px;
    font-family: sans-serif;
}

.normal-list {
    list-style-type: '- ';
}

#lp-logo {
    text-align: center;
}

#lp-header {
    text-align: left; 
    height: 44px;
    /*border: 1px solid red;*/
}

#lp-content {
    text-align: justify; 
    text-justify: distribute;
    height: calc(100vh - 316px);
    padding-left: 60px;    
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 60px;
    /*border: 1px solid green;*/
}

#lp-footer {
    text-align: left; 
    height: 44px;
    /*border: 1px solid blue;*/
}

#lp-email a {
    text-decoration: none;
    color: rgb(2, 99, 149);
    font-weight: bold;
}

#lp-email a:hover {
    color: rgb(255, 131, 59);
}

#lp-subscribe {
    width:100%;
    text-align:center;
    padding-top: 50px
}

.btn-subscribe-form {
    height: 45px;
    width: 60%;
    margin: 0 auto;
    color: white;
    background-color: rgb(2, 99, 149);
    border:0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.btn-subscribe-form:hover {
    background-color: rgb(255, 131, 59);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 150px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  min-height: 50%;
  position:relative;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

form.subscribe input[type='text'] {
    margin: 4px;
    height: 24px;
    width: 60%;
}

form.subscribe input[type='email'] {
    margin: 4px;
    height: 24px;
    width: 60%;
}

#btn-submit {
    margin: 0 auto;
    color: white;
    background-color: rgb(2, 99, 149);
    padding: 8px;
    border: 0;
    cursor: pointer;
}

#btn-submit:hover {    
    background-color: rgb(255, 131, 59);
}

form.subscribe label {
    width: 25%;
    text-align: right;
    padding-top: 6px;
}

.flags-row {
    display: flex;
    flex-direction: row;
}

.flags {
    width: 35px;
    padding: 3px;
    cursor: pointer;
}

.flags:hover {
    background-color: rgb(2, 99, 149);
}

.flags img {
    width: 100%;
}