custom_popup.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. .custom--pop--wrapper{
  2. position: fixed;
  3. top:0px;
  4. left:0px;
  5. width:100%;
  6. height:100%;
  7. background: rgba(0,0,0,.3);
  8. z-index: 10;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .custom--pop--wrapper .custom--pop--wrapper--inner{
  14. display: flex;
  15. flex-direction: column;
  16. background: #fff;
  17. position: relative;
  18. z-index: 1;
  19. /*padding:27px 20px 25px 20px;*/
  20. border-radius:30px;
  21. }
  22. .custom--pop--wrapper .custom--pop--wrapper--inner .close--btn{
  23. width:30px;
  24. height:30px;
  25. background: url(/manage/img/x.svg) no-repeat center;
  26. position: absolute;
  27. top:13px;
  28. right:13px;
  29. z-index: 9;
  30. border:0px;
  31. }
  32. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content{
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. flex-direction: column;
  37. margin-bottom:25px;
  38. }
  39. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content > h2{
  40. font-weight: 700;
  41. font-size: 18px;
  42. line-height: 100%;
  43. text-align: center;
  44. letter-spacing: -0.03em;
  45. color: #000000;
  46. margin-top:30px;
  47. }
  48. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content > p{
  49. font-weight: 400;
  50. font-size: 16px;
  51. line-height: 30px;
  52. text-align: center;
  53. letter-spacing: -0.03em;
  54. color: #666666;
  55. margin-top:10px;
  56. }
  57. .custom--pop--wrapper .custom--pop--wrapper--inner .custom--pop--content{
  58. padding-top:45px;
  59. }
  60. .custom--pop--wrapper .custom--pop--wrapper--inner .custom--pop--content > h2:before{
  61. content:'';
  62. display: inline-block;
  63. width:60px;
  64. height:60px;
  65. border-radius: 60px;
  66. background: #E2E4F0 url(../img/pp_ic.svg) no-repeat center;
  67. margin-bottom:30px;
  68. }
  69. .custom--pop--wrapper .custom--pop--wrapper--inner .custom--pop--content > h2{
  70. font-weight: 500;
  71. font-size: 18px;
  72. line-height: 1.5;
  73. text-align: center;
  74. letter-spacing: -0.03em;
  75. color: #000000;
  76. margin: 0px;
  77. padding: 0px;
  78. display: flex;
  79. flex-direction: column;
  80. justify-content: center;
  81. align-items: center;
  82. padding:0 20px;
  83. }
  84. .custom--pop--wrapper .custom--pop--wrapper--inner .btn--wrap{
  85. width:100%;
  86. display: flex;
  87. padding: 20px 45px 50px 50px;
  88. border-top: 0px;
  89. }
  90. .custom--pop--wrapper .custom--pop--wrapper--inner .btn--wrap button{
  91. width:100%;
  92. height: 50px;
  93. /*background: #0D6FFC;*/
  94. font-weight: 400;
  95. font-size: 14px;
  96. text-align: center;
  97. letter-spacing: -0.02em;
  98. color: #FFFFFF;
  99. border:0px;
  100. }
  101. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content.price--contents > p,
  102. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content.price--contents > h2{
  103. text-align: left!important;
  104. width:100%;
  105. justify-content:flex-start;
  106. }
  107. /*.custom--pop--wrapper .custom--pop--wrapper--inner .price--btn--wrap button:nth-of-type(1){background: #CBD8E0;}
  108. .custom--pop--wrapper .custom--pop--wrapper--inner .price--btn--wrap button:nth-of-type(2){
  109. margin-left:15px;
  110. }*/
  111. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap{
  112. width:100%;
  113. height:48px;
  114. border:1px solid #EDEDED;
  115. border-radius:3px;
  116. display:flex;
  117. align-items: center;
  118. justify-content:flex-start;
  119. overflow:hidden;
  120. margin-top:40px;
  121. }
  122. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap input{
  123. border:0px;
  124. height:48px;
  125. width:100%;
  126. text-align:right;
  127. font-family: 'Roboto';
  128. font-style: normal;
  129. font-weight: 400;
  130. font-size: 16px;
  131. line-height: 100%;
  132. color: #5D676F;
  133. }
  134. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap label{
  135. white-space:nowrap;
  136. padding-right:20px;
  137. padding-left:6px;
  138. font-weight: 400;
  139. font-size: 13px;
  140. line-height: 100%;
  141. text-align: right;
  142. color: #5D676F;
  143. }