﻿/* Google Fonts - Poppins */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background-color: #4070f4;
  
}
.popupwrapper.show {
  left: 20px;
}

.popupwrapper {
  position: fixed;
  bottom: 50px;
  left: -470px;
  max-width: 445px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index:99999!important;
}


.popupwrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
  justify-content: center;
}

.popupheader .i {
  color: #075e4a;
  font-size: 30px;
}

.popupheaderh2 {
  color: #075e4a;
  font-weight: 600;
    text-align:center!important;

}
.popupwrapper .data {
  margin-top: 6px;
}
.popupwrapper .data p {
  color: #075e4a;
  font-size: 18px;
}
.data p a {
  color: #075e4a;
  text-decoration: underline;
}
.data p a:hover {
  text-decoration: underline;
}
.popupwrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #075e4a;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #075e4acf;
}
#declineBtn {
  border: 2px solid #075e4a;
  background-color: #fff;
  color: #075e4a;
}
#declineBtn:hover {
  background-color: #075e4acf;
  color: #fff;
}




   @media (min-width: 350px) {
      .popupwrapper { 
        
		width: 300px!important; /* On screens wider than 768px, image takes 50% width */
      }
	  .popupwrapper .data p {
			font-size: 14px!important;
		}
    }
	
	     @media (min-width: 768px) {
     .popupwrapper { 
        
		width: 450px!important; /* On screens wider than 768px, image takes 50% width */
      }
	  .popupwrapper .data p {
			font-size: 16px!important;
		}
    }
	
	
      @media (min-width: 992px) {
     .popupwrapper { 
        
		width: 300px!important; /* On screens wider than 768px, image takes 50% width */
      }
	  .popupwrapper .data p {
			font-size: 16px!important;
		}
    }
@media (min-width: 1200px) {
     .popupwrapper { 
        
		width: 450px!important; /* On screens wider than 768px, image takes 50% width */
      }
	  .popupwrapper .data p {
			font-size: 18px!important;
		}
    }
    
